@font-face {
  font-family: "Geomini";
  src: url("./Geomini-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geomini";
  src: url("./Geomini-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Geomini";
  src: url("./Geomini-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #f6f6f4;
  --muted: rgba(246, 246, 244, 0.68);
  --line: rgba(246, 246, 244, 0.18);
  --signal: #ee1d0b;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Geomini", Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--white);
  background: var(--signal);
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100svh;
  background: var(--black);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--signal);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  animation: header-in 620ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.header-inner {
  width: min(1248px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.brand {
  width: 148px;
  height: 25px;
  display: block;
  justify-self: start;
}

.wordmark {
  position: relative;
  display: block;
  width: 148px;
  height: 25px;
  overflow: hidden;
}

.wordmark img {
  position: absolute;
  top: -47px;
  left: -11px;
  width: 176px;
  max-width: none;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  user-select: none;
  transition: opacity 180ms ease, transform 280ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.brand:hover .wordmark img,
.brand:focus-visible .wordmark img {
  opacity: 0.72;
  transform: translateX(4px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(24px, 2vw, 34px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #ffffff;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--white);
  transition: right 220ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.desktop-nav a span {
  font-size: 13px;
  transform: translateY(-2px);
}

.product-menu {
  position: relative;
}

.product-menu-trigger > span {
  transition: transform 180ms ease;
}

.product-menu:hover .product-menu-trigger > span,
.product-menu:focus-within .product-menu-trigger > span {
  transform: translateY(1px) rotate(180deg);
}

.product-menu-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 14px);
  left: 50%;
  width: 318px;
  padding: 8px;
  color: var(--white);
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid rgba(246, 246, 244, 0.2);
  border-top: 2px solid var(--signal);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.product-menu-panel::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.product-menu:hover .product-menu-panel,
.product-menu:focus-within .product-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-menu-panel > a,
.product-menu-disabled {
  min-height: 78px;
  padding: 14px 13px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(246, 246, 244, 0.13);
  border-radius: 5px;
}

.product-menu-panel > a::after {
  display: none;
}

.product-menu-panel > a:hover,
.product-menu-panel > a:focus-visible {
  color: var(--black);
  background: var(--white);
}

.product-menu-panel > a > span,
.product-menu-disabled > span {
  transform: none;
}

.product-menu-number {
  color: rgba(246, 246, 244, 0.38);
  font-size: 9px !important;
  letter-spacing: 0.08em;
}

.product-menu-panel > a:hover .product-menu-number,
.product-menu-panel > a:focus-visible .product-menu-number {
  color: rgba(0, 0, 0, 0.42);
}

.product-menu-name {
  display: grid;
  gap: 6px;
  font-size: 15px !important;
  line-height: 1;
}

.product-menu-name small {
  color: rgba(246, 246, 244, 0.44);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-menu-panel > a:hover small,
.product-menu-panel > a:focus-visible small {
  color: rgba(0, 0, 0, 0.46);
}

.product-menu-panel > a > span:last-child {
  font-size: 16px;
  transition: transform 180ms ease;
}

.product-menu-panel > a:hover > span:last-child,
.product-menu-panel > a:focus-visible > span:last-child {
  transform: translate(3px, -3px);
}

.product-menu-disabled {
  border-bottom: 0;
  opacity: 0.36;
  cursor: not-allowed;
}

.contact-button {
  width: 112px;
  height: 50px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--white);
  border-radius: 7px;
  color: var(--black);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: color 170ms ease, background 170ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  color: var(--white);
  background: transparent;
}

.mobile-nav {
  display: none;
}

.product-hero {
  width: min(1248px, calc(100% - 48px));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: clamp(96px, 12vh, 144px) 0 clamp(92px, 11vh, 132px);
  display: grid;
  place-items: center;
  scroll-margin-top: 24px;
}

.product-copy {
  width: min(1120px, 92vw);
  margin: 0 auto;
  text-align: center;
  animation: copy-reveal 720ms 90ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.product-copy h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.066em;
  text-wrap: balance;
}

.agent-highlight {
  display: inline-block;
  padding: 0.04em 0.14em 0.1em;
  border-radius: 2px;
  color: #050505;
  background: #ffffff;
  line-height: 0.9;
}

.primary-cta {
  width: max-content;
  min-width: 218px;
  height: 52px;
  margin: clamp(76px, 10vh, 104px) auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--signal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.primary-cta span,
.model-cta span,
.about-cta span {
  transition: transform 180ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.primary-cta:hover span,
.primary-cta:focus-visible span,
.model-cta:hover span,
.model-cta:focus-visible span,
.about-cta:hover span,
.about-cta:focus-visible span {
  transform: translate(3px, -3px);
}

.model-section {
  min-height: 72svh;
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(33, 96, 128, 0.12), transparent 32%),
    var(--black);
  scroll-margin-top: 24px;
}

.model-section-inner {
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vh, 120px) 0;
}

.model-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.model-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.model-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  margin-inline: auto;
  color: rgba(246, 246, 244, 0.84);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.model-cta {
  width: max-content;
  min-width: 178px;
  height: 50px;
  margin: 36px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 5px;
  background: var(--signal);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.model-cta:hover,
.model-cta:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.research-section {
  position: relative;
  overflow: hidden;
  color: #0a0a0a;
  background: #f1f1ec;
  scroll-margin-top: 0;
}

.research-section::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.research-section.section-active::before {
  transform: scaleX(1);
}

.research-inner {
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(100px, 12vh, 150px) 0 clamp(100px, 12vh, 150px);
}

.research-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
}

.research-meta {
  padding-top: 9px;
}

.research-meta p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.research-kicker {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-title-block h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(62px, 7.25vw, 112px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.073em;
  text-wrap: balance;
}

.research-intro {
  max-width: 720px;
  margin: 54px 0 0;
  color: rgba(10, 10, 10, 0.68);
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.26;
  letter-spacing: -0.035em;
}

.research-thesis {
  margin-top: clamp(100px, 13vh, 154px);
  padding: clamp(36px, 5vw, 68px) 0;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
  border-top: 1px solid rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(10, 10, 10, 0.82);
}

.research-thesis > p {
  margin: 9px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.research-thesis blockquote {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.research-thesis strong {
  font-weight: 600;
}

.research-areas-heading {
  margin-top: clamp(84px, 10vh, 120px);
  padding-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(10, 10, 10, 0.82);
}

.research-areas-heading h3,
.research-areas-heading p {
  margin: 0;
}

.research-areas-heading h3 {
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.research-areas-heading p {
  color: rgba(10, 10, 10, 0.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.research-card {
  min-height: 250px;
  padding: 28px clamp(24px, 3vw, 44px) 32px;
  display: grid;
  grid-template-rows: auto 1fr;
  border-bottom: 1px solid rgba(10, 10, 10, 0.28);
}

.research-card:first-child {
  padding-left: 0;
}

.research-card:not(:last-child) {
  border-right: 1px solid rgba(10, 10, 10, 0.28);
}

.research-card:last-child {
  padding-right: 0;
}

.research-number {
  margin: 0 0 54px;
  color: rgba(10, 10, 10, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.research-card h4 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.research-direction {
  margin-top: clamp(110px, 15vh, 180px);
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(70px, 9vw, 140px);
  border-top: 1px solid rgba(10, 10, 10, 0.82);
}

.research-direction > div:first-child h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.research-planes article {
  padding: 0 0 36px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.28);
}

.research-planes article + article {
  padding-top: 36px;
}

.research-planes span {
  color: rgba(10, 10, 10, 0.46);
  font-size: 10px;
  font-weight: 600;
}

.research-planes h4 {
  margin: 18px 0 14px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.research-planes p {
  margin: 0;
  color: rgba(10, 10, 10, 0.64);
  font-size: 15px;
  line-height: 1.48;
}

.research-closing {
  margin-top: clamp(110px, 14vh, 170px);
  padding: clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
  color: var(--white);
  background: #0a0a0a;
}

.research-closing p {
  margin: 0;
}

.research-closing p:first-child {
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.research-closing p:last-child {
  font-size: clamp(21px, 2.2vw, 33px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.news-section,
.about-section {
  color: var(--white);
  background: var(--black);
  scroll-margin-top: 0;
}

.news-inner,
.about-inner {
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
}

.news-inner {
  padding: clamp(105px, 13vh, 160px) 0 clamp(120px, 15vh, 190px);
}

.dark-section-header {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
}

.dark-section-header > p,
.about-title > p {
  margin: 8px 0 0;
  color: rgba(246, 246, 244, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dark-section-header h2 {
  margin: 0;
  font-size: clamp(64px, 7.8vw, 118px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.news-list {
  margin-top: clamp(92px, 12vh, 144px);
  border-top: 1px solid var(--line);
}

.news-item {
  min-height: 210px;
  display: grid;
  grid-template-columns: 0.23fr 1fr auto;
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.news-item:hover,
.news-item:focus-visible {
  padding: 0 22px;
  color: var(--black);
  background: var(--white);
}

.news-order {
  color: rgba(246, 246, 244, 0.42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.news-item:hover .news-order,
.news-item:focus-visible .news-order,
.news-item:hover .news-copy p,
.news-item:focus-visible .news-copy p {
  color: rgba(0, 0, 0, 0.48);
}

.news-copy p {
  margin: 0 0 14px;
  color: rgba(246, 246, 244, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-copy h3 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(27px, 3vw, 45px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.news-arrow {
  font-size: 28px;
  transition: transform 180ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.news-item:hover .news-arrow,
.news-item:focus-visible .news-arrow {
  transform: translate(4px, -4px);
}

.about-section {
  border-top: 1px solid var(--line);
}

.about-inner {
  min-height: 88svh;
  padding: clamp(110px, 14vh, 170px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: clamp(80px, 10vw, 160px);
  align-items: start;
}

.about-title h2 {
  max-width: 710px;
  margin: 40px 0 0;
  font-size: clamp(60px, 7vw, 106px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.about-copy > p {
  margin: 42px 0 0;
  color: rgba(246, 246, 244, 0.7);
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.about-principles {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.about-principles p {
  margin: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.about-principles span {
  color: rgba(246, 246, 244, 0.38);
  font-size: 9px;
}

.about-cta {
  width: max-content;
  min-width: 214px;
  height: 52px;
  margin-top: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 5px;
  color: var(--white);
  background: var(--signal);
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.about-cta:hover,
.about-cta:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.site-footer {
  min-height: 72px;
  padding: 0 max(24px, calc((100% - 1248px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(246, 246, 244, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.spm-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.spm-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 164px);
  padding: clamp(76px, 10vh, 120px) 24px clamp(88px, 12vh, 140px);
  display: grid;
  place-items: center;
}

.spm-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(246, 246, 244, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(26, 84, 112, 0.16) 0, rgba(0, 0, 0, 0) 62%);
  animation: spm-orbit-in 900ms 120ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.spm-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 246, 244, 0.14),
    transparent
  );
  transform: translate(-50%, -50%);
}

.spm-copy {
  width: min(1040px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  animation: copy-reveal 720ms 80ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.spm-kicker {
  margin: 0 0 28px;
  color: rgba(246, 246, 244, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spm-title {
  max-width: none;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 112px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.spm-parameter {
  margin-top: clamp(48px, 7vh, 76px);
  display: grid;
  justify-items: center;
}

.spm-parameter strong {
  color: var(--white);
  font-size: clamp(112px, 19vw, 280px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.09em;
}

.spm-parameter span {
  margin-top: clamp(28px, 4vh, 42px);
  color: var(--signal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spm-summary {
  margin: clamp(34px, 5vh, 52px) 0 0;
  color: rgba(246, 246, 244, 0.72);
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.025em;
}

.spm-cta {
  width: max-content;
  min-width: 164px;
  height: 50px;
  margin-top: 34px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 5px;
  color: var(--white);
  background: var(--signal);
  font-size: 12px;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.spm-cta span {
  transition: transform 180ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.spm-cta:hover,
.spm-cta:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.spm-cta:hover span,
.spm-cta:focus-visible span {
  transform: translate(3px, -3px);
}

.spm-footer {
  min-height: 72px;
  padding: 0 max(24px, calc((100% - 1248px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(246, 246, 244, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spm-footer p {
  margin: 0;
}

.spm-overview,
.spm-architecture {
  position: relative;
  color: #0a0a0a;
  background: #f1f1ec;
}

.spm-overview::before,
.spm-architecture::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.spm-overview.section-active::before,
.spm-architecture.section-active::before {
  transform: scaleX(1);
}

.spm-section-inner,
.spm-principles-inner {
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
}

.spm-section-inner {
  padding: clamp(105px, 13vh, 160px) 0 clamp(110px, 14vh, 180px);
}

.spm-section-header,
.spm-architecture-header,
.spm-dark-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
}

.spm-section-header > p,
.spm-architecture-header > p,
.spm-dark-header > p {
  margin: 9px 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spm-light-kicker {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spm-section-header h2,
.spm-architecture-header h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(56px, 6.4vw, 98px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.spm-section-intro {
  max-width: 660px;
  margin: 48px 0 0;
  color: rgba(10, 10, 10, 0.64);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.spm-spec-grid {
  margin-top: clamp(92px, 12vh, 140px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid rgba(10, 10, 10, 0.78);
}

.spm-spec-grid article {
  min-height: 210px;
  padding: 28px clamp(20px, 2.5vw, 38px);
  display: grid;
  align-content: space-between;
}

.spm-spec-grid article:first-child {
  padding-left: 0;
}

.spm-spec-grid article:last-child {
  padding-right: 0;
}

.spm-spec-grid article + article {
  border-left: 1px solid rgba(10, 10, 10, 0.24);
}

.spm-spec-grid p {
  margin: 0;
  color: rgba(10, 10, 10, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.spm-spec-grid h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 37px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.spm-principles {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(33, 96, 128, 0.13), transparent 28%),
    var(--black);
}

.spm-principles-inner {
  padding: clamp(110px, 14vh, 180px) 0;
}

.spm-dark-header > p {
  color: rgba(246, 246, 244, 0.46);
}

.spm-dark-header h2 {
  margin: 0;
  font-size: clamp(64px, 7.8vw, 118px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.spm-principle-grid {
  margin-top: clamp(94px, 12vh, 150px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.spm-principle-grid article {
  min-height: 270px;
  padding: 28px clamp(20px, 2.5vw, 38px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-bottom: 1px solid var(--line);
}

.spm-principle-grid article:first-child {
  padding-left: 0;
}

.spm-principle-grid article:last-child {
  padding-right: 0;
}

.spm-principle-grid article + article {
  border-left: 1px solid var(--line);
}

.spm-principle-grid span {
  color: rgba(246, 246, 244, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.spm-principle-grid h3 {
  align-self: center;
  margin: 0;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.spm-principle-grid p {
  max-width: 220px;
  margin: 0;
  color: rgba(246, 246, 244, 0.58);
  font-size: 13px;
  line-height: 1.38;
}

.spm-architecture-header {
  padding-bottom: clamp(78px, 10vh, 120px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.78);
}

.spm-architecture-list > div {
  min-height: 150px;
  display: grid;
  grid-template-columns: 0.34fr 1fr auto;
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  border-bottom: 1px solid rgba(10, 10, 10, 0.26);
}

.spm-architecture-list span {
  color: rgba(10, 10, 10, 0.42);
  font-size: 10px;
  font-weight: 600;
}

.spm-architecture-list p {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.spm-architecture-list > div::after {
  content: "M01";
  color: rgba(10, 10, 10, 0.34);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.spm-closing {
  min-height: 82svh;
  padding: clamp(100px, 13vh, 160px) 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.spm-closing > div {
  width: min(960px, 100%);
  display: grid;
  justify-items: center;
}

.spm-closing > div > p {
  margin: 0 0 32px;
  color: rgba(246, 246, 244, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.spm-closing h2 {
  margin: 0;
  font-size: clamp(52px, 6.7vw, 102px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.agent-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.agent-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 92px);
  padding: clamp(98px, 13vh, 156px) 24px clamp(104px, 14vh, 170px);
  display: grid;
  place-items: center;
  text-align: center;
}

.agent-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(29, 93, 124, 0.17), transparent 32%),
    linear-gradient(90deg, transparent 49.95%, rgba(246, 246, 244, 0.08) 50%, transparent 50.05%);
}

.agent-hero-inner {
  width: min(1080px, 100%);
  display: grid;
  justify-items: center;
  animation: copy-reveal 720ms 80ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.agent-label,
.agent-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-label {
  color: rgba(246, 246, 244, 0.54);
}

.agent-hero h1 {
  max-width: 1050px;
  margin: 30px 0 0;
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

.agent-hero-intro {
  max-width: 700px;
  margin: 46px 0 0;
  color: rgba(246, 246, 244, 0.68);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.agent-manifesto {
  width: min(700px, 100%);
  margin-top: clamp(64px, 8vh, 88px);
  padding: 27px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.agent-page-cta {
  width: max-content;
  min-width: 206px;
  height: 52px;
  margin-top: 38px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 5px;
  color: var(--white);
  background: var(--signal);
  font-size: 12px;
  font-weight: 600;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.agent-page-cta span {
  transition: transform 180ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.agent-page-cta:hover,
.agent-page-cta:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.agent-page-cta:hover span,
.agent-page-cta:focus-visible span {
  transform: translate(3px, -3px);
}

.agent-light {
  position: relative;
  color: #0a0a0a;
  background: #f1f1ec;
}

.agent-light::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.agent-light.section-active::before {
  transform: scaleX(1);
}

.agent-container {
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(108px, 14vh, 176px) 0;
}

.agent-section-header,
.agent-dark-header,
.agent-two-header,
.agent-roadmap-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
}

.agent-section-header > p,
.agent-dark-header > p,
.agent-two-header > p,
.agent-roadmap-header > p {
  margin: 9px 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agent-kicker {
  margin-bottom: 24px;
}

.agent-section-header h2,
.agent-roadmap-header h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(58px, 6.7vw, 102px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.agent-section-intro {
  max-width: 680px;
  margin: 48px 0 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.agent-principle-grid {
  margin-top: clamp(94px, 12vh, 146px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.78);
}

.agent-principle-grid article {
  min-height: 286px;
  padding: 28px clamp(20px, 2.5vw, 38px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-bottom: 1px solid rgba(10, 10, 10, 0.78);
}

.agent-principle-grid article:first-child {
  padding-left: 0;
}

.agent-principle-grid article:last-child {
  padding-right: 0;
}

.agent-principle-grid article + article {
  border-left: 1px solid rgba(10, 10, 10, 0.24);
}

.agent-principle-grid span,
.agent-stack-grid span,
.agent-roadmap-list span {
  color: rgba(10, 10, 10, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.agent-principle-grid h3 {
  align-self: center;
  margin: 0;
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.agent-principle-grid article > p {
  max-width: 210px;
  margin: 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.agent-architecture,
.agent-mosaic-two,
.agent-closing {
  color: var(--white);
  background: var(--black);
}

.agent-architecture {
  background:
    radial-gradient(circle at 18% 28%, rgba(33, 96, 128, 0.13), transparent 28%),
    var(--black);
}

.agent-dark-header > p,
.agent-two-header > p {
  color: rgba(246, 246, 244, 0.44);
}

.agent-dark-header h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(58px, 6.8vw, 104px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.agent-flow {
  margin-top: clamp(96px, 12vh, 150px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agent-flow > div {
  min-height: 190px;
  padding: 25px;
  display: grid;
  align-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.agent-flow > div:hover {
  color: var(--black);
  background: var(--white);
}

.agent-flow > div > span {
  color: rgba(246, 246, 244, 0.4);
  font-size: 9px;
  font-weight: 600;
}

.agent-flow > div:hover > span {
  color: rgba(0, 0, 0, 0.42);
}

.agent-flow p {
  margin: 0;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.agent-stack-grid {
  margin-top: clamp(96px, 12vh, 146px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.78);
}

.agent-stack-grid article {
  min-height: 270px;
  padding: 27px clamp(20px, 2.5vw, 38px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-bottom: 1px solid rgba(10, 10, 10, 0.78);
}

.agent-stack-grid article:nth-child(1),
.agent-stack-grid article:nth-child(2),
.agent-stack-grid article:nth-child(3) {
  grid-column: span 2;
}

.agent-stack-grid article:nth-child(4),
.agent-stack-grid article:nth-child(5) {
  grid-column: span 3;
}

.agent-stack-grid article + article {
  border-left: 1px solid rgba(10, 10, 10, 0.24);
}

.agent-stack-grid article:nth-child(4) {
  border-left: 0;
}

.agent-stack-grid article:nth-child(n + 4) {
  border-top: 1px solid rgba(10, 10, 10, 0.24);
}

.agent-stack-grid h3 {
  align-self: center;
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.agent-stack-grid article > p {
  max-width: 290px;
  margin: 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: 13px;
  line-height: 1.42;
}

.agent-mosaic-two {
  background:
    radial-gradient(circle at 76% 40%, rgba(33, 96, 128, 0.16), transparent 30%),
    var(--black);
}

.agent-two-header .agent-label {
  margin-bottom: 24px;
}

.agent-two-header h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(62px, 7.6vw, 116px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.076em;
  text-wrap: balance;
}

.agent-two-header > div > p:last-child {
  max-width: 650px;
  margin: 48px 0 0;
  color: rgba(246, 246, 244, 0.62);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.agent-two-stats {
  margin-top: clamp(94px, 12vh, 150px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agent-two-stats article {
  min-height: 250px;
  padding: 28px clamp(20px, 3vw, 44px);
  display: grid;
  align-content: space-between;
}

.agent-two-stats article:first-child {
  padding-left: 0;
}

.agent-two-stats article:last-child {
  padding-right: 0;
}

.agent-two-stats article + article {
  border-left: 1px solid var(--line);
}

.agent-two-stats strong {
  font-size: clamp(70px, 8vw, 124px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.agent-two-stats span {
  color: rgba(246, 246, 244, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agent-roadmap-header {
  padding-bottom: clamp(76px, 10vh, 118px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.78);
}

.agent-roadmap-list > div {
  min-height: 145px;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(50px, 8vw, 124px);
  align-items: center;
  border-bottom: 1px solid rgba(10, 10, 10, 0.26);
}

.agent-roadmap-list p {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.agent-closing {
  min-height: 82svh;
  padding: clamp(100px, 13vh, 160px) 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.agent-closing > div {
  width: min(940px, 100%);
  display: grid;
  justify-items: center;
}

.agent-closing > div > p {
  margin: 0 0 30px;
  color: rgba(246, 246, 244, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.agent-closing h2 {
  margin: 0;
  font-size: clamp(62px, 8vw, 122px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

.agent-footer {
  min-height: 72px;
  padding: 0 max(24px, calc((100% - 1248px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(246, 246, 244, 0.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-footer p {
  margin: 0;
}

.agent-page {
  position: relative;
  overflow: clip;
  background: var(--black);
}

.agent-type-char {
  display: inline-block;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 0.34em, 0) scale(0.96);
  transform-origin: 50% 100%;
  will-change: opacity, filter, transform;
}

.agent-type-run {
  display: inline;
}

.agent-type-word {
  display: inline-block;
  white-space: nowrap;
}

.agent-type-ready.is-typing:not(a)::after {
  content: "";
  width: 0.075em;
  height: 0.82em;
  margin-left: 0.08em;
  display: inline-block;
  vertical-align: -0.08em;
  background: currentColor;
  animation: agent-type-cursor 620ms steps(1, end) infinite;
}

.agent-type-ready.is-typing .agent-type-char {
  animation:
    agent-type-in 680ms calc(var(--type-start, 0ms) + var(--char-delay))
    cubic-bezier(0.16, 1, 0.3, 1) both;
}

.agent-type-ready.is-typed .agent-type-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.agent-page [data-count] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.agent-stage {
  --agent-focus: 1;
  --agent-progress: 0;
  position: relative;
  min-height: 145svh;
}

.agent-stage-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: clamp(86px, 10vh, 120px) 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1400px;
}

.agent-stage:not(.agent-hero) .agent-stage-sticky::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(84vw, 1040px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: calc(var(--agent-focus) * 0.055);
  transform:
    translate3d(
      -50%,
      calc(-50% + (0.5 - var(--agent-progress)) * 120px),
      -120px
    )
    scale(calc(0.82 + var(--agent-focus) * 0.22));
  pointer-events: none;
  will-change: opacity, transform;
}

.agent-stage-card {
  position: relative;
  z-index: 1;
  width: min(1248px, 100%);
  transition:
    opacity 80ms linear,
    transform 80ms linear,
    filter 80ms linear;
  will-change: opacity, transform, filter;
}

.motion-ready [data-agent-stage] .agent-stage-card {
  opacity: calc(0.14 + var(--agent-focus) * 0.86);
  filter: blur(calc((1 - var(--agent-focus)) * 12px));
  transform:
    translate3d(0, calc((1 - var(--agent-focus)) * 68px), 0)
    scale(calc(0.92 + var(--agent-focus) * 0.08))
    rotateX(calc((1 - var(--agent-focus)) * 4deg));
}

@keyframes agent-type-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 0.34em, 0) scale(0.96);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes agent-type-cursor {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0;
  }
}

.agent-dark {
  color: var(--white);
  background: var(--black);
}

.agent-light {
  position: relative;
  color: #0a0a0a;
  background: #f1f1ec;
}

.agent-light::before {
  z-index: 3;
  transform: none;
}

.agent-hero {
  min-height: 155svh;
  padding: 0;
  display: block;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 48%, rgba(33, 96, 128, 0.14), transparent 34%),
    var(--black);
}

.agent-hero::before {
  display: none;
}

.agent-hero .agent-stage-sticky {
  min-height: calc(100svh - 92px);
}

.agent-hero-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.agent-orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(74vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(246, 246, 244, 0.09);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(53, 130, 165, 0.12),
      rgba(0, 0, 0, 0) 64%
    );
  transform:
    translate(-50%, calc(-50% - var(--agent-progress) * 90px))
    scale(calc(1 + var(--agent-progress) * 0.12));
  will-change: transform;
}

.agent-kicker {
  margin: 0 0 30px;
  color: rgba(246, 246, 244, 0.56);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-hero h1 {
  width: min(1120px, 100%);
  max-width: none;
  margin: 0;
  font-size: clamp(64px, 7.2vw, 112px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.068em;
  text-wrap: initial;
}

.agent-hero-title-line {
  display: block;
  white-space: nowrap;
}

.agent-hero h1 .agent-word-highlight {
  display: inline-block;
  padding: 0.03em 0.12em 0.1em;
  color: #050505;
  background: #ffffff;
  border-radius: 2px;
  line-height: 0.88;
}

.agent-word-highlight .agent-type-char {
  color: inherit;
}

.agent-lead {
  max-width: 640px;
  margin: clamp(38px, 5vh, 56px) 0 0;
  color: rgba(246, 246, 244, 0.68);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.agent-scroll-cue {
  margin-top: clamp(46px, 7vh, 72px);
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.agent-scroll-cue > .agent-scroll-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 246, 244, 0.32);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.agent-scroll-cue:hover > .agent-scroll-icon,
.agent-scroll-cue:focus-visible > .agent-scroll-icon {
  color: var(--black);
  background: var(--white);
  transform: translateY(3px);
}

.agent-content-frame {
  padding: clamp(44px, 5vw, 72px) 0;
}

.agent-section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(56px, 5vw, 80px);
  align-items: start;
}

.agent-section-heading > p {
  margin: 12px 0 0;
  color: currentColor;
  opacity: 0.68;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.agent-section-heading h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.073em;
  text-wrap: balance;
}

.agent-section-heading .agent-key-heading {
  width: 100%;
  max-width: none;
  font-size: clamp(64px, 5.4vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.062em;
  text-wrap: initial;
}

.agent-heading-line {
  display: block;
  white-space: nowrap;
}

.agent-efficiency-grid {
  margin-top: clamp(86px, 11vh, 134px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.76);
  border-bottom: 1px solid rgba(10, 10, 10, 0.76);
}

.agent-efficiency-grid article {
  min-height: 260px;
  padding: 28px clamp(24px, 3.5vw, 54px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.agent-efficiency-grid article:first-child {
  padding-left: 0;
}

.agent-efficiency-grid article:last-child {
  padding-right: 0;
}

.agent-efficiency-grid article + article {
  border-left: 1px solid rgba(10, 10, 10, 0.24);
}

.agent-efficiency-grid article > span,
.agent-stack-list > article > span,
.agent-use-grid article > span {
  color: rgba(10, 10, 10, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.agent-efficiency-grid h3 {
  align-self: center;
  margin: 0;
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.agent-efficiency-grid p {
  max-width: 300px;
  margin: 0;
  color: rgba(10, 10, 10, 0.7);
  font-size: 18px;
  line-height: 1.42;
}

.agent-flow {
  margin-top: clamp(84px, 11vh, 132px);
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agent-flow > div {
  min-height: 170px;
  padding: 24px 18px;
  display: grid;
  align-content: space-between;
  border: 0;
}

.agent-flow > div + div {
  border-left: 1px solid var(--line);
}

.agent-flow > div > span {
  color: rgba(246, 246, 244, 0.52);
  font-size: 12px;
  font-weight: 600;
}

.agent-flow p {
  margin: 0;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.agent-stack-heading {
  padding-bottom: clamp(68px, 9vh, 104px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.76);
}

.agent-stack-list article {
  min-height: 126px;
  display: grid;
  grid-template-columns: 0.18fr minmax(240px, 0.65fr) 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  border-bottom: 1px solid rgba(10, 10, 10, 0.24);
}

.agent-stack-list h3,
.agent-stack-list p {
  margin: 0;
}

.agent-stack-list h3 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.052em;
}

.agent-stack-list p {
  color: rgba(10, 10, 10, 0.58);
  font-size: 15px;
}

.agent-two {
  background:
    radial-gradient(circle at 70% 42%, rgba(33, 96, 128, 0.18), transparent 34%),
    var(--black);
}

.agent-two-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.agent-two-card h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.073em;
  text-wrap: balance;
}

.agent-two-metrics {
  width: min(920px, 100%);
  margin-top: clamp(64px, 9vh, 104px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agent-two-metrics > div {
  min-height: 220px;
  padding: 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
}

.agent-two-metrics > div + div {
  border-left: 1px solid var(--line);
}

.agent-two-metrics strong {
  font-size: clamp(78px, 10vw, 154px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.agent-two-metrics > div > span {
  color: rgba(246, 246, 244, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agent-two-note {
  margin: 42px 0 0;
  color: rgba(246, 246, 244, 0.62);
  font-size: 15px;
}

.agent-use-grid {
  margin-top: clamp(84px, 11vh, 132px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.76);
  border-bottom: 1px solid rgba(10, 10, 10, 0.76);
}

.agent-use-grid article {
  min-height: 220px;
  padding: 28px clamp(20px, 2.8vw, 42px);
  display: grid;
  align-content: space-between;
}

.agent-use-grid article:first-child {
  padding-left: 0;
}

.agent-use-grid article:last-child {
  padding-right: 0;
}

.agent-use-grid article + article {
  border-left: 1px solid rgba(10, 10, 10, 0.24);
}

.agent-use-grid h3 {
  margin: 0;
  font-size: clamp(34px, 3.1vw, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.agent-work,
.agent-work .agent-stage-sticky {
  color: var(--white);
  background: var(--black);
}

.agent-work .agent-use-grid {
  border-color: var(--line);
}

.agent-work .agent-use-grid article + article {
  border-left-color: var(--line);
}

.agent-work .agent-use-grid article > span {
  color: rgba(246, 246, 244, 0.42);
}

.agent-work .agent-use-grid h3 {
  color: var(--white);
}

.agent-final {
  min-height: 130svh;
}

.agent-final-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.agent-final-card > p {
  margin: 0 0 30px;
  color: rgba(246, 246, 244, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-final-card h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 114px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.agent-final-card a {
  min-width: 210px;
  min-height: 56px;
  margin-top: clamp(52px, 7vh, 76px);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 5px;
  color: var(--white);
  background: var(--signal);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.agent-final-card a:hover,
.agent-final-card a:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.agent-footer {
  color: rgba(246, 246, 244, 0.46);
  background: var(--black);
}

@keyframes spm-orbit-in {
  from {
    opacity: 0;
    transform: scale(0.84);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes image-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes copy-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .contact-button {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
    justify-self: end;
  }

  .mobile-nav summary {
    width: 76px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(246, 246, 244, 0.72);
    border-radius: 6px;
    cursor: pointer;
    list-style: none;
    font-size: 11px;
    font-weight: 600;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav[open] summary {
    color: var(--black);
    background: var(--white);
  }

  .mobile-nav-panel {
    position: fixed;
    top: 66px;
    right: 20px;
    width: min(340px, calc(100vw - 40px));
    max-height: calc(100svh - 86px);
    padding: 12px 20px;
    display: grid;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--white);
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
    scrollbar-width: thin;
  }

  .mobile-nav-panel a {
    padding: 17px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    border-bottom: 1px solid var(--line);
    color: #ffffff;
    font-size: 15px;
  }

  .mobile-nav-panel a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-panel span {
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-product-label,
  .mobile-product-disabled {
    margin: 0;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .mobile-product-label {
    color: rgba(246, 246, 244, 0.48);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-nav-panel .mobile-product-link {
    padding-left: 14px;
    grid-template-columns: 48px 1fr;
  }

  .mobile-product-disabled {
    padding-left: 14px;
    grid-template-columns: 48px 1fr;
    color: rgba(246, 246, 244, 0.38);
    cursor: not-allowed;
  }

  .mobile-product-disabled small {
    margin-left: 8px;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .product-copy {
    width: min(1040px, 88vw);
  }

  .model-copy {
    width: min(760px, 100%);
  }

  .model-cta {
    margin-right: auto;
    margin-left: auto;
  }

  .research-header,
  .research-thesis,
  .dark-section-header {
    grid-template-columns: 180px 1fr;
    gap: 54px;
  }

  .research-direction,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .research-planes,
  .about-copy {
    max-width: 720px;
  }

  .about-copy > p {
    margin-top: 0;
  }

  .spm-section-header,
  .spm-architecture-header,
  .spm-dark-header,
  .agent-section-header,
  .agent-dark-header,
  .agent-two-header,
  .agent-roadmap-header {
    grid-template-columns: 180px 1fr;
    gap: 54px;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .product-hero {
    width: calc(100% - 40px);
  }

  .header-inner {
    height: 76px;
  }

  .brand,
  .wordmark {
    width: 142px;
    height: 24px;
  }

  .wordmark img {
    top: -45px;
    left: -10px;
    width: 169px;
  }

  .product-hero {
    min-height: calc(100svh - 76px);
    padding: 58px 0 64px;
  }

  .product-copy {
    width: 100%;
  }

  .product-copy h1 {
    font-size: clamp(43px, 12vw, 60px);
    line-height: 1.01;
  }

  .primary-cta {
    min-width: 208px;
    margin-top: 56px;
  }

  .model-section-inner {
    width: calc(100% - 40px);
    padding: 70px 0 78px;
  }

  .model-copy h2 {
    font-size: clamp(36px, 10.5vw, 50px);
  }

  .model-copy p {
    margin-top: 22px;
    font-size: 18px;
  }

  .model-cta {
    margin-top: 32px;
  }

  .research-inner,
  .news-inner,
  .about-inner {
    width: calc(100% - 40px);
  }

  .research-inner {
    padding: 78px 0 90px;
  }

  .research-header,
  .research-thesis,
  .dark-section-header {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .research-meta p:last-child {
    margin-top: 20px;
  }

  .research-title-block h2 {
    max-width: 100%;
    font-size: clamp(47px, 13.2vw, 62px);
    line-height: 0.91;
    overflow-wrap: break-word;
  }

  .research-intro {
    margin-top: 38px;
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .research-thesis {
    margin-top: 76px;
  }

  .research-areas-heading {
    margin-top: 84px;
  }

  .research-areas-heading p {
    display: none;
  }

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

  .research-card,
  .research-card:first-child,
  .research-card:not(:last-child),
  .research-card:last-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
  }

  .research-number {
    margin-bottom: 38px;
  }

  .research-direction {
    margin-top: 90px;
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .research-closing {
    margin-top: 90px;
    padding: 38px 30px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .news-inner {
    padding: 86px 0 100px;
  }

  .dark-section-header h2 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .news-list {
    margin-top: 74px;
  }

  .news-item {
    min-height: 190px;
    grid-template-columns: 34px 1fr auto;
    gap: 18px;
  }

  .news-item:hover,
  .news-item:focus-visible {
    padding: 0 10px;
  }

  .news-copy h3 {
    font-size: 27px;
  }

  .news-arrow {
    font-size: 20px;
  }

  .about-inner {
    min-height: 0;
    padding: 90px 0 104px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-title h2 {
    font-size: clamp(56px, 17vw, 80px);
  }

  .site-footer {
    min-height: 64px;
    padding: 0 20px;
  }

  .spm-hero {
    min-height: calc(100svh - 140px);
    padding: 64px 20px 92px;
  }

  .spm-kicker {
    margin-bottom: 22px;
    letter-spacing: 0.1em;
  }

  .spm-title {
    font-size: clamp(48px, 15vw, 68px);
  }

  .spm-parameter {
    margin-top: 52px;
  }

  .spm-parameter strong {
    font-size: clamp(108px, 37vw, 164px);
  }

  .spm-summary {
    max-width: 280px;
    line-height: 1.25;
  }

  .spm-footer {
    min-height: 64px;
    padding: 0 20px;
  }

  .spm-section-inner,
  .spm-principles-inner {
    width: calc(100% - 40px);
  }

  .spm-section-inner,
  .spm-principles-inner {
    padding: 86px 0 100px;
  }

  .spm-section-header,
  .spm-architecture-header,
  .spm-dark-header {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .spm-section-header h2,
  .spm-architecture-header h2,
  .spm-dark-header h2 {
    font-size: clamp(48px, 14.5vw, 68px);
  }

  .spm-section-intro {
    margin-top: 34px;
    font-size: 18px;
  }

  .spm-spec-grid,
  .spm-principle-grid {
    margin-top: 72px;
    grid-template-columns: 1fr 1fr;
  }

  .spm-spec-grid article,
  .spm-principle-grid article {
    min-height: 190px;
    padding: 22px 20px;
  }

  .spm-spec-grid article:first-child,
  .spm-principle-grid article:first-child {
    padding-left: 0;
  }

  .spm-spec-grid article:nth-child(3),
  .spm-principle-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .spm-spec-grid article:nth-child(n + 3),
  .spm-principle-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(10, 10, 10, 0.24);
  }

  .spm-principle-grid article:nth-child(n + 3) {
    border-top-color: var(--line);
  }

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

  .spm-principle-grid p {
    font-size: 12px;
  }

  .spm-architecture-header {
    padding-bottom: 66px;
  }

  .spm-architecture-list > div {
    min-height: 118px;
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }

  .spm-architecture-list > div::after {
    display: none;
  }

  .spm-architecture-list p {
    font-size: clamp(27px, 8vw, 38px);
  }

  .spm-closing {
    min-height: 72svh;
    padding: 92px 20px;
  }

  .spm-closing h2 {
    font-size: clamp(47px, 13.5vw, 64px);
  }

  .agent-hero {
    min-height: calc(100svh - 76px);
    padding: 78px 20px 100px;
  }

  .agent-hero h1 {
    font-size: clamp(56px, 17.5vw, 82px);
  }

  .agent-hero-intro {
    margin-top: 34px;
    font-size: 18px;
  }

  .agent-manifesto {
    margin-top: 58px;
    padding: 24px 12px;
    font-size: 25px;
  }

  .agent-container {
    width: calc(100% - 40px);
    padding: 88px 0 104px;
  }

  .agent-section-header,
  .agent-dark-header,
  .agent-two-header,
  .agent-roadmap-header {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .agent-section-header h2,
  .agent-dark-header h2,
  .agent-two-header h2,
  .agent-roadmap-header h2 {
    font-size: clamp(48px, 14.5vw, 68px);
  }

  .agent-section-intro,
  .agent-two-header > div > p:last-child {
    margin-top: 34px;
    font-size: 18px;
  }

  .agent-principle-grid,
  .agent-flow {
    margin-top: 72px;
    grid-template-columns: 1fr 1fr;
  }

  .agent-principle-grid article {
    min-height: 210px;
    padding: 22px 18px;
  }

  .agent-principle-grid article:first-child,
  .agent-principle-grid article:nth-child(3) {
    padding-left: 0;
  }

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

  .agent-principle-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(10, 10, 10, 0.24);
  }

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

  .agent-flow > div {
    min-height: 145px;
    padding: 20px;
  }

  .agent-flow p {
    font-size: 23px;
  }

  .agent-stack-grid {
    margin-top: 72px;
    grid-template-columns: 1fr;
  }

  .agent-stack-grid article,
  .agent-stack-grid article:nth-child(1),
  .agent-stack-grid article:nth-child(2),
  .agent-stack-grid article:nth-child(3),
  .agent-stack-grid article:nth-child(4),
  .agent-stack-grid article:nth-child(5) {
    min-height: 220px;
    padding: 24px 0;
    grid-column: auto;
    border-left: 0;
  }

  .agent-stack-grid article + article {
    border-top: 1px solid rgba(10, 10, 10, 0.24);
  }

  .agent-two-stats {
    margin-top: 72px;
    grid-template-columns: 1fr;
  }

  .agent-two-stats article,
  .agent-two-stats article:first-child,
  .agent-two-stats article:last-child {
    min-height: 190px;
    padding: 28px 0;
  }

  .agent-two-stats article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .agent-two-stats strong {
    font-size: 82px;
  }

  .agent-roadmap-header {
    padding-bottom: 66px;
  }

  .agent-roadmap-list > div {
    min-height: 118px;
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }

  .agent-roadmap-list p {
    font-size: clamp(27px, 8vw, 38px);
  }

  .agent-closing {
    min-height: 72svh;
    padding: 92px 20px;
  }

  .agent-closing h2 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .agent-footer {
    min-height: 64px;
    padding: 0 20px;
  }
}

@media (max-width: 380px) {
  .header-inner,
  .product-hero,
  .research-inner,
  .news-inner,
  .about-inner {
    width: calc(100% - 32px);
  }

  .brand,
  .wordmark {
    width: 136px;
  }

  .wordmark img {
    left: -10px;
    width: 162px;
  }

  .mobile-nav-panel {
    right: 16px;
    width: calc(100vw - 32px);
  }

  .product-hero {
    padding-top: 50px;
  }

  .product-copy h1 {
    font-size: 39px;
  }

  .research-title-block h2 {
    font-size: clamp(45px, 14.6vw, 52px);
  }

  .news-item {
    grid-template-columns: 28px 1fr 16px;
    gap: 12px;
  }

  .news-copy h3 {
    font-size: 25px;
  }

  .about-title h2 {
    font-size: 52px;
  }

  .spm-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .spm-section-inner,
  .spm-principles-inner {
    width: calc(100% - 32px);
  }

  .spm-spec-grid article,
  .spm-principle-grid article {
    padding-right: 14px;
    padding-left: 14px;
  }

  .spm-spec-grid article:first-child,
  .spm-spec-grid article:nth-child(3),
  .spm-principle-grid article:first-child,
  .spm-principle-grid article:nth-child(3) {
    padding-left: 0;
  }

  .agent-container {
    width: calc(100% - 32px);
  }

  .agent-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agent-hero h1 {
    font-size: 52px;
  }

  .agent-principle-grid article {
    padding-right: 13px;
    padding-left: 13px;
  }

  .agent-principle-grid article:first-child,
  .agent-principle-grid article:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 1040px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 760ms cubic-bezier(0.22, 0.72, 0.2, 1);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-44px, 0, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(44px, 0, 0);
}

.motion-ready [data-reveal="scale"] {
  transform: scale(0.965);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .research-card:nth-child(2),
.motion-ready .news-item:nth-child(2) {
  transition-delay: 70ms;
}

.motion-ready .research-card:nth-child(3),
.motion-ready .news-item:nth-child(3) {
  transition-delay: 140ms;
}

.motion-ready .research-card:nth-child(4) {
  transition-delay: 210ms;
}

.motion-ready .research-card:nth-child(5) {
  transition-delay: 280ms;
}

.motion-ready .research-card:nth-child(6) {
  transition-delay: 350ms;
}

.motion-ready .news-item[data-reveal] {
  transition:
    opacity 760ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 760ms cubic-bezier(0.22, 0.72, 0.2, 1),
    color 180ms ease,
    background 180ms ease,
    padding 180ms ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .model-visual {
    translate: none !important;
  }

  .scroll-progress {
    display: none;
  }

  .spm-hero::before {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .agent-section-heading {
    grid-template-columns: 180px 1fr;
    gap: 54px;
  }

  .agent-section-heading .agent-key-heading {
    font-size: clamp(58px, 6.4vw, 68px);
  }

  .agent-hero-title-line,
  .agent-heading-line {
    white-space: normal;
  }

  .agent-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .agent-flow > div:nth-child(5) {
    border-left: 0;
  }

  .agent-flow > div:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .agent-stage,
  .agent-final {
    min-height: auto;
  }

  .agent-stage-sticky {
    position: relative;
    min-height: auto;
    padding: 94px 20px 104px;
    overflow: hidden;
  }

  .agent-hero {
    min-height: auto;
    padding: 0;
  }

  .agent-hero .agent-stage-sticky {
    min-height: calc(100svh - 76px);
    padding: 78px 20px 96px;
  }

  .agent-hero h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .agent-lead {
    margin-top: 34px;
    font-size: 18px;
  }

  .agent-scroll-cue {
    margin-top: 48px;
    line-height: 1.2;
    text-align: left;
  }

  .agent-content-frame {
    padding: 0;
  }

  .agent-section-heading {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .agent-section-heading h2,
  .agent-two-card h2,
  .agent-final-card h2 {
    font-size: clamp(48px, 14.5vw, 68px);
  }

  .agent-section-heading > p {
    font-size: 12px;
  }

  .agent-efficiency-grid {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .agent-efficiency-grid article,
  .agent-efficiency-grid article:first-child,
  .agent-efficiency-grid article:last-child {
    min-height: 220px;
    padding: 28px 0;
  }

  .agent-efficiency-grid h3 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .agent-efficiency-grid p {
    font-size: 17px;
  }

  .agent-efficiency-grid article + article {
    border-top: 1px solid rgba(10, 10, 10, 0.24);
    border-left: 0;
  }

  .agent-flow {
    margin-top: 68px;
    grid-template-columns: 1fr 1fr;
  }

  .agent-flow > div,
  .agent-flow > div:nth-child(5) {
    min-height: 132px;
    padding: 18px 14px;
    border-top: 0;
    border-left: 0;
  }

  .agent-flow > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .agent-flow > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .agent-flow p {
    font-size: 25px;
  }

  .agent-stack-heading {
    padding-bottom: 62px;
  }

  .agent-stack-list article {
    min-height: 148px;
    padding: 22px 0;
    grid-template-columns: 30px 1fr;
    gap: 12px 18px;
  }

  .agent-stack-list h3 {
    font-size: 30px;
  }

  .agent-stack-list p {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.35;
  }

  .agent-two-metrics {
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .agent-two-metrics > div {
    min-height: 180px;
    padding: 26px 12px;
  }

  .agent-two-metrics > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .agent-two-metrics strong {
    font-size: 94px;
  }

  .agent-use-grid {
    margin-top: 70px;
    grid-template-columns: 1fr 1fr;
  }

  .agent-use-grid article,
  .agent-use-grid article:first-child,
  .agent-use-grid article:last-child {
    min-height: 160px;
    padding: 22px 16px;
  }

  .agent-use-grid article:first-child,
  .agent-use-grid article:nth-child(3) {
    padding-left: 0;
  }

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

  .agent-use-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(10, 10, 10, 0.24);
  }

  .agent-work .agent-use-grid article:nth-child(n + 3) {
    border-top-color: var(--line);
  }

  .agent-use-grid h3 {
    font-size: 31px;
  }

  .agent-final .agent-stage-sticky {
    min-height: 76svh;
  }

  .agent-footer {
    min-height: 64px;
    padding: 0 20px;
  }
}

@media (max-width: 380px) {
  .agent-stage-sticky {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agent-hero .agent-stage-sticky {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agent-hero h1 {
    font-size: 49px;
  }

  .agent-use-grid article,
  .agent-use-grid article:first-child,
  .agent-use-grid article:last-child {
    padding-right: 12px;
    padding-left: 12px;
  }

  .agent-use-grid article:first-child,
  .agent-use-grid article:nth-child(3) {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-agent-stage] .agent-stage-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .agent-orb {
    transform: translate(-50%, -50%) !important;
  }
}

/* Mosaic Agent — capability product page */
.ma-page {
  --ma-paper: #f2f1ed;
  --ma-ink: #090909;
  --ma-panel: #131313;
  --ma-panel-line: rgba(255, 255, 255, 0.12);
  --ma-soft: rgba(9, 9, 9, 0.62);
  position: relative;
  overflow: clip;
  background: var(--black);
}

.ma-site-header {
  color: var(--white);
  background: var(--black);
}

.ma-hero {
  min-height: calc(100svh - 92px);
  padding: clamp(92px, 12vh, 142px) 24px clamp(96px, 13vh, 154px);
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 43%, rgba(35, 108, 139, 0.16), transparent 33%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: auto, 76px 76px, 76px 76px, auto;
}

.ma-hero-inner {
  width: min(1180px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.ma-eyebrow {
  margin: 0 0 34px;
  color: rgba(246, 246, 244, 0.54);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ma-title {
  max-width: 1080px;
  margin: 0;
  display: grid;
  justify-items: center;
  font-size: clamp(66px, 8.1vw, 126px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.076em;
  text-wrap: balance;
}

.ma-title-invert {
  width: fit-content;
  margin-top: 0.08em;
  padding: 0.04em 0.13em 0.1em;
  color: var(--black);
  background: var(--white);
  border-radius: 3px;
}

.ma-intro {
  max-width: 720px;
  margin: 48px 0 0;
  color: rgba(246, 246, 244, 0.68);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.ma-hero-metrics {
  width: min(830px, 100%);
  margin-top: clamp(62px, 9vh, 92px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ma-hero-metrics p {
  min-height: 112px;
  margin: 0;
  padding: 24px 28px;
  display: grid;
  place-content: center;
  gap: 9px;
}

.ma-hero-metrics p + p {
  border-left: 1px solid var(--line);
}

.ma-hero-metrics strong {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.ma-hero-metrics span {
  color: rgba(246, 246, 244, 0.45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ma-scroll-link {
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

.ma-scroll-link span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 246, 244, 0.3);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ma-scroll-link:hover span,
.ma-scroll-link:focus-visible span {
  color: var(--black);
  background: var(--white);
  transform: translateY(3px);
}

.ma-capabilities {
  background: var(--ma-paper);
}

.ma-capability {
  position: relative;
  min-height: 860px;
  padding: clamp(104px, 13vh, 152px) 24px;
  display: grid;
  place-items: center;
  color: var(--ma-ink);
  background: var(--ma-paper);
  border-top: 1px solid rgba(9, 9, 9, 0.14);
}

.ma-capability--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 42%, rgba(33, 96, 128, 0.13), transparent 30%),
    var(--black);
  border-top-color: var(--line);
}

.ma-capability-inner {
  width: min(1248px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(64px, 8vw, 126px);
  align-items: center;
}

.ma-capability-copy {
  min-width: 0;
}

.ma-index {
  margin: 0 0 34px;
  color: currentColor;
  opacity: 0.5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ma-capability h2 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.ma-description {
  max-width: 590px;
  margin: 38px 0 0;
  color: var(--ma-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
  letter-spacing: -0.022em;
}

.ma-capability--dark .ma-description {
  color: rgba(246, 246, 244, 0.66);
}

.ma-core-idea {
  max-width: 570px;
  margin: 36px 0 0;
  padding: 20px 22px;
  display: grid;
  gap: 10px;
  border-left: 3px solid var(--signal);
  color: var(--ma-ink);
  background: rgba(9, 9, 9, 0.045);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.ma-capability--dark .ma-core-idea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.ma-core-idea span {
  color: currentColor;
  opacity: 0.48;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ma-tags {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ma-tags span {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(9, 9, 9, 0.2);
  border-radius: 999px;
  color: rgba(9, 9, 9, 0.72);
  font-size: 11px;
  font-weight: 600;
}

.ma-capability--dark .ma-tags span {
  color: rgba(246, 246, 244, 0.72);
  border-color: rgba(246, 246, 244, 0.2);
}

.ma-demo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #f4f4f0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
    var(--ma-panel);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.05);
  font-family: "Geomini", Arial, Helvetica, sans-serif;
}

.ma-capability:not(.ma-capability--dark) .ma-demo {
  box-shadow:
    0 38px 90px rgba(9, 9, 9, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.ma-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.ma-demo-bar {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  color: rgba(246, 246, 244, 0.54);
  border-bottom: 1px solid var(--ma-panel-line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ma-demo-dots {
  display: flex;
  gap: 6px;
}

.ma-demo-dots i {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: #ff5f57;
}

.ma-demo-dots i:nth-child(2) {
  background: #febc2e;
}

.ma-demo-dots i:nth-child(3) {
  background: #28c840;
}

.ma-demo-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ma-demo-status {
  color: #74d75f;
}

.ma-token-task {
  margin: 30px 30px 0;
  padding: 22px 24px;
  display: grid;
  gap: 9px;
  border: 1px solid var(--ma-panel-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.ma-token-task span,
.ma-route-request span,
.ma-memory-list article > span {
  color: rgba(246, 246, 244, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ma-token-task strong {
  font-size: 19px;
  font-weight: 500;
}

.ma-token-bars {
  margin: 32px 30px 0;
  display: grid;
  gap: 24px;
}

.ma-token-bars > div {
  display: grid;
  grid-template-columns: 118px 1fr 52px;
  gap: 14px;
  align-items: center;
  color: rgba(246, 246, 244, 0.58);
  font-size: 11px;
}

.ma-token-bars i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ma-token-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--ma-fill);
  border-radius: inherit;
  background: var(--signal);
  animation: ma-bar-in 1.2s cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.ma-token-bars > div:nth-child(2) i::after {
  background: #6bcb5f;
}

.ma-token-bars b {
  color: var(--white);
  font-size: 12px;
  text-align: right;
}

.ma-terminal-lines {
  margin: 34px 30px 0;
  padding: 22px 24px;
  display: grid;
  gap: 16px;
  color: rgba(246, 246, 244, 0.7);
  border-top: 1px solid var(--ma-panel-line);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.ma-terminal-lines p {
  margin: 0;
}

.ma-terminal-lines em {
  width: 24px;
  display: inline-block;
  color: #75d962;
  font-style: normal;
}

.ma-memory-query {
  margin: 28px 28px 0 auto;
  width: fit-content;
  max-width: calc(100% - 56px);
  padding: 13px 17px;
  color: #171717;
  background: #f3f2ee;
  border-radius: 16px 16px 4px 16px;
  font-size: 13px;
}

.ma-memory-list {
  margin: 26px 28px 0;
  display: grid;
  gap: 12px;
}

.ma-memory-list article {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 6px 14px;
  border: 1px solid var(--ma-panel-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.ma-memory-list article > span {
  grid-row: 1 / 3;
  color: #8ccfff;
}

.ma-memory-list strong {
  font-size: 14px;
  font-weight: 500;
}

.ma-memory-list p {
  margin: 0;
  color: rgba(246, 246, 244, 0.5);
  font-size: 11px;
  line-height: 1.35;
}

.ma-tool-plan {
  padding: 24px 28px;
  display: grid;
  gap: 2px;
  border-bottom: 1px solid var(--ma-panel-line);
}

.ma-tool-plan p {
  margin: 0;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 6px;
  color: rgba(246, 246, 244, 0.54);
  font-size: 11px;
}

.ma-tool-plan p.is-active {
  color: var(--white);
  background: rgba(238, 29, 11, 0.11);
}

.ma-tool-plan span {
  opacity: 0.5;
}

.ma-tool-plan b {
  font-size: 13px;
  font-weight: 500;
}

.ma-tool-plan em {
  color: #71d45e;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ma-tool-plan .is-active em {
  color: #ff7668;
  animation: ma-pulse 1.2s ease infinite;
}

.ma-code-window {
  padding: 24px 28px 30px;
  display: grid;
  gap: 13px;
  color: rgba(246, 246, 244, 0.7);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.ma-code-window p {
  margin: 0;
}

.ma-code-window p i {
  color: #50cee6;
  font-style: normal;
}

.ma-code-window small {
  color: rgba(246, 246, 244, 0.35);
}

.ma-code-window code {
  padding: 8px 10px;
  color: #e8e8e3;
  background: rgba(255, 255, 255, 0.04);
}

.ma-code-window code span {
  margin-right: 14px;
  color: rgba(246, 246, 244, 0.3);
}

.ma-code-window code.is-added {
  background: rgba(86, 164, 64, 0.16);
}

.ma-route-request {
  margin: 28px;
  padding: 20px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--ma-panel-line);
  border-radius: 9px;
}

.ma-route-request strong {
  font-size: 17px;
  font-weight: 500;
}

.ma-route-map {
  margin: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.ma-route-map div {
  min-height: 64px;
  padding: 12px 14px;
  display: grid;
  gap: 5px;
  border: 1px solid var(--ma-panel-line);
  border-radius: 7px;
  color: rgba(246, 246, 244, 0.48);
}

.ma-route-map div.is-selected {
  color: var(--white);
  border-color: rgba(238, 29, 11, 0.8);
  background: rgba(238, 29, 11, 0.13);
}

.ma-route-map span {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ma-route-map b {
  font-size: 13px;
  font-weight: 500;
}

.ma-route-result {
  margin: 24px 28px 0;
  padding-top: 18px;
  display: flex;
  gap: 10px;
  color: rgba(246, 246, 244, 0.6);
  border-top: 1px solid var(--ma-panel-line);
  font-size: 11px;
  line-height: 1.4;
}

.ma-route-result i {
  width: 8px;
  height: 8px;
  margin-top: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #72d35e;
  animation: ma-pulse 1.4s ease infinite;
}

.ma-workspace-layout {
  min-height: 465px;
  display: grid;
  grid-template-columns: 170px 1fr;
}

.ma-workspace-layout aside {
  padding: 26px 18px;
  display: grid;
  align-content: start;
  gap: 5px;
  border-right: 1px solid var(--ma-panel-line);
  background: rgba(255, 255, 255, 0.02);
}

.ma-workspace-layout aside strong {
  margin: 0 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.ma-workspace-layout aside span {
  min-height: 38px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(246, 246, 244, 0.46);
  border-radius: 6px;
  font-size: 11px;
}

.ma-workspace-layout aside span.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.ma-workspace-layout aside b {
  color: rgba(246, 246, 244, 0.28);
  font-size: 9px;
}

.ma-workspace-main {
  padding: 26px;
}

.ma-resume-card {
  padding: 20px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(99, 192, 234, 0.28);
  border-radius: 9px;
  background: rgba(49, 130, 168, 0.08);
}

.ma-resume-card span {
  color: #79c7ec;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.ma-resume-card strong {
  font-size: 16px;
  font-weight: 500;
}

.ma-resume-card p {
  margin: 0;
  color: rgba(246, 246, 244, 0.44);
  font-size: 10px;
}

.ma-workspace-main ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.ma-workspace-main li {
  min-height: 48px;
  padding-left: 28px;
  display: flex;
  align-items: center;
  color: rgba(246, 246, 244, 0.46);
  border-bottom: 1px solid var(--ma-panel-line);
  font-size: 12px;
}

.ma-workspace-main li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: -26px;
  margin-right: 16px;
  border: 1px solid rgba(246, 246, 244, 0.34);
  border-radius: 50%;
}

.ma-workspace-main li.is-done {
  color: rgba(246, 246, 244, 0.34);
  text-decoration: line-through;
}

.ma-workspace-main li.is-done::before {
  border-color: #68c958;
  background: #68c958;
}

.ma-workspace-main li.is-current {
  color: var(--white);
}

.ma-workspace-main li.is-current::before {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(238, 29, 11, 0.12);
}

.ma-adapt-metrics {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ma-adapt-metrics div {
  min-height: 118px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--ma-panel-line);
  border-radius: 8px;
}

.ma-adapt-metrics span,
.ma-adapt-metrics small {
  color: rgba(246, 246, 244, 0.4);
  font-size: 9px;
}

.ma-adapt-metrics strong {
  color: #79d76a;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.ma-adapt-list {
  margin: 0 28px;
  border-top: 1px solid var(--ma-panel-line);
}

.ma-adapt-list p {
  min-height: 54px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--ma-panel-line);
  font-size: 10px;
}

.ma-adapt-list span {
  color: rgba(246, 246, 244, 0.46);
}

.ma-adapt-list b {
  font-size: 11px;
  font-weight: 500;
}

.ma-adapt-list em {
  color: #79d76a;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ma-adapt-note {
  margin: 24px 28px 0;
  padding: 15px 17px;
  color: rgba(246, 246, 244, 0.62);
  border-left: 2px solid var(--signal);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  line-height: 1.35;
}

.ma-closing {
  min-height: 86svh;
  padding: 110px 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(33, 96, 128, 0.14), transparent 33%),
    var(--black);
  text-align: center;
}

.ma-closing > div {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
}

.ma-closing p {
  margin: 0 0 30px;
  color: rgba(246, 246, 244, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ma-closing h2 {
  margin: 0;
  font-size: clamp(60px, 7.5vw, 116px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.ma-closing a {
  min-width: 226px;
  min-height: 56px;
  margin-top: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--signal);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ma-closing a:hover,
.ma-closing a:focus-visible {
  color: var(--signal);
  background: var(--white);
  transform: translateY(-2px);
}

.ma-footer {
  min-height: 72px;
  padding: 0 max(24px, calc((100% - 1248px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(246, 246, 244, 0.46);
  background: var(--black);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ma-footer p {
  margin: 0;
}

@keyframes ma-bar-in {
  from {
    width: 0;
  }
}

@keyframes ma-pulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .ma-capability-inner {
    grid-template-columns: minmax(0, 0.78fr) minmax(470px, 1.22fr);
    gap: 54px;
  }

  .ma-capability h2 {
    font-size: clamp(48px, 5vw, 64px);
  }
}

@media (max-width: 900px) {
  .ma-capability {
    min-height: 0;
    padding: 98px 24px 110px;
  }

  .ma-capability-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .ma-capability-copy {
    max-width: 700px;
  }

  .ma-capability h2,
  .ma-description,
  .ma-core-idea {
    max-width: 700px;
  }

  .ma-demo {
    width: min(720px, 100%);
  }
}

@media (max-width: 700px) {
  .ma-hero {
    min-height: calc(100svh - 76px);
    padding: 76px 20px 92px;
    background-size: auto, 48px 48px, 48px 48px, auto;
  }

  .ma-eyebrow {
    margin-bottom: 26px;
    font-size: 9px;
  }

  .ma-title {
    font-size: clamp(50px, 14.8vw, 68px);
    line-height: 0.94;
  }

  .ma-title-invert {
    width: auto;
  }

  .ma-intro {
    margin-top: 34px;
    font-size: 18px;
  }

  .ma-hero-metrics {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .ma-hero-metrics p {
    min-height: 84px;
    padding: 18px;
  }

  .ma-hero-metrics p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ma-scroll-link {
    margin-top: 38px;
  }

  .ma-capability {
    padding: 82px 20px 92px;
  }

  .ma-capability-inner {
    gap: 50px;
  }

  .ma-index {
    margin-bottom: 26px;
  }

  .ma-capability h2 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.96;
  }

  .ma-description {
    margin-top: 28px;
    font-size: 17px;
  }

  .ma-core-idea {
    margin-top: 28px;
    padding: 17px 18px;
    font-size: 19px;
  }

  .ma-tags {
    margin-top: 32px;
  }

  .ma-tags span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 10px;
  }

  .ma-demo {
    min-height: 0;
    border-radius: 12px;
  }

  .ma-demo-bar {
    min-height: 50px;
    padding: 0 14px;
    gap: 11px;
  }

  .ma-demo-status {
    max-width: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ma-token-task,
  .ma-route-request {
    margin: 20px;
  }

  .ma-token-bars {
    margin: 26px 20px 0;
  }

  .ma-token-bars > div {
    grid-template-columns: 96px 1fr 44px;
    gap: 10px;
  }

  .ma-terminal-lines {
    margin: 28px 20px 0;
    padding: 19px 16px 24px;
  }

  .ma-memory-query {
    margin: 20px 20px 0 auto;
    max-width: calc(100% - 40px);
  }

  .ma-memory-list {
    margin: 20px;
  }

  .ma-memory-list article {
    padding: 15px;
    grid-template-columns: 1fr;
  }

  .ma-memory-list article > span {
    grid-row: auto;
  }

  .ma-tool-plan,
  .ma-code-window {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ma-code-window {
    overflow-x: auto;
  }

  .ma-code-window code {
    width: max-content;
    min-width: 100%;
  }

  .ma-route-map {
    margin: 0 20px;
    grid-template-columns: 1fr;
  }

  .ma-route-result {
    margin: 22px 20px 24px;
  }

  .ma-workspace-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ma-workspace-layout aside {
    padding: 16px;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--ma-panel-line);
  }

  .ma-workspace-layout aside strong {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .ma-workspace-layout aside span {
    padding: 0 6px;
    justify-content: center;
  }

  .ma-workspace-layout aside span:nth-of-type(n + 4) {
    display: none;
  }

  .ma-workspace-layout aside b {
    display: none;
  }

  .ma-workspace-main {
    padding: 20px;
  }

  .ma-adapt-metrics {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .ma-adapt-metrics div {
    min-height: 92px;
  }

  .ma-adapt-list {
    margin: 0 20px;
  }

  .ma-adapt-list p {
    padding: 12px 0;
    grid-template-columns: 1fr auto;
  }

  .ma-adapt-list b {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .ma-adapt-list em {
    grid-column: 2;
    grid-row: 1;
  }

  .ma-adapt-note {
    margin: 22px 20px 24px;
  }

  .ma-closing {
    min-height: 72svh;
    padding: 92px 20px;
  }

  .ma-closing h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .ma-footer {
    min-height: 64px;
    padding: 0 20px;
  }
}

@media (max-width: 380px) {
  .ma-hero,
  .ma-capability,
  .ma-closing {
    padding-right: 16px;
    padding-left: 16px;
  }

  .ma-title {
    font-size: 49px;
  }

  .ma-token-bars > div {
    grid-template-columns: 84px 1fr 40px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ma-page *,
  .ma-page *::before,
  .ma-page *::after {
    animation: none !important;
  }
}

/* Mosaic Agent — Apple-style motion system */
.ma-motion-ready .ma-site-header {
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 900ms 80ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms 80ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready.ma-loaded .ma-site-header {
  opacity: 1;
  transform: translateY(0);
}

.ma-motion-ready .ma-hero {
  --ma-hero-progress: 0;
}

.ma-motion-ready .ma-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86vw, 1060px);
  aspect-ratio: 1;
  border: 1px solid rgba(246, 246, 244, 0.1);
  border-radius: 50%;
  opacity: calc(0.72 - var(--ma-hero-progress) * 0.62);
  transform:
    translate3d(
      -50%,
      calc(-50% - var(--ma-hero-progress) * 110px),
      0
    )
    scale(calc(0.9 + var(--ma-hero-progress) * 0.2));
  pointer-events: none;
  will-change: opacity, transform;
}

.ma-motion-ready .ma-hero-inner {
  position: relative;
  z-index: 1;
  opacity: calc(1 - var(--ma-hero-progress) * 0.82);
  filter: blur(calc(var(--ma-hero-progress) * 8px));
  transform:
    translate3d(0, calc(var(--ma-hero-progress) * -54px), 0)
    scale(calc(1 - var(--ma-hero-progress) * 0.055));
  transform-origin: center center;
  will-change: opacity, filter, transform;
}

.ma-motion-ready .ma-title-invert {
  background-image:
    linear-gradient(90deg, #ffffff 0 50%, #e8e8e4 50% 100%);
  background-size: 210% 100%;
  background-position: 100% 0;
  transition: background-position 1400ms 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready.ma-loaded .ma-title-invert {
  background-position: 0 0;
}

.ma-motion-ready .ma-hero-metrics p {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready.ma-loaded .ma-hero-metrics p {
  opacity: 1;
  transform: translateY(0);
}

.ma-motion-ready.ma-loaded .ma-hero-metrics p:nth-child(1) {
  transition-delay: 520ms;
}

.ma-motion-ready.ma-loaded .ma-hero-metrics p:nth-child(2) {
  transition-delay: 620ms;
}

.ma-motion-ready.ma-loaded .ma-hero-metrics p:nth-child(3) {
  transition-delay: 720ms;
}

.ma-motion-ready .ma-capability {
  --ma-focus: 0;
  --ma-progress: 0;
}

.ma-motion-ready .ma-capability::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 12%;
  right: -13vw;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: calc(var(--ma-focus) * 0.045);
  transform:
    translate3d(
      calc((0.5 - var(--ma-progress)) * 100px),
      calc((0.5 - var(--ma-progress)) * -76px),
      0
    )
    scale(calc(0.84 + var(--ma-focus) * 0.16));
  pointer-events: none;
  will-change: opacity, transform;
}

.ma-motion-ready .ma-capability-inner {
  position: relative;
  z-index: 1;
}

.ma-motion-ready .ma-capability-copy .ma-index {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 720ms 40ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms 40ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready .ma-capability-copy h2 {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(44px);
  transition:
    opacity 960ms 80ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1100ms 80ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms 80ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready .ma-capability-copy .ma-description,
.ma-motion-ready .ma-capability-copy .ma-core-idea {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready .ma-capability-copy .ma-description {
  transition-delay: 180ms;
}

.ma-motion-ready .ma-capability-copy .ma-core-idea {
  transition-delay: 260ms;
}

.ma-motion-ready .ma-tags span {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms ease,
    background 180ms ease;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-index,
.ma-motion-ready .ma-capability.ma-in-view h2,
.ma-motion-ready .ma-capability.ma-in-view .ma-description,
.ma-motion-ready .ma-capability.ma-in-view .ma-core-idea,
.ma-motion-ready .ma-capability.ma-in-view .ma-tags span {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.ma-motion-ready .ma-capability.ma-in-view .ma-tags span:nth-child(1) {
  transition-delay: 300ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-tags span:nth-child(2) {
  transition-delay: 350ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-tags span:nth-child(3) {
  transition-delay: 400ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-tags span:nth-child(4) {
  transition-delay: 450ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-tags span:nth-child(5) {
  transition-delay: 500ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-tags span:nth-child(6) {
  transition-delay: 550ms;
}

.ma-motion-ready .ma-demo {
  --ma-tilt-x: 0deg;
  --ma-tilt-y: 0deg;
  --ma-glow-x: 50%;
  --ma-glow-y: 50%;
  opacity: calc(0.54 + var(--ma-focus) * 0.46);
  filter: blur(calc((1 - var(--ma-focus)) * 5px));
  transform:
    perspective(1300px)
    translate3d(0, calc((1 - var(--ma-focus)) * 52px), 0)
    scale(calc(0.94 + var(--ma-focus) * 0.06))
    rotateX(calc(var(--ma-tilt-x) + (1 - var(--ma-focus)) * 3deg))
    rotateY(var(--ma-tilt-y));
  transform-origin: center center;
  transition:
    box-shadow 360ms ease,
    border-color 360ms ease;
  will-change: opacity, filter, transform;
}

.ma-motion-ready .ma-demo::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--ma-glow-x) var(--ma-glow-y),
      rgba(255, 255, 255, 0.12),
      transparent 34%
    );
  transition: opacity 360ms ease;
  pointer-events: none;
}

.ma-motion-ready .ma-demo:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.ma-motion-ready .ma-demo:hover::before {
  opacity: 1;
}

.ma-motion-ready .ma-demo > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ma-motion-ready .ma-capability.ma-in-view .ma-demo > * {
  opacity: 1;
  transform: translateY(0);
}

.ma-motion-ready .ma-capability.ma-in-view .ma-demo > :nth-child(1) {
  transition-delay: 180ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-demo > :nth-child(2) {
  transition-delay: 280ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-demo > :nth-child(3) {
  transition-delay: 380ms;
}

.ma-motion-ready .ma-capability.ma-in-view .ma-demo > :nth-child(4) {
  transition-delay: 480ms;
}

.ma-motion-ready .ma-route-map .is-selected {
  animation: ma-route-breathe 2.8s ease-in-out infinite;
}

.ma-motion-ready .ma-workspace-main li.is-current::before {
  animation: ma-current-task 1.8s ease-in-out infinite;
}

.ma-motion-ready .ma-adapt-metrics strong {
  display: inline-block;
  animation: ma-metric-float 4s ease-in-out infinite;
}

.ma-motion-ready .ma-adapt-metrics div:nth-child(2) strong {
  animation-delay: 260ms;
}

.ma-motion-ready .ma-adapt-metrics div:nth-child(3) strong {
  animation-delay: 520ms;
}

.ma-motion-ready .ma-closing > div {
  transform: translateY(calc((1 - var(--ma-closing-focus, 1)) * 40px));
}

@keyframes ma-route-breathe {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(238, 29, 11, 0);
  }

  50% {
    box-shadow: inset 0 0 32px rgba(238, 29, 11, 0.13);
  }
}

@keyframes ma-current-task {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(238, 29, 11, 0.1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(238, 29, 11, 0.02);
  }
}

@keyframes ma-metric-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 900px) {
  .ma-motion-ready .ma-demo {
    opacity: 1;
    filter: none;
    transform:
      perspective(1200px)
      rotateX(var(--ma-tilt-x))
      rotateY(var(--ma-tilt-y));
  }

  .ma-motion-ready .ma-capability::after {
    right: -42vw;
    width: 92vw;
  }
}

@media (max-width: 700px) {
  .ma-motion-ready .ma-hero-inner {
    opacity: 1;
    filter: none;
    transform: translate3d(0, calc(var(--ma-hero-progress) * -24px), 0);
  }

  .ma-motion-ready .ma-hero::before {
    width: 124vw;
  }

  .ma-motion-ready .ma-demo {
    transform: none;
  }

  .ma-motion-ready .ma-demo:hover {
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.28),
      inset 0 1px rgba(255, 255, 255, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ma-motion-reduced .ma-capability-copy h2,
  .ma-motion-reduced .ma-capability-copy .ma-index,
  .ma-motion-reduced .ma-capability-copy .ma-description,
  .ma-motion-reduced .ma-capability-copy .ma-core-idea,
  .ma-motion-reduced .ma-tags span,
  .ma-motion-reduced .ma-demo,
  .ma-motion-reduced .ma-demo > * {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }
}
