@font-face {
  font-family: Bodoni;
  src: url("/fonts/site/bodoni-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Bodoni;
  src: url("/fonts/site/bodoni-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/site/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/site/manrope-semibold.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --wine: #3b1520;
  --plum: #5a2436;
  --berry: #7e2540;
  --navy: #141e33;
  --ivory: #f5f0e8;
  --paper: #fcfaf7;
  --ink: #262632;
  --muted: #686168;
  --line: #ded6cf;
  --rose: #d9a8b7;
  --display: Bodoni, Georgia, serif;
  --body: Manrope, Arial, sans-serif;
  --container: 1240px;
  --gutter: 48px;
  --header-height: 96px;
  --header-compact-height: 64px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.03em;
}
h3,
h4 {
  line-height: 1.35;
}
strong {
  font-weight: 600;
}
svg {
  display: block;
}
:focus-visible {
  outline: 3px solid #b8617b;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--berry);
  color: var(--ivory);
}
.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.section-space {
  padding-block: 100px;
}
.icon {
  width: 23px;
  height: 23px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.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: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-180%);
  clip-path: inset(50%);
  background: var(--ivory);
  color: var(--wine);
  padding: 12px 22px;
}
.skip-link:focus {
  transform: none;
  clip-path: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}
.button-ivory {
  background: var(--ivory);
  color: var(--wine);
}
.button-ivory:hover {
  background: #fff;
}
.button-wine {
  background: var(--wine);
  color: var(--ivory);
}
.button-wine:hover {
  background: var(--berry);
}
.button-outline {
  border-color: #f5f0e880;
  background: #141e3340;
  color: var(--ivory);
}
.button-outline:hover {
  background: var(--ivory);
  color: var(--wine);
  border-color: var(--ivory);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  line-height: 1.4;
}
.text-link:hover {
  opacity: 0.8;
}
.section-label {
  color: var(--berry);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 26px;
}

.button-berry {
  background: var(--berry);
  color: var(--ivory);
}
.button-berry:hover {
  background: var(--plum);
}
.header-sentinel {
  position: absolute;
  top: 24px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  z-index: 10;
  color: var(--ivory);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    height 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  width: min(1440px, calc(100% - var(--gutter) * 2));
}
.brand {
  display: block;
  flex: none;
}
.brand-art {
  display: block;
  position: relative;
  width: 270px;
  aspect-ratio: 1953/470;
  overflow: hidden;
}
.brand-art img {
  position: absolute;
  width: 111.2135%;
  max-width: none;
  height: auto;
  left: -5.684%;
  top: -27.872%;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.desktop-nav > a,
.nav-solutions > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding-block: 12px;
  white-space: nowrap;
}
.desktop-nav > a:hover,
.nav-solutions > summary:hover {
  color: var(--rose);
}
.nav-solutions {
  position: static;
}
.nav-solutions > summary {
  cursor: pointer;
  list-style: none;
}
.nav-solutions > summary::-webkit-details-marker {
  display: none;
}
.nav-solutions > summary .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.18s;
}
.nav-solutions[open] > summary .icon {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, calc(100vw - 64px));
  max-height: calc(100dvh - var(--header-height) - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 26px;
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 60px #080d2633;
  border: 1px solid var(--line);
}
.nav-app-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.nav-app-group h3 {
  padding: 0 10px 13px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
}
.nav-app-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-app-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 8px;
}
.nav-app-link:hover,
.nav-app-link:focus-visible {
  background: var(--ivory);
  color: var(--berry);
}
.nav-app-link .icon,
.nav-view-all .icon {
  color: var(--berry);
  width: 20px;
  height: 20px;
  flex: none;
}
.nav-apps-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 12px;
}
.nav-apps-footer p {
  color: var(--muted);
  font-size: 12px;
}
.nav-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
}
.header-access {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  border: 1px solid #ffffff70;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
.header-access:hover {
  background: var(--ivory);
  color: var(--wine);
}
.header-access .icon {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
  flex: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: inherit;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 7px 0;
  width: 100%;
}

.site-header.is-scrolled {
  height: var(--header-compact-height);
  background: #21151db3;
  backdrop-filter: blur(18px);
  border-bottom-color: #ffffff1a;
  box-shadow: 0 6px 28px #080b1415;
}
.brand-stacked {
  display: flex;
  justify-self: start;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  transform-origin: left center;
  transition:
    transform 0.24s ease,
    gap 0.24s ease;
}
.brand-symbol {
  display: block;
  width: 59px;
  height: 61px;
  flex: none;
  transition:
    width 0.24s ease,
    height 0.24s ease;
}
.brand-wordmark {
  display: block;
  width: 118px;
  height: 56px;
  flex: none;
  overflow: hidden;
  font-family: var(--display);
  fill: var(--ivory);
  transition:
    width 0.24s ease,
    opacity 0.18s ease;
}
.brand-prefix {
  font-size: 16px;
}
.brand-name {
  font-size: 34px;
}
.site-header.is-scrolled .brand-stacked {
  transform: none;
  gap: 0;
}
.site-header.is-scrolled .brand-symbol {
  width: 36px;
  height: 38px;
}
.site-header.is-scrolled .brand-wordmark {
  width: 0;
  opacity: 0;
}
.js .hero-copy > * {
  animation: hero-enter 0.8s cubic-bezier(0.2, 0.65, 0.3, 1) both;
}
.js .hero-copy > :nth-child(2) {
  animation-delay: 0.12s;
}
.js .hero-copy > :nth-child(3) {
  animation-delay: 0.24s;
}
.js .hero-copy > :nth-child(4) {
  animation-delay: 0.36s;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: perspective(1200px) scale(1.04) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  display: flex;
  align-items: center;
  min-height: max(760px, 100svh);
  background: var(--navy);
  color: var(--ivory);
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.hero-scene,
.hero-image {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.js .hero-image {
  transform-origin: 65% 50%;
  animation: hero-background-zoom 18s ease-in-out -4.5s infinite alternate both;
  animation-play-state: paused;
}
.js .hero-scene-secondary .hero-image {
  animation-direction: alternate-reverse;
}
.hero-scene-secondary {
  opacity: 0;
}
.hero-light-pass {
  position: absolute;
  inset: -20% auto -20% 0;
  width: 32%;
  opacity: 0;
  background: linear-gradient(
    100deg,
    transparent 15%,
    #53cee80d 40%,
    #d9faff40 50%,
    #65cfe114 60%,
    transparent 85%
  );
}
.js .hero.has-slideshow .hero-scene-secondary {
  animation: hero-scene-fade 24s ease-in-out infinite both;
  animation-play-state: paused;
}
.js .hero.has-slideshow .hero-light-pass {
  animation: hero-light-sweep 24s linear infinite both;
  animation-play-state: paused;
}
.js .hero.has-background-motion .hero-image,
.js .hero.has-slideshow.has-background-motion .hero-scene-secondary,
.js .hero.has-slideshow.has-background-motion .hero-light-pass {
  animation-play-state: running;
}
@keyframes hero-background-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
@keyframes hero-scene-fade {
  0%,
  30%,
  90%,
  100% {
    opacity: 0;
  }
  40%,
  80% {
    opacity: 1;
  }
}
@keyframes hero-light-sweep {
  0%,
  30% {
    opacity: 0;
    transform: translate3d(-140%, 0, 0) skewX(-12deg);
  }
  34%,
  84% {
    opacity: 0.75;
  }
  40%,
  79.99% {
    opacity: 0;
    transform: translate3d(430%, 0, 0) skewX(-12deg);
  }
  80% {
    opacity: 0;
    transform: translate3d(-140%, 0, 0) skewX(-12deg);
  }
  90%,
  100% {
    opacity: 0;
    transform: translate3d(430%, 0, 0) skewX(-12deg);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #141e3399, #141e3300 160px),
    linear-gradient(
      90deg,
      #301420b3 0%,
      #25132380 32%,
      #141e3314 67%,
      #141e330a 100%
    );
}
.hero-layout {
  padding-block: 160px 140px;
}
.hero-copy {
  max-width: 640px;
}
.hero-intro {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 27px;
}
.intro-line {
  width: 28px;
  height: 2px;
  flex: none;
  background: var(--rose);
}
.hero h1 {
  font-size: clamp(58px, 5.3vw, 80px);
  line-height: 1.09;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 32px #141e3340;
}
.hero-description {
  max-width: 440px;
  margin-top: 28px;
  color: #eee6e7;
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-actions .button {
  padding-inline: 26px;
  gap: 17px;
}
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 105px;
  fill: var(--paper);
  pointer-events: none;
}

.formation {
  position: relative;
  padding-block: 64px 96px;
  background: var(--paper);
}
.anchor-alias {
  position: absolute;
  top: 0;
}
.course-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  min-height: 700px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--wine);
  color: var(--ivory);
}
.course-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #2b1321f2 0%,
      #321421d9 30%,
      #35182485 48%,
      #28172214 67%,
      #28172200 100%
    ),
    linear-gradient(0deg, #291820a6, #29182000 45%);
}
.course-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  padding: 52px 0 56px 56px;
}
.course-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  margin-bottom: 26px;
}
.course-seal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  min-height: 34px;
  border: 1px solid #c99aaa;
  border-radius: 7px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.course-copy h2 {
  font-family: var(--display);
  font-size: clamp(60px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.03em;
}
.course-description {
  max-width: 355px;
  margin-top: 26px;
  color: #e5d2d8;
  font-size: 16px;
  line-height: 1.8;
}
.course-cta {
  margin-top: 28px;
  gap: 35px;
}
.student-access {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 9px;
  margin-top: 16px;
  font-size: 12px;
  color: #d6b7c3;
}
.student-access a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ivory);
}
.student-access a,
.mentor-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: #ffffff60;
}
.student-access a:hover,
.student-access a:focus-visible,
.mentor-links a:hover,
.mentor-links a:focus-visible {
  text-decoration-color: currentColor;
}
.student-access .icon {
  width: 15px;
  height: 15px;
}
.course-portrait {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  z-index: 0;
}
.course-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 32%;
}
.course-mentor {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  align-items: start;
  gap: 46px;
  padding: 30px 56px;
  border-top: 1px solid #ffffff2b;
  background: #291820f2;
}
.mentor-heading > p:first-child {
  color: #d9b5c3;
  font-size: 11px;
  margin-bottom: 7px;
}
.mentor-heading h3 {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.mentor-heading > p:last-child {
  font-size: 12px;
  line-height: 1.65;
  color: #d9c8cf;
  margin-top: 10px;
}
.mentor-story > p {
  font-size: 13px;
  line-height: 1.85;
  color: #e5d7dd;
  max-width: 650px;
}
.mentor-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 10px;
}
.mentor-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 12px;
}
.mentor-links a:hover {
  color: var(--rose);
}
.mentor-links .icon {
  width: 15px;
  height: 15px;
}
.mentor-links .course-method-link {
  margin-left: auto;
}
/* The five decisions form one continuous investment route. */
.learning-path {
  padding: 50px 0 0;
}
.path-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-inline: 32px;
  margin-bottom: 26px;
}
.path-heading h3 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--wine);
}
.path-heading p {
  max-width: 57ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.path-heading strong {
  color: var(--wine);
  font-weight: 600;
}
.path-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0 10px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ivory);
}
.path-card {
  position: relative;
  min-width: 0;
  padding: 24px 22px 28px;
}
.path-card-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100px;
  padding-bottom: 20px;
}
.path-card-visual::before,
.path-card-visual::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: -44px;
  bottom: 0;
  background: #b28b963f;
}
.path-card-visual::before {
  z-index: 1;
  background: var(--berry);
  transform: scaleX(0);
  transform-origin: left;
}
.path-card:last-child .path-card-visual::before,
.path-card:last-child .path-card-visual::after {
  right: 0;
}
.path-card-number {
  position: absolute;
  left: 0;
  bottom: 15px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}
