/* HiLine V4 — a continuous spatial story. Palette is intentionally restricted. */
:root {
  --paper: #f1f2f7;
  --ink: #16171c;
  --muted: #737681;
  --blue: #244bff;
  --line: #d9dce5;
  --font:
    "Helvetica Neue", "Avenir Next", "PingFang SC", "Microsoft YaHei",
    sans-serif;
  --display: var(--font);
  --gutter: clamp(22px, 4vw, 72px);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  background: var(--paper);
  color: var(--ink);
}
::selection {
  background: #244bff;
  color: #fff;
}
.immersive-site .site-header,
.interior-page .site-header {
  height: 96px;
  background: #f1f2f7f5;
  border: 0;
  box-shadow: none;
  backdrop-filter: blur(20px);
}
.site-header .nav-shell {
  height: 96px;
  max-width: none;
}
.site-header .brand {
  width: 137px;
  flex-shrink: 0;
}
.site-header .brand img {
  filter: none !important;
  opacity: 1 !important;
  width: 137px;
  height: auto;
}
.site-header .desktop-nav {
  display: none;
}
.site-header .nav-actions {
  margin-left: auto;
  gap: 12px;
}
.site-header .nav-contact {
  background: #1b1d26;
  border: 0;
  color: #fff;
  border-radius: 40px;
  padding: 13px 22px;
  font-size: 12px;
}
.site-header .nav-contact:hover {
  background: #244bff;
}
.site-header .menu-toggle {
  display: flex !important;
  width: 62px;
  height: 46px;
  background: #fff;
  border: 0;
  border-radius: 28px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: row;
}
.site-header .menu-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #16171c;
}
.site-header .menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateX(5px) rotate(45deg);
  width: 17px;
  height: 2px;
}
.site-header .menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateX(-5px) rotate(-45deg);
  width: 17px;
  height: 2px;
}
.site-header .language-toggle {
  background: transparent;
  border: 0;
  width: 46px;
  height: 46px;
  font-size: 12px;
}
.site-header .mobile-menu {
  position: absolute;
  top: 82px;
  right: var(--gutter);
  left: auto;
  display: flex;
  flex-direction: column;
  width: min(380px, calc(100vw - 40px));
  padding: 22px 32px 28px;
  background: #fff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 24px 80px #10111726;
  transform-origin: top right;
  animation: menu-arrive 0.35s both;
}
.site-header .mobile-menu a {
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.035em;
  padding: 12px 0;
  border: 0;
}
.site-header .mobile-menu a:hover {
  color: var(--blue);
  transform: translateX(6px);
}
@keyframes menu-arrive {
  from {
    opacity: 0;
    transform: translateY(-15px) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.home-proposition {
  padding: 129px var(--gutter) 35px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: end;
  gap: 25px;
}
.home-proposition > p:first-child {
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  padding-bottom: 7px;
  color: #656874;
}
.home-proposition > p:nth-child(2) {
  font-size: clamp(23px, 2.1vw, 33px);
  line-height: 1.38;
  letter-spacing: -0.04em;
}
.home-proposition > a {
  justify-self: end;
  font-size: 12px;
  padding-bottom: 6px;
}
.current-journey {
  height: 430svh;
  min-height: 0;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: visible;
  display: block;
  isolation: auto;
}
.current-journey:before,
.current-journey:after {
  display: none;
}
.journey-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
}
.current-stage {
  position: absolute;
  inset: 100px 20px 20px;
  background: #101117;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
}
.current-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  outline-offset: -6px;
  cursor: grab;
  touch-action: pan-y;
}
.current-canvas:active {
  cursor: grabbing;
}
.current-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #101117;
}
.current-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.current-stage.webgl-ready .current-fallback {
  visibility: hidden;
}
.current-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='.4' filter='url(%23n)'/%3E%3C/svg%3E");
}
.current-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #10111738, transparent 50%),
    linear-gradient(0deg, #101117c9, transparent 35%);
}
.chapter-copy {
  position: absolute;
  left: var(--gutter);
  bottom: 155px;
  z-index: 3;
  color: #fff;
  pointer-events: none;
  max-width: 80%;
}
.chapter-copy > p {
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  color: #b7bbc7;
}
.chapter-copy h1,
.chapter-copy h2 {
  font-size: clamp(65px, 7.4vw, 120px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.07em;
  color: #fff;
  margin: 0;
}
.chapter-copy a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  width: fit-content;
  font-size: 12px;
  margin-top: 27px;
  padding: 10px 0;
  border-bottom: 1px solid #ffffff60;
}
.chapter-copy a > span:last-child {
  font-size: 23px;
  line-height: 1;
}
.chapter-copy.entering {
  animation: copy-enter 0.6s both;
}
@keyframes copy-enter {
  from {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.chapter-nav {
  position: absolute;
  left: var(--gutter);
  bottom: 58px;
  z-index: 4;
  display: flex;
  gap: 28px;
}
.chapter-nav button {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 11px;
  color: #959ba9;
  border: 0;
  background: transparent;
  padding: 10px 0;
}
.chapter-nav button > span:first-child {
  font: 9px var(--mono);
}
.chapter-nav button[aria-current] {
  color: #fff;
}
.chapter-nav button[aria-current]:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}
.journey-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 69px;
  z-index: 4;
  font: 9px var(--mono);
  color: #bdc0ca;
  display: flex;
  gap: 25px;
}
.journey-progress {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 42px;
  height: 1px;
  background: #ffffff1c;
  z-index: 4;
}
.journey-progress span {
  display: block;
  background: #fff;
  width: 0;
  height: 1px;
}
.current-tools {
  position: absolute;
  top: 25px;
  left: 30px;
  right: 30px;
  display: flex;
  gap: 9px;
  align-items: center;
  z-index: 5;
  color: #c6cad4;
  pointer-events: none;
}
.gesture-hint {
  font: 9px var(--mono);
  letter-spacing: 0.08em;
  flex: 1;
}
.current-tools button {
  pointer-events: auto;
  border: 1px solid #ffffff30;
  background: #ffffff09;
  color: #fff;
  height: 33px;
  min-width: 33px;
  border-radius: 20px;
  font-size: 10px;
  backdrop-filter: blur(15px);
}
.field-release {
  padding: 0 14px;
}
.current-cursor {
  position: absolute;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  pointer-events: none;
  z-index: 4;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  --charge: 0;
}
.current-cursor span {
  font: 8px var(--mono);
  letter-spacing: 0.08em;
}
.current-cursor svg {
  position: absolute;
  inset: 0;
  width: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-dasharray: 226;
  stroke-dashoffset: calc(226 * (1 - var(--charge)));
  transform: rotate(-90deg);
}
.current-stage.pointer-active .current-cursor {
  opacity: 1;
}
.scene-status {
  position: absolute;
  right: 35px;
  top: 76px;
  color: #fff;
  font-size: 11px;
  z-index: 5;
}
.motion-paused .current-cursor {
  display: none;
}
.manifesto {
  padding: 150px var(--gutter) 160px;
  position: relative;
}
.eyebrow {
  font: 10px var(--mono);
  letter-spacing: 0.09em;
  color: #6d707b;
  margin-bottom: 34px;
}
.manifesto h2 {
  font-size: clamp(45px, 7vw, 112px);
  letter-spacing: -0.06em;
  line-height: 1.17;
  font-weight: 500;
  color: #191b21;
}
.manifesto h2 > span:last-child {
  color: #8b8e99;
}
.manifesto > div {
  display: flex;
  justify-content: flex-end;
  gap: 70px;
  margin-top: 55px;
  align-items: center;
}
.manifesto > div > p {
  font-size: 16px;
  color: #666a75;
  line-height: 1.9;
}
.round-link {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 17px 25px;
  border: 1px solid #bcc0cd;
  border-radius: 35px;
  font-size: 12px;
}
.round-link:hover {
  background: #244bff;
  color: #fff;
  border-color: #244bff;
}
.reveal {
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.js-motion .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(38px);
}
.featured-journey {
  height: 260svh;
  position: relative;
}
.featured-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 126px var(--gutter) 25px;
  overflow: hidden;
}
.featured-heading {
  display: flex;
  align-items: baseline;
  gap: 40px;
  margin-bottom: 38px;
}
.featured-heading .eyebrow {
  margin: 0;
}
.featured-heading h2 {
  font-size: clamp(27px, 3vw, 46px);
  letter-spacing: -0.05em;
  font-weight: 500;
}
.featured-heading > a {
  margin-left: auto;
  font-size: 12px;
  white-space: nowrap;
}
.featured-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}
.featured-project {
  width: 74vw;
  max-width: 1160px;
  display: block;
  flex-shrink: 0;
}
.project-image {
  height: 55svh;
  min-height: 270px;
  max-height: 660px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #101117;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.featured-project:hover .project-image img {
  transform: scale(1.06);
}
.image-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font: 8px var(--mono);
  letter-spacing: 0.1em;
  color: #ffffffb0;
}
.project-open {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: white;
  color: #16171c;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  font-size: 26px;
  transition:
    background 0.2s,
    transform 0.3s;
}
.featured-project:hover .project-open {
  background: #244bff;
  color: #fff;
  transform: rotate(45deg);
}
.project-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 25px;
  gap: 8px 24px;
}
.project-meta > p {
  grid-column: 1/-1;
  font: 9px var(--mono);
  color: #737681;
}
.project-meta h3 {
  font-size: clamp(23px, 2.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.05em;
}
.project-meta > span {
  align-self: end;
  padding-bottom: 5px;
  font-size: 11px;
}
.featured-all {
  width: 47vw;
  position: relative;
  padding: 50px;
  background: #244bff;
  border-radius: 20px;
  color: #fff;
  height: 55svh;
  min-height: 270px;
  max-height: 660px;
}
.featured-all > span:first-child {
  font-size: clamp(33px, 4vw, 62px);
  line-height: 1.3;
  letter-spacing: -0.05em;
}
.featured-all > div {
  position: absolute;
  left: 50px;
  bottom: 35px;
  font-size: 90px;
  line-height: 1;
}
.featured-all small {
  display: block;
  font: 10px var(--mono);
  margin-top: 15px;
}
.featured-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.featured-controls p {
  font: 9px var(--mono);
  color: #787c88;
}
.featured-controls > div {
  display: flex;
  gap: 10px;
}
.featured-controls button {
  border: 1px solid #c9cdda;
  background: transparent;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.home-ecosystem {
  padding: 100px var(--gutter) 150px;
}
.home-ecosystem h2 {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.home-ecosystem > a {
  display: block;
  text-align: right;
  font-size: 12px;
  margin-top: 35px;
}
.partner-logos,
.customer-logos {
  filter: none;
}
.partner-logos img,
.customer-logos img,
.partner-logo img,
.customer-logo img,
.ecosystem-logo img {
  filter: none !important;
  opacity: 1 !important;
}
.next-chapter {
  padding: 110px var(--gutter) 60px;
  background: #244bff;
  color: #fff;
  overflow: hidden;
}
.next-chapter > p {
  font-size: 15px;
  color: #c4d0ff;
  margin-bottom: 50px;
}
.next-chapter > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: clamp(46px, 7.6vw, 122px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}
.next-arrow {
  font-size: 1.3em;
  transition: transform 0.4s;
}
.next-chapter > a:hover .next-arrow {
  transform: rotate(45deg);
}
.next-chapter > div {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  font: 10px var(--mono);
  color: #cbd4ff;
}
.site-footer {
  background: #f1f2f7;
  color: #595c66;
  padding-top: 50px;
}
.site-footer img {
  filter: none !important;
}
.site-footer .footer-brand {
  color: #16171c;
}
.site-footer a:hover {
  color: #244bff;
}
/* Dedicated destinations replace the former one-click dialogs. */
.hub-hero {
  height: 100svh;
  min-height: 720px;
  position: relative;
  display: block;
  padding: 0;
  background: #f1f2f7;
  overflow: hidden;
}
.hub-hero:before,
.hub-hero:after {
  display: none;
}
.hub-heading {
  position: absolute;
  left: var(--gutter);
  top: 155px;
  z-index: 3;
  pointer-events: none;
  color: #fff;
}
.back-link {
  display: inline-block;
  font-size: 11px;
  pointer-events: auto;
  margin-bottom: 55px;
  color: #b7bfda;
}
.hub-heading .eyebrow {
  color: #c3c8d8;
  margin-bottom: 22px;
}
.hub-heading h1 {
  font-size: clamp(45px, 5.8vw, 92px);
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 500;
  max-width: 940px;
  color: #fff;
  margin: 0;
}
.hub-hero .current-stage {
  inset: 110px 20px 20px;
}
.hub-hero .current-tools {
  top: auto;
  bottom: 30px;
}
.hub-hero .current-stage:after {
  background: linear-gradient(180deg, #10111780, transparent 90%);
}
.hub-scroll {
  position: absolute;
  bottom: 69px;
  left: var(--gutter);
  color: #fff;
  font-size: 11px;
  z-index: 4;
  display: flex;
  gap: 50px;
}
.hub-hero .gesture-hint {
  margin-left: auto;
  flex: 0 1 auto;
}
.hub-hero .current-tools {
  justify-content: flex-end;
}
.hub-hero .current-cursor {
  display: none;
}
.hub-page .section {
  padding-top: 100px;
  padding-bottom: 120px;
}
.hub-page .section-heading h2 {
  font-size: clamp(35px, 4vw, 64px);
  letter-spacing: -0.05em;
  color: #17191e;
}
.hub-page .muted-heading {
  color: #898d99;
}
.hub-page .section-heading .section-intro {
  color: #6c707c;
}
.hub-page .section-heading .eyebrow {
  color: #767b88;
}
.hub-page .section-heading {
  margin-bottom: 50px;
}
.hub-page .about-switcher {
  display: flex;
  gap: 12px;
  margin: 0 0 50px;
}
.hub-page .about-switcher button {
  background: transparent;
  border: 1px solid #c8cbd6;
  border-radius: 24px;
  padding: 12px 25px;
  color: #555b6c;
}
.hub-page .about-switcher button[aria-pressed="true"] {
  background: #244bff;
  border-color: #244bff;
  color: #fff;
}
.hub-page [data-about-panel] {
  display: block;
}
.hub-page [data-about-panel][hidden] {
  display: none;
}
.hub-page .about-panel {
  min-height: 0;
}
.hub-page .ai-workbench {
  box-shadow: none;
  border-radius: 20px;
  overflow: hidden;
}
.hub-page .contact-form-card {
  box-shadow: none;
  border: 1px solid #dce0ea;
}
.hub-contact .hub-hero {
  height: auto;
  min-height: 510px;
}
.hub-contact .hub-heading {
  position: relative;
  top: auto;
  left: auto;
  padding: 155px var(--gutter) 90px;
  color: #16171c;
}
.hub-contact .hub-heading h1 {
  color: #16171c;
}
.hub-contact .hub-heading .eyebrow {
  color: #737681;
}
.hub-contact .back-link {
  color: #737681;
  margin-bottom: 30px;
}
.hub-contact .hub-scroll {
  display: none;
}
.hub-mail {
  display: block;
  pointer-events: auto;
  margin-top: 40px;
  color: #244bff;
  font-size: 20px;
}
.hub-contact .contact-section {
  padding-top: 45px;
  background: #f1f2f7;
}
.hub-contact .contact-section .contact-heading {
  display: none;
}
/* Whole-page portal transition, shared by all destinations. */
.page-portal {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  clip-path: inset(100% 0 0);
  background: #244bff;
  display: grid;
  place-items: center;
  color: #fff;
}
.page-portal span {
  font-size: clamp(45px, 7vw, 110px);
  letter-spacing: -0.05em;
}
.page-leaving .page-portal {
  animation: portal-close 0.5s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
.page-entering .page-portal {
  animation: portal-open 0.6s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
@keyframes portal-close {
  0% {
    clip-path: inset(100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes portal-open {
  0% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 100%);
  }
}
@media (min-width: 1600px) {
  .chapter-copy {
    bottom: 165px;
  }
  .current-stage {
    inset-inline: 32px;
  }
  .home-proposition {
    padding-top: 145px;
  }
}
@media (max-width: 800px) {
  .site-header .nav-shell,
  .immersive-site .site-header,
  .interior-page .site-header {
    height: 78px;
  }
  .site-header .brand,
  .site-header .brand img {
    width: 112px;
  }
  .site-header .nav-actions {
    gap: 3px;
  }
  .site-header .nav-contact {
    padding: 11px 16px;
    font-size: 10px;
  }
  .site-header .nav-contact svg {
    display: none;
  }
  .site-header .menu-toggle {
    width: 46px;
    height: 40px;
  }
  .site-header .language-toggle {
    width: 40px;
  }
  .site-header .mobile-menu {
    top: 70px;
  }
  .home-proposition {
    padding: 108px 22px 30px;
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .home-proposition > p:first-child {
    font-size: 8px;
    padding: 0;
  }
  .home-proposition > p:nth-child(2) {
    font-size: 26px;
  }
  .home-proposition > a {
    display: none;
  }
  .journey-pin {
    min-height: 620px;
  }
  .current-journey {
    height: 370svh;
  }
  .current-stage {
    inset: 85px 10px 12px;
    border-radius: 17px;
  }
  .chapter-copy {
    left: 30px;
    bottom: 175px;
    max-width: 90%;
  }
  .chapter-copy > p {
    font-size: 8px;
    margin-bottom: 16px;
  }
  .chapter-copy h1,
  .chapter-copy h2 {
    font-size: clamp(56px, 11vw, 86px);
  }
  .chapter-copy a {
    font-size: 11px;
    margin-top: 20px;
    gap: 20px;
  }
  .chapter-nav {
    left: 30px;
    bottom: 79px;
    gap: 23px;
  }
  .chapter-nav button {
    font-size: 10px;
    gap: 8px;
  }
  .journey-scroll {
    left: 30px;
    right: auto;
    bottom: 45px;
    font-size: 8px;
  }
  .journey-progress {
    left: 30px;
    right: 30px;
    bottom: 29px;
  }
  .current-tools {
    left: 20px;
    right: 20px;
    top: 18px;
  }
  .gesture-hint {
    font-size: 7px;
    max-width: 185px;
    line-height: 1.6;
  }
  .current-tools button {
    height: 30px;
    min-width: 30px;
  }
  .field-release {
    padding: 0 10px;
  }
  .current-cursor {
    display: none;
  }
  .manifesto {
    padding: 90px 24px 100px;
  }
  .manifesto h2 {
    font-size: clamp(35px, 7.3vw, 59px);
    line-height: 1.3;
  }
  .manifesto > div {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 33px;
  }
  .manifesto > div > p {
    font-size: 14px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 25px;
  }
  .featured-journey {
    height: auto;
  }
  .featured-pin {
    height: auto;
    position: relative;
    padding: 45px 24px 65px;
  }
  .featured-heading {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .featured-heading .eyebrow {
    width: 100%;
  }
  .featured-heading h2 {
    font-size: 27px;
  }
  .featured-heading > a {
    font-size: 11px;
  }
  .featured-track {
    width: calc(100vw - 24px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    padding-right: 24px;
    transform: none !important;
    scrollbar-width: none;
  }
  .featured-project {
    width: 83vw;
    scroll-snap-align: start;
    max-width: none;
  }
  .project-image {
    height: 43svh;
    min-height: 270px;
    border-radius: 14px;
  }
  .project-meta {
    gap: 9px;
  }
  .project-meta > p {
    font-size: 7px;
  }
  .project-meta h3 {
    font-size: 23px;
  }
  .project-meta > span {
    display: none;
  }
  .image-note {
    font-size: 7px;
    left: 18px;
    bottom: 18px;
  }
  .project-open {
    width: 43px;
    height: 43px;
    right: 18px;
    bottom: 18px;
    font-size: 23px;
  }
  .featured-all {
    width: 76vw;
    height: 43svh;
    min-height: 270px;
    padding: 30px;
  }
  .featured-all > span:first-child {
    font-size: 35px;
  }
  .featured-all > div {
    font-size: 70px;
    left: 30px;
    bottom: 25px;
  }
  .featured-controls {
    margin-top: 25px;
  }
  .home-ecosystem {
    padding: 60px 24px 90px;
  }
  .home-ecosystem h2 {
    font-size: 27px;
    line-height: 1.4;
  }
  .next-chapter {
    padding: 70px 24px 38px;
  }
  .next-chapter > p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .next-chapter > a {
    font-size: clamp(34px, 7vw, 59px);
    gap: 15px;
  }
  .next-chapter > div {
    padding-top: 65px;
    font-size: 7px;
  }
  .hub-hero {
    min-height: 680px;
    height: 90svh;
  }
  .hub-hero .current-stage {
    inset: 88px 10px 12px;
  }
  .hub-heading {
    top: 120px;
    left: 30px;
    right: 25px;
  }
  .hub-heading h1 {
    font-size: clamp(37px, 8.7vw, 64px);
  }
  .back-link {
    margin-bottom: 40px;
    font-size: 10px;
  }
  .hub-heading .eyebrow {
    font-size: 8px;
  }
  .hub-hero .current-tools {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }
  .hub-hero .gesture-hint {
    display: none;
  }
  .hub-scroll {
    bottom: 46px;
    left: 30px;
  }
  .hub-page .section {
    padding-top: 65px;
    padding-bottom: 75px;
  }
  .hub-page .section-heading h2 {
    font-size: 35px;
  }
  .hub-page .section-heading {
    margin-bottom: 32px;
  }
  .hub-contact .hub-hero {
    min-height: 0;
  }
  .hub-contact .hub-heading {
    padding: 115px 24px 60px;
  }
  .hub-contact .hub-heading h1 {
    font-size: 42px;
  }
  .hub-mail {
    font-size: 17px;
  }
  .hub-page .about-switcher {
    gap: 8px;
    flex-wrap: wrap;
  }
  .hub-page .about-switcher button {
    font-size: 11px;
    padding: 10px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .current-journey {
    height: 100svh;
  }
  .journey-pin {
    position: relative;
  }
  .featured-journey {
    height: auto;
  }
  .featured-pin {
    position: relative;
    height: auto;
    padding-bottom: 65px;
  }
  .featured-track {
    width: 100%;
    overflow-x: auto;
    transform: none !important;
  }
  .js-motion .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
  .page-portal {
    display: none;
  }
  .current-cursor {
    display: none;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* Explicitly replace the legacy illustration's fixed dimensions. */
.current-stage.hero-visual {
  width: auto;
  height: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  transform: none;
  opacity: 1;
  z-index: 0;
  left: 20px;
  right: 20px;
}
.journey-pin {
  height: calc(100svh - var(--intro-offset, 0px));
  min-height: 0;
}
.current-journey .current-stage {
  top: var(--stage-top, 0px);
}
.current-journey .chapter-copy h1,
.current-journey .chapter-copy h2 {
  font-weight: 500;
  font-size: clamp(65px, 7.4vw, 120px);
  line-height: 1.03;
  letter-spacing: -0.07em;
}
@media (max-width: 800px) {
  .current-stage.hero-visual {
    left: 10px;
    right: 10px;
  }
  .current-journey .chapter-copy h1,
  .current-journey .chapter-copy h2 {
    font-size: clamp(50px, 11vw, 86px);
  }
  .current-journey .current-stage {
    top: max(0px, calc(var(--stage-top, 0px) - 18px));
  }
}
.current-stage:after {
  background:
    linear-gradient(90deg, #1011178c, transparent 57%),
    linear-gradient(0deg, #101117a0, transparent 35%);
}
html[lang="en"] .current-journey .chapter-copy h1,
html[lang="en"] .current-journey .chapter-copy h2 {
  font-size: clamp(65px, 7.4vw, 116px);
  line-height: 1.03;
  max-width: 950px;
  letter-spacing: -0.065em;
  font-weight: 500;
}
.footer-wordmark {
  display: none;
}
.site-footer .footer-brand img {
  filter: none;
  width: 140px;
  height: auto;
}
.site-footer .footer-top {
  padding-top: 10px;
}
@media (max-width: 800px) {
  html[lang="en"] .current-journey .chapter-copy h1,
  html[lang="en"] .current-journey .chapter-copy h2 {
    font-size: clamp(41px, 9vw, 72px);
    line-height: 1.07;
  }
  .current-tools .gesture-hint {
    font-size: 8px;
  }
  .hub-hero .current-tools .gesture-hint {
    display: none;
  }
}
.chapter-copy {
  opacity: calc(1 - var(--travel, 0));
}
.chapter-copy.entering {
  animation-fill-mode: backwards;
}
.site-header .menu-toggle {
  width: 92px;
  gap: 5px;
}
.site-header .menu-toggle .menu-word {
  font-size: 10px;
  font-weight: 400;
  margin-right: 7px;
  letter-spacing: 0.03em;
}
.site-header .menu-toggle span {
  position: static;
  height: 5px;
  min-height: 5px;
  flex-shrink: 0;
  opacity: 1;
}
.site-header .menu-toggle[aria-expanded="true"] span {
  min-height: 2px;
  flex-shrink: 1;
}
@media (max-width: 800px) {
  .site-header .menu-toggle {
    width: 46px;
  }
  .site-header .menu-word {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .current-tools .gesture-hint,
  .current-tools .field-release,
  .current-tools .motion-toggle {
    display: none;
  }
}
:root {
  --navy: #111319;
  --navy-light: #191e2c;
  --ice: #bfd0ff;
}
.status-dot {
  background: #244bff;
  box-shadow: 0 0 12px #244bff44;
}
html:not(.js-experience) .current-journey {
  height: 100svh;
}
html:not(.js-experience) .journey-pin {
  position: relative;
}
html:not(.js-experience) .chapter-nav,
html:not(.js-experience) .current-tools {
  display: none;
}
html:not(.js-experience) .featured-journey {
  height: auto;
}
html:not(.js-experience) .featured-pin {
  height: auto;
  position: relative;
}
html:not(.js-experience) .featured-track {
  width: 100%;
  overflow-x: auto;
}
.hub-hero .current-stage:after {
  background: linear-gradient(
    180deg,
    #101117d9 0%,
    #101117a8 33%,
    transparent 78%
  );
}
/* Keep keyboard help available to assistive technology without visual coaching. */
.explorer-help.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;
}
.direct-tools > label {
  margin-left: auto;
}