.path-illustration {
  width: 120px;
  height: 80px;
  fill: none;
  stroke: var(--wine);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diagram-guide {
  stroke: #a8818e;
  stroke-width: 1;
}
.diagram-surface {
  fill: #e8d9d9;
  stroke: none;
}
.diagram-highlight {
  stroke: var(--berry);
  stroke-width: 2.5;
  opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.diagram-grid {
  transform-origin: 0 0;
}
.diagram-grid-house {
  fill: var(--paper);
  stroke-width: 1.1;
}
.diagram-grid-roof {
  fill: #e8d9d9;
}
.diagram-grid-tree {
  stroke-width: 1.1;
}
.diagram-grid-canopy {
  fill: #e8d9d9;
}
.diagram-property,
.diagram-location-pin,
.diagram-verification,
.diagram-loupe {
  opacity: 0;
}
.diagram-location-pin {
  fill: var(--paper);
  stroke: var(--berry);
  stroke-width: 1.8;
}
.diagram-verification {
  stroke: var(--berry);
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.diagram-loupe {
  stroke: var(--berry);
  stroke-width: 2;
}
.diagram-loupe circle {
  fill: var(--ivory);
}
.diagram-strike {
  transform-origin: 0 0;
  transform: rotate(26deg);
}
.diagram-impact {
  opacity: 0;
  stroke: var(--berry);
  stroke-width: 1.8;
}
.diagram-money {
  fill: var(--berry);
  stroke: none;
  font-family: var(--body);
  font-size: 19px;
  font-weight: 600;
  opacity: var(--money-opacity, 1);
}
.diagram-money-secondary {
  --money-opacity: 0.7;
  font-size: 13px;
}
.diagram-money-tertiary {
  --money-opacity: 0.85;
  font-size: 15px;
}
@keyframes course-hammer-strike {
  0%,
  100% {
    transform: rotate(26deg);
  }
  18% {
    transform: rotate(34deg);
    animation-timing-function: cubic-bezier(0.6, 0, 0.9, 0.55);
  }
  /* The head's lower face reaches y=71, exactly the top of the block. */
  42% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  58% {
    transform: rotate(9deg);
  }
}
@keyframes course-hammer-impact {
  0%,
  40%,
  70%,
  100% {
    opacity: 0;
  }
  42%,
  48% {
    opacity: 1;
  }
}
@keyframes course-money-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: var(--money-opacity, 1);
    transform: translateY(0);
  }
}
.path-card-copy {
  padding-top: 22px;
}
.path-card h4 {
  color: var(--wine);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.path-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
@media (hover: hover) and (pointer: fine) {
  .path-card:hover .diagram-grid {
    opacity: 0;
  }
  .path-card:hover .diagram-property,
  .path-card:hover .diagram-location-pin,
  .path-card:hover .diagram-verification,
  .path-card:hover .diagram-loupe {
    opacity: 1;
  }
  .path-card:hover .diagram-verification {
    stroke-dashoffset: 0;
  }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .diagram-grid {
    transition: opacity 180ms ease;
  }
  .diagram-property {
    transform-origin: 74px 48px;
    transform: translateY(4px) scale(0.94);
    transition:
      opacity 140ms ease,
      transform 200ms ease;
  }
  .path-card:hover .diagram-grid {
    transform: scale(4);
    transition:
      transform 260ms cubic-bezier(0.45, 0, 0.65, 1),
      opacity 140ms ease 120ms;
  }
  .path-card:hover .diagram-property {
    transform: none;
    transition:
      opacity 220ms ease 190ms,
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1) 190ms;
  }
  .diagram-location-pin {
    transform: translateY(-1px);
    transition:
      opacity 120ms ease,
      transform 120ms ease;
  }
  .path-card:hover .diagram-location-pin {
    transform: none;
    transition:
      opacity 220ms ease 510ms,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1) 510ms;
  }
  .diagram-verification {
    transition:
      opacity 150ms ease,
      stroke-dashoffset 450ms ease;
  }
  .diagram-loupe {
    transform: translate(3px, 4px);
    transition:
      opacity 180ms ease,
      transform 250ms ease;
  }
  .path-card:hover .diagram-loupe {
    transform: none;
    transition-delay: 100ms;
  }
  .path-card-visual::before {
    transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }
  .path-card:hover .path-card-visual::before {
    transform: scaleX(1);
  }
  .diagram-surface {
    transition: fill 350ms ease;
  }
  .diagram-lift {
    transition: transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }
  .diagram-money {
    opacity: 0;
  }
  .diagram-highlight {
    transition:
      stroke-dashoffset 650ms cubic-bezier(0.2, 0.75, 0.25, 1),
      opacity 250ms ease;
  }
  .path-card:hover .diagram-surface {
    fill: #ddbec8;
  }
  .path-card:hover .diagram-lift {
    transform: translateY(-3px);
  }
  .path-card:hover .diagram-strike {
    animation: course-hammer-strike 900ms ease-in-out;
  }
  .path-card:hover .diagram-impact {
    animation: course-hammer-impact 900ms linear;
  }
  .path-card:hover .diagram-money {
    animation: course-money-rise 750ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .path-card:hover .diagram-money-secondary {
    animation-delay: 120ms;
  }
  .path-card:hover .diagram-money-tertiary {
    animation-delay: 240ms;
  }
  .path-card:hover .diagram-highlight {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .path-heading {
    padding-inline: 24px;
  }
  .path-card {
    padding-inline: 16px;
  }
  .path-card-visual::before,
  .path-card-visual::after {
    right: -32px;
  }
  .path-card h4 {
    font-size: 22px;
  }
  .path-illustration {
    width: 102px;
  }
}
@media (max-width: 999px) {
  .path-heading {
    padding-inline: 0;
    gap: 24px;
  }
  .path-heading h3 {
    font-size: 32px;
  }
  .path-cards {
    grid-template-columns: 1fr;
    padding: 10px 26px;
  }
  .path-card {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 18px 0;
  }
  .path-card + .path-card {
    border-top: 1px solid #b28b962c;
  }
  .path-card-visual {
    height: 74px;
    padding: 0;
  }
  .path-card-visual::after {
    width: 1px;
    height: auto;
    left: 8px;
    top: 41px;
    bottom: -37px;
    right: auto;
  }
  .path-card-visual::before {
    display: none;
  }
  .path-card:last-child .path-card-visual::after {
    display: none;
  }
  .path-card-number {
    top: 14px;
    bottom: auto;
    font-size: 11px;
  }
  .path-illustration {
    width: 102px;
    height: 68px;
  }
  .path-card-copy {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 0;
  }
  .path-card h4 {
    font-size: 25px;
    margin: 0;
  }
  .path-card p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .learning-path {
    padding-top: 36px;
  }
  .path-heading {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 22px;
  }
  .path-heading h3 {
    font-size: 31px;
  }
  .path-heading p {
    font-size: 13px;
  }
  .path-cards {
    border-radius: 16px;
    padding: 4px 18px;
  }
  .path-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 21px 0;
  }
  .path-card-visual {
    align-self: stretch;
    min-height: 78px;
    height: auto;
    padding-top: 20px;
  }
  .path-card-number {
    left: 1px;
    top: 0;
  }
  .path-card-visual::after {
    top: 27px;
    bottom: -35px;
    left: 6px;
    background: #b28b9633;
  }
  .path-illustration {
    width: 72px;
    height: 60px;
    align-self: center;
  }
  .path-card-copy {
    display: block;
  }
  .path-card h4 {
    font-size: 23px;
    margin-bottom: 9px;
  }
  .path-card p {
    font-size: 12px;
    line-height: 1.75;
  }
}

.solutions {
  background: var(--navy);
  color: var(--ivory);
}
.solutions-heading {
  text-align: center;
  margin: 0 auto 48px;
}
.solutions h2 {
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.2;
}
.platform-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 28px auto 0;
}
.platform-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.platform-brand img {
  width: 44px;
  height: auto;
  flex: none;
}
.platform-brand span {
  font-family: var(--body);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
}
.platform-intro > p {
  max-width: 350px;
  padding-left: 24px;
  border-left: 1px solid #ffffff26;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  color: #c3c8d3;
}

.app-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 670px;
  margin: 0 auto 60px;
}
.app-categories a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 18px 24px;
  border: 1px solid #5c6577;
  border-radius: 12px;
  color: var(--ivory);
  transition:
    border-color 0.18s,
    background 0.18s;
}
.app-categories a:hover {
  background: #263048;
  border-color: var(--rose);
}
.app-categories a > .icon:first-child {
  width: 29px;
  height: 29px;
  color: var(--rose);
}
.app-categories a > .icon:last-child {
  margin-left: auto;
  width: 19px;
  height: 19px;
}
.app-categories a > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.app-categories small {
  display: block;
  font-size: 11px;
  color: #bfc6d4;
  font-weight: 400;
}
.tool-group-heading {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 28px;
}
.category-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  flex: none;
  border-radius: 50%;
  background: #263149;
  color: var(--rose);
}
.category-icon .icon {
  width: 27px;
  height: 27px;
}
.tool-group-heading h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.tool-group-heading p {
  font-size: 13px;
  color: #bbc3d3;
  margin-top: 5px;
}
.tool-group-vehicles {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid #745067;
  border-radius: 18px;
  background: linear-gradient(120deg, #322238, #1d263e);
}
.tool-group-vehicles .tool-grid {
  max-width: 650px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tool-group-vehicles .tool-grid > .app-tile:first-child {
  grid-column: auto;
}
.tool-group-vehicles .category-icon {
  background: #553047;
}
.tool-group-vehicles .tool-group-heading p {
  color: #d4c4ce;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.app-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
  min-width: 0;
  min-height: 212px;
  padding: 31px 22px;
  text-align: center;
  box-shadow: 0 0 0 0.5px #ffffff38;
}
.tool-grid:not(.tool-grid-vehicles)
  > .app-tile:nth-last-child(2):nth-child(4n + 1) {
  grid-column: 2;
}
.tool-card {
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.tool-card:hover {
  background: var(--plum);
  box-shadow: 0 0 0 1px #9e5e75;
  z-index: 1;
}
.tool-card:focus-visible {
  outline-offset: -5px;
  z-index: 1;
}
.tool-icon {
  color: var(--ivory);
}
.tool-icon .icon {
  width: 43px;
  height: 43px;
  stroke-width: 1.4;
}
.app-tile h4 {
  max-width: 220px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.tool-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border: 1px solid #a26379;
  border-radius: 4px;
  color: var(--ivory);
  background: var(--wine);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.tool-more .icon {
  width: 13px;
  height: 13px;
  transition: transform 0.18s;
}
.tool-card:hover .tool-more .icon {
  transform: translateX(2px);
}
.community {
  position: relative;
  isolation: isolate;
  padding-block: 112px;
  color: var(--ivory);
  background: var(--wine);
}
.community-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #301420d9;
  z-index: -1;
}
.community-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 34px;
}
.community .section-label {
  color: var(--ivory);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.community h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2;
}
.site-footer {
  background: var(--wine);
  color: var(--ivory);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 75px;
  padding-block: 70px 60px;
}
.footer-brand .brand-art {
  width: 300px;
}
.footer-brand > p {
  margin-top: 22px;
  font-size: 13px;
  color: #d6bdc5;
}
.footer-brand > span {
  display: block;
  font-size: 11px;
  color: #c9a7b3;
  margin-top: 17px;
}
.footer-main h2 {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 17px 0 20px;
}
.footer-main nav > a,
.footer-contact > a {
  display: block;
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #d6bdc5;
  font-size: 12px;
  padding-block: 6px;
}
.footer-contact .icon {
  width: 18px;
  height: 18px;
  flex: none;
  margin-right: 10px;
  color: var(--rose);
}
.footer-main a:hover {
  color: white;
}
.footer-contact > p {
  font-size: 11px;
  color: #c9a7b3;
  margin-top: 20px;
}
.footer-bottom {
  border-top: 1px solid #ffffff26;
  padding-block: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #d6bdc5;
}
.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.footer-bottom .icon {
  width: 16px;
  height: 16px;
}
.dialog-open {
  overflow: hidden;
  scrollbar-gutter: stable;
}
dialog {
  color: var(--ink);
  background: var(--paper);
  border: 0;
  padding: 0;
  width: min(620px, calc(100% - 40px));
  max-height: calc(100svh - 64px);
  border-radius: 12px;
  box-shadow: 0 30px 120px #070c2059;
  overscroll-behavior: contain;
}
dialog[open] {
  animation: dialog-in 0.2s ease-out;
}
dialog::backdrop {
  background: #0b1024b8;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  z-index: 2;
  right: 17px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #ffffff15;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  color: var(--ivory);
}
.dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.dialog-close:hover {
  background: #ffffff2c;
}

.dialog-intro {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  background: var(--wine);
  padding: 24px 72px 24px 28px;
  color: var(--ivory);
}
.dialog-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #bd8b9b;
  border-radius: 11px;
  color: #e6bfcc;
}
.dialog-icon .icon {
  width: 24px;
  height: 24px;
}
.dialog-category {
  font-size: 11px;
  color: #d8b5c1;
  margin-bottom: 5px;
}
.dialog-intro h2 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.dialog-content {
  padding: 29px 40px 17px;
}
.dialog-content > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.dialog-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--wine);
  margin-top: 22px;
}
.dialog-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.dialog-content li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.7;
}
.dialog-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--berry);
  font-weight: 600;
}
.dialog-content .dialog-note {
  font-size: 10px;
  line-height: 1.8;
  background: var(--ivory);
  padding: 13px 15px;
  margin-top: 20px;
  border-radius: 4px;
}
.dialog-action {
  padding: 19px 40px 30px;
  background: var(--paper);
}
.dialog-action .button {
  width: 100%;
  gap: 8px;
}
.dialog-action > span {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.mobile-menu {
  padding: 70px 28px 30px;
  max-width: 480px;
}
.mobile-menu h2 {
  font-size: 28px;
  color: var(--wine);
  margin-bottom: 20px;
}
.mobile-menu .dialog-close {
  color: var(--wine);
  border-color: var(--line);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.mobile-menu nav > a,
.mobile-apps > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  font-size: 18px;
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}
.mobile-apps > summary {
  cursor: pointer;
  list-style: none;
}
.mobile-apps > summary::-webkit-details-marker {
  display: none;
}
.mobile-apps > summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.18s;
}
.mobile-apps[open] > summary .icon {
  transform: rotate(180deg);
}
.mobile-apps-content {
  padding-top: 22px;
}
.mobile-apps .nav-app-groups {
  grid-template-columns: 1fr;
  gap: 24px;
}
.mobile-apps .nav-app-link {
  font-size: 13px;
}
.mobile-apps .nav-apps-footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-bottom: 12px;
}
.mobile-student-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.crowdfunding {
  padding-block: 72px;
  background: var(--paper);
}
.crowdfunding-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 60px;
}
.coming-soon {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 600;
}
.crowdfunding h2 {
  font-size: clamp(36px, 3.6vw, 52px);
  color: var(--wine);
}
.crowdfunding h3 {
  margin-bottom: 14px;
  font-size: 20px;
}
.crowdfunding-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 14px;
}
.mobile-menu .button {
  width: 100%;
}
.redirect-page {
  min-height: 100svh;
  background: var(--wine);
  color: var(--ivory);
  display: grid;
  place-items: center;
  padding: 40px 24px;
  text-align: center;
}
.redirect-page .brand {
  width: fit-content;
  margin: 0 auto 40px;
}
.redirect-page h1 {
  font-size: 52px;
  margin-bottom: 22px;
}
.redirect-page p {
  max-width: 450px;
  color: #dfcdd2;
  margin: 0 auto 25px;
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Navigation remains usable when JavaScript is unavailable. */
html:not(.js) .site-header {
  background: var(--wine);
  position: relative;
  top: 0;
  height: auto;
}
html:not(.js) .header-inner {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  padding-block: 14px;
}
html:not(.js) .desktop-nav {
  display: flex;
  flex-wrap: wrap;
}
html:not(.js) .nav-dropdown {
  position: static;
  transform: none;
  width: 100%;
  max-height: none;
}
@media (max-width: 1199px) {
  :root {
    --gutter: 36px;
  }
  .brand-art {
    width: 240px;
  }
  .header-inner {
    gap: 22px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }
  .header-access {
    font-size: 11px;
    padding-inline: 15px;
  }
  .footer-main {
    gap: 35px;
  }
}
@media (max-width: 1099px) {
  :root {
    --header-height: 88px;
    --header-compact-height: 60px;
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .menu-toggle {
    grid-column: 3;
  }
  .js .desktop-nav {
    display: none;
  }
  .js .menu-toggle {
    display: block;
  }
  .header-access {
    margin-left: auto;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-copy {
    max-width: 540px;
  }
  .hero::before {
    background: linear-gradient(90deg, #301420ed, #251323bd 40%, #141e3340 85%);
  }
  .section-space {
    padding-block: 82px;
  }
  .app-tile {
    min-height: 198px;
    padding: 26px 16px;
    gap: 17px;
  }
  .app-tile h4 {
    font-size: 12px;
  }
  .tool-icon .icon {
    width: 38px;
    height: 38px;
  }
  .footer-brand .brand-art {
    width: 235px;
  }
  .footer-main {
    grid-template-columns: 1.15fr 0.7fr 1fr;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  :root {
    --gutter: 24px;
    --header-height: 84px;
    --header-compact-height: 56px;
  }
  body {
    font-size: 14px;
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .menu-toggle {
    grid-column: 2;
  }
  .brand-art {
    width: 236px;
  }
  .header-access {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .desktop-nav {
    flex-wrap: wrap;
    gap: 4px 16px;
    font-size: 13px;
  }
  html:not(.js) .desktop-nav {
    width: 100%;
  }
  html:not(.js) .nav-solutions {
    width: 100%;
  }
  html:not(.js) .nav-dropdown {
    position: static;
    width: 100%;
  }
  .nav-app-groups {
    grid-template-columns: 1fr;
  }
  .nav-apps-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .crowdfunding {
    padding-block: 48px;
  }
  .crowdfunding-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .student-access {
    justify-content: center;
  }
  .hero {
    min-height: max(730px, 100svh);
    align-items: flex-end;
  }
  .hero-image {
    object-position: right center;
  }
  .hero-scene-secondary .hero-image {
    object-position: 69% center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      #141e3326 10%,
      #28141d47 24%,
      #301420e8 48%,
      #301420f5 85%
    );
  }
  .hero-layout {
    padding-block: 280px 112px;
  }
  .hero-copy {
    max-width: 540px;
  }
  .hero-intro {
    font-size: 10px;
    letter-spacing: 0.07em;
    gap: 11px;
    margin-bottom: 21px;
  }
  .intro-line {
    width: 20px;
  }
  .hero h1 {
    font-size: clamp(44px, 9.4vw, 64px);
    line-height: 1.08;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 23px;
    max-width: 440px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 12px;
  }
  .hero-actions .button {
    padding-inline: 20px;
    font-size: 12px;
    gap: 12px;
    min-height: 52px;
  }
  .hero-actions .icon {
    width: 18px;
    height: 18px;
  }
  .section-wave {
    height: 60px;
  }
  .section-space {
    padding-block: 65px;
  }
  .section-heading {
    margin-bottom: 27px;
    gap: 20px;
  }
  .section-label {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .section-context {
    font-size: 10px;
  }
  .solutions-heading {
    margin-bottom: 35px;
  }
  .solutions h2 {
    font-size: clamp(29px, 6.7vw, 42px);
  }
  .platform-intro {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
  .platform-brand img {
    width: 40px;
  }
  .platform-brand span {
    font-size: 30px;
  }
  .platform-intro > p {
    max-width: 34ch;
    padding-left: 0;
    border-left: 0;
    font-size: 13px;
    text-align: center;
  }
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tool-grid:not(.tool-grid-vehicles)
    > .app-tile:nth-last-child(2):nth-child(4n + 1) {
    grid-column: auto;
  }
  .app-tile {
    min-height: 192px;
    padding: 24px 13px;
    gap: 16px;
  }
  .app-tile h4 {
    font-size: 11px;
    letter-spacing: 0.025em;
    max-width: 190px;
    min-height: 33px;
    display: flex;
    align-items: center;
  }
  .tool-icon .icon {
    width: 36px;
    height: 36px;
  }
  .tool-more {
    font-size: 9px;
    padding: 4px 9px;
  }
  .community {
    padding-block: 76px;
  }
  .community-inner {
    gap: 28px;
  }
  .community h2 {
    font-size: clamp(29px, 6.8vw, 42px);
  }
  .community .section-label {
    font-size: 10px;
  }
  .community-image {
    object-position: 60% center;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-block: 45px 30px;
    gap: 27px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand .brand-art {
    width: 265px;
  }
  .footer-brand > p {
    font-size: 12px;
    margin-top: 18px;
  }
  .footer-main h2 {
    font-size: 12px;
    margin: 0 0 12px;
  }
  .footer-main nav > a,
  .footer-contact > a {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
  .footer-contact > p {
    font-size: 10px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 9px;
    padding-block: 17px;
    gap: 20px;
  }
  .footer-bottom > p {
    max-width: 210px;
  }
  .footer-bottom > a {
    white-space: nowrap;
    gap: 6px;
  }
  .footer-bottom .icon {
    width: 13px;
    height: 13px;
  }
  dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 28px);
    border-radius: 10px;
  }
  .dialog-content {
    padding: 23px 25px 12px;
  }
  .dialog-action {
    padding: 18px 25px 24px;
  }
  .dialog-close {
    right: 14px;
    top: 14px;
  }
  .dialog-action .button {
    min-height: 52px;
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  :root {
    --gutter: 18px;
  }
  .brand-art {
    width: 215px;
  }
  .hero-layout {
    padding-top: 265px;
    padding-bottom: 90px;
  }
  .hero-intro {
    font-size: 9px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    padding-inline: 15px;
    font-size: 12px;
    gap: 9px;
  }
  .app-tile {
    min-height: 187px;
    padding: 22px 10px;
  }
  .footer-main {
    gap: 24px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
  .footer-bottom > p {
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .course-copy {
    padding-left: 42px;
  }
  .course-copy h2 {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .course-showcase {
    min-height: 650px;
    grid-template-columns: 1.2fr 1fr;
  }
  .course-copy {
    padding: 42px 0 46px 34px;
  }
  .course-copy h2 {
    font-size: 61px;
  }
  .course-description {
    max-width: 300px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .brand-stacked {
    gap: 11px;
  }
  .brand-symbol {
    width: 54px;
    height: 56px;
  }
  .brand-wordmark {
    width: 110px;
    height: 52px;
  }
  .course-mentor {
    grid-template-columns: 1fr;
    padding: 26px 27px 22px;
    gap: 18px;
  }
  .mentor-heading h3 {
    font-size: 28px;
  }
  .mentor-heading > p:last-child {
    margin-top: 7px;
  }
  .mentor-links {
    gap: 4px 18px;
  }
  .mentor-links .course-method-link {
    margin-left: 0;
  }

  .formation {
    padding-block: 30px 65px;
  }
  .course-showcase {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 20px;
  }
  .course-showcase::before {
    display: none;
  }
  .course-portrait {
    position: relative;
    inset: auto;
    order: -1;
    z-index: 0;
    aspect-ratio: 1.1;
  }
  .course-portrait img {
    position: absolute;
    inset: 0;
    object-position: right 32%;
  }
  .course-portrait::after {
    content: "";
    position: absolute;
    inset: 60% 0 0;
    background: linear-gradient(transparent, var(--wine));
  }
  .course-copy {
    padding: 5px 27px 31px;
  }
  .course-label {
    margin-bottom: 23px;
    font-size: 12px;
  }
  .course-copy h2 {
    font-size: clamp(46px, 9vw, 65px);
  }
  .course-description {
    max-width: 100%;
    font-size: 15px;
    margin-top: 23px;
  }
  .course-cta {
    width: 100%;
    margin-top: 25px;
    gap: 20px;
  }
  .app-categories {
    gap: 10px;
    margin-bottom: 36px;
  }
  .app-categories a {
    padding: 14px 13px;
    gap: 11px;
    min-height: 77px;
    border-radius: 10px;
  }
  .app-categories a > .icon:first-child {
    width: 24px;
    height: 24px;
  }
  .app-categories a > .icon:last-child {
    display: none;
  }
  .app-categories a > span {
    font-size: 14px;
  }
  .app-categories small {
    font-size: 10px;
  }
  .tool-group-heading {
    gap: 13px;
    margin-bottom: 24px;
  }
  .category-icon {
    width: 44px;
    height: 44px;
  }
  .category-icon .icon {
    width: 23px;
    height: 23px;
  }
  .tool-group-heading h3 {
    font-size: 25px;
  }
  .tool-group-heading p {
    font-size: 12px;
    line-height: 1.65;
  }
  .tool-group-vehicles {
    margin-top: 40px;
    padding: 23px 13px 13px;
    border-radius: 13px;
  }
  .tool-group-vehicles .app-tile {
    padding-inline: 8px;
  }
  .tool-group-vehicles .tool-group-heading {
    gap: 11px;
  }
  .dialog-intro {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 22px 62px 22px 22px;
  }
  .dialog-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }
  .dialog-icon .icon {
    width: 21px;
    height: 21px;
  }
  .dialog-intro h2 {
    font-family: var(--body);
    font-weight: 600;
    font-size: 22px;
  }
  .dialog-category {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
@media (max-width: 380px) {
  .brand-stacked {
    gap: 10px;
  }
  .brand-symbol {
    width: 51px;
    height: 53px;
  }
  .brand-wordmark {
    width: 104px;
    height: 50px;
  }
  .course-mentor {
    padding-inline: 22px;
  }

  .course-copy {
    padding-inline: 22px;
  }
  .course-copy h2 {
    font-size: 43px;
  }
  .course-cta {
    font-size: 12px;
    padding-inline: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .tool-card:hover .tool-more .icon {
    transform: none;
  }
}

/* Shared navigation and direct access to the two platforms. */
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}
.header-actions .header-access {
  gap: 8px;
  padding-inline: 14px;
}

.footer-main {
  grid-template-columns: 1fr 0.75fr 1fr 1fr;
  gap: 36px;
  padding-block: 54px;
}
.footer-brand .brand-art {
  width: 230px;
  max-width: 100%;
}
.footer-main h2 {
  margin-top: 0;
  margin-bottom: 16px;
}
.footer-office address {
  font-style: normal;
  color: #d6bdc5;
  font-size: 12px;
  line-height: 1.9;
}
.footer-office > p {
  margin-top: 12px;
  font-size: 10px;
  color: #c9a7b3;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  color: #d6bdc5;
}

.profile-hero {
  background: linear-gradient(115deg, var(--wine), #251d28);
  color: var(--ivory);
}
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 144px 72px;
}
.profile-copy {
  container-type: inline-size;
  min-width: 0;
}
.profile-intro {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--rose);
}
.profile-copy h1 {
  font-size: clamp(60px, 6.5vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.profile-description {
  max-width: 33ch;
  font-size: 18px;
  margin-top: 26px;
  color: #e5d2d8;
}
.profile-milestone {
  margin-top: 32px;
  border-top: 1px solid #ffffff2b;
  padding-top: 24px;
  font-family: var(--display);
  font-size: clamp(18px, 6.4cqi, 36px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.profile-photo {
  width: 100%;
  max-width: 440px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid #ffffff26;
  border-radius: 18px;
  box-shadow: 0 24px 64px #10091130;
}
.profile-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.profile-story {
  padding-block: 84px;
}
.profile-story-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.profile-story h2 {
  max-width: 16ch;
  font-size: clamp(36px, 3.5vw, 48px);
  color: var(--wine);
}
.profile-story p {
  color: var(--muted);
  margin-bottom: 20px;
}
.profile-story .button {
  margin-top: 12px;
  gap: 24px;
}

@media (max-width: 1099px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .profile-layout {
    gap: 40px;
  }
  .profile-story-layout {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }
  .menu-toggle {
    grid-column: 3;
  }
  .header-actions {
    gap: 4px;
  }
  .header-actions .header-access {
    display: inline-flex;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-color: #ffffff35;
  }
  .header-access-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .footer-main {
    gap: 28px 24px;
    padding-block: 40px;
  }
  .footer-brand,
  .footer-office {
    grid-column: 1 / -1;
  }
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 112px 48px;
  }
  .profile-intro {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .profile-copy h1 {
    font-size: clamp(58px, 14vw, 80px);
  }
  .profile-description {
    font-size: 16px;
  }
  .profile-milestone {
    margin-top: 28px;
  }
  .profile-photo {
    max-width: 480px;
    justify-self: start;
  }
  .profile-story {
    padding-block: 48px;
  }
  .profile-story-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile-story h2 {
    max-width: 20ch;
  }
}
@media (max-width: 380px) {
  .brand-stacked {
    gap: 6px;
  }
  .brand-symbol {
    width: 40px;
    height: 42px;
  }
  .brand-wordmark {
    width: 84px;
    height: 43px;
  }
}

.contact-heading {
  padding-block: 146px 48px;
  background: linear-gradient(115deg, var(--wine), #251d28);
  color: var(--ivory);
}
.contact-heading h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.12;
}
.contact-heading p {
  margin-top: 18px;
  color: #e5d2d8;
  font-size: 15px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  align-items: start;
  gap: clamp(40px, 6vw, 86px);
  padding-block: 56px 80px;
}
.contact-context {
  padding-top: 12px;
}
.contact-context h2 {
  font-size: 36px;
  color: var(--wine);
  margin-bottom: 16px;
}
.contact-context > p {
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.8;
}
.contact-channels {
  display: grid;
  gap: 10px;
}
.contact-channel {
  display: grid;
  grid-template-columns: 24px 1fr 18px;
  align-items: center;
  gap: 16px;
  padding: 19px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--wine);
  transition:
    background 200ms ease,
    border-color 200ms ease;
}
.contact-channel > .icon {
  width: 24px;
  height: 24px;
  color: var(--berry);
}
.contact-channel strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.contact-channel > span > span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}
.contact-channel .channel-arrow {
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.contact-channel:hover {
  background: var(--ivory);
  border-color: #b48a99;
}
.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 40px -30px #3b152038;
  scroll-margin-top: 90px;
}
.form-heading {
  margin-bottom: 2px;
}
.form-heading > p:first-child {
  font-size: 10px;
  font-weight: 600;
  color: var(--berry);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.form-heading h2 {
  font-size: clamp(29px, 3vw, 36px);
  line-height: 1.2;
  color: var(--wine);
}
.form-heading > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--wine);
}
.form-field label span {
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #948881;
  border-radius: 8px;
  background: #fdfcfa;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.form-field input::placeholder {
  color: #786d68;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.form-field :is(input, select, textarea):focus-visible {
  border-color: var(--berry);
  outline: 2px solid var(--berry);
  outline-offset: 2px;
}
.form-field [aria-invalid="true"] {
  border-color: #a22e43;
  background: #fffafb;
}
.field-help {
  font-size: 11px;
  color: var(--muted);
}
.field-error {
  color: #a22e43;
  font-size: 12px;
  line-height: 1.6;
}
.form-submit {
  display: grid;
  gap: 14px;
}
.contact-form .button {
  justify-self: start;
  gap: 10px;
}
.contact-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.form-status {
  font-size: 13px;
  line-height: 1.7;
  color: var(--wine);
}
.form-status:empty {
  display: none;
}
.form-status[data-state="error"] {
  color: #a22e43;
}
@media (max-width: 1099px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.2fr;
    gap: 30px;
  }
  .form-pair {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 32px 48px;
  }
  .contact-context {
    padding-top: 0;
  }
  .contact-context > p {
    max-width: none;
    margin-bottom: 18px;
  }
  .contact-context h2 {
    font-size: 30px;
  }
  .contact-heading {
    padding-block: 114px 36px;
  }
  .contact-heading p {
    font-size: 13px;
  }
  .contact-form {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .contact-form .button {
    width: 100%;
  }
}

/* Internal pages share one alignment line from navigation to footer. */
:is(.profile-page, .contact-page) .header-inner {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
}
