@font-face {
  font-family: Inter;
  src: url("../fonts/inter-4.1/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/inter-4.1/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/inter-4.1/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/inter-4.1/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/inter-4.1/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --ink: #f4f7f8;
  --muted: #c3ccd1;
  --dim: #9eabb2;
  --night: #090b0e;
  --cyan: #74d8ff;
  --line: rgba(255, 255, 255, 0.12);
  font-family: Inter, sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  background: var(--night);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  position: relative;
  isolation: isolate;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p {
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}
h1,
h2,
h3 {
  letter-spacing: -0.4px;
}
h1 {
  font-size: 82px;
  line-height: 86px;
  font-weight: 800;
}
h2 {
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
}
h3 {
  font-size: 22px;
  line-height: 28px;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--cyan);
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
  box-shadow: 0 0 0 8px #090b0e;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: calc(100% - 144px);
  max-width: 1296px;
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--night);
  padding: 12px;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(64, 115, 140, 0.05) 0,
    rgba(64, 115, 140, 0.05) 1px,
    transparent 1px,
    transparent 108px
  );
  background-position: calc(50% - 648px) 0;
}
.glow {
  position: absolute;
  max-width: none;
}
.glow-one {
  width: 940px;
  height: 940px;
  left: calc(50% + 100px - 110px);
  top: -230px;
}
.glow-two {
  width: 860px;
  height: 860px;
  left: calc(50% - 940px - 120px);
  top: 500px;
}
.glow-three {
  width: 1080px;
  height: 1080px;
  left: calc(50% + 60px - 140px);
  top: 2080px;
}
.glow-four {
  display: none;
}
.site-header {
  position: relative;
  z-index: 30;
  padding-top: 32px;
}
.header-content {
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(9, 12, 15, 0.78);
  backdrop-filter: blur(9px);
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 184.8px;
  height: 32px;
}
.header-content nav {
  margin-left: auto;
}
.header-content ul {
  gap: 32px;
}
.header-content nav a {
  min-width: 50px;
}
.compact-navigation {
  display: none;
}
.compact-menu {
  cursor: pointer;
  list-style: none;
}
.compact-menu::-webkit-details-marker {
  display: none;
}
.compact-menu-icon,
.compact-menu-icon::before,
.compact-menu-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.compact-menu-icon {
  position: relative;
}
.compact-menu-icon::before,
.compact-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.compact-menu-icon::before {
  top: -7px;
}
.compact-menu-icon::after {
  top: 7px;
}
.compact-navigation-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090c0f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}
.compact-navigation-menu ul {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.compact-navigation-menu a {
  width: 100%;
  padding-inline: 12px;
  color: var(--ink);
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--cyan);
}
.notice {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: var(--dim);
}
.compact-copy {
  display: none;
}
.home-introduction {
  position: relative;
  padding-top: 97px;
  min-height: 1322px;
}
.hero {
  width: 610px;
}
.hero h1 {
  margin-top: 47px;
  width: 740px;
}
.hero h1 span {
  display: block;
}
.hero .accent {
  color: var(--cyan);
  opacity: 0.88;
}
.hero .lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 22px 0 0 4px;
}
.hero .notice {
  margin: 10px 0 0 4px;
}
.rotor-orbit {
  position: absolute;
  left: 793px;
  top: 62px;
  width: 420px;
  height: 420px;
  pointer-events: none;
}
.rotor-orbit img:last-child {
  position: absolute;
  width: 260px;
  height: 260px;
  left: 80px;
  top: 80px;
}
.product-spectrum {
  position: absolute;
  left: 578px;
  top: 414px;
  display: flex;
  gap: 5px;
  width: 790px;
}
.status-preview {
  width: 260px;
  flex-shrink: 0;
}
.status-preview-good {
  margin-top: 120px;
}
.status-preview-caution {
  margin-top: 60px;
}
.status-preview figcaption {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}
.status-index {
  display: none;
}
.status-preview img {
  width: 260px;
  height: 610px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(10, 184, 128, 0.25);
}
.status-preview-caution img {
  box-shadow: 0 14px 36px rgba(245, 153, 10, 0.25);
}
.status-preview-no-go img {
  box-shadow: 0 14px 36px rgba(255, 46, 77, 0.25);
}
.decision {
  margin-top: 142px;
  padding-top: 44px;
  width: 510px;
}
.decision h2 {
  margin-top: 0;
}
.decision > p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 490px;
}
.journey {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  min-height: 410px;
}
.journey ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 16px 28px 0 0;
  padding: 0;
}
.journey li {
  border-top: 1px solid rgba(41, 209, 242, 0.28);
  padding-top: 20px;
  outline: none;
  transition: border-color 160ms ease;
}
.journey li:first-child {
  border-color: rgba(41, 209, 242, 0.85);
}
.journey ol:has(li:is(:hover, :focus-visible)) li:first-child {
  border-color: rgba(41, 209, 242, 0.28);
}
.journey li:is(:hover, :focus-visible) {
  border-color: rgba(41, 209, 242, 0.85);
}
.journey
  ol:has(li:is(:hover, :focus-visible))
  li:first-child:is(:hover, :focus-visible) {
  border-color: rgba(41, 209, 242, 0.85);
}
.step-number {
  display: block;
  color: var(--cyan);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.journey h3 {
  margin-top: 18px;
}
.journey li p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 18px;
}
.trust {
  position: relative;
  padding-top: 70px;
  min-height: 550px;
}
.ghost-word {
  position: absolute;
  top: 0;
  left: -2px;
  opacity: 0.05;
  font-size: 116px;
  line-height: 118px;
  font-weight: 800;
  letter-spacing: -0.4px;
  pointer-events: none;
}
.trust-content {
  display: grid;
  grid-template-columns: 560px 530px;
  gap: 108px;
  margin-top: 30px;
}
.trust h2 {
  font-size: 48px;
  line-height: 54px;
}
.trust-content > p {
  padding-top: 10px;
}
.trust:after {
  content: "";
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(41, 209, 242, 0.8),
    rgba(199, 64, 255, 0.25) 55%,
    rgba(255, 46, 77, 0)
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 365px;
}
.release {
  --release-stroke: linear-gradient(
    90deg,
    rgba(41, 209, 242, 0.8),
    rgba(199, 64, 255, 0.45) 50%,
    rgba(41, 209, 242, 0.12)
  );
  position: relative;
  min-height: 310px;
  border: 1px solid transparent;
  border-radius: 32px;
  padding: 36px 38px;
  background: rgba(9, 12, 15, 0.66);
  backdrop-filter: blur(10px);
}
.release::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: var(--release-stroke);
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.release h2 {
  font-size: 42px;
  line-height: 48px;
  margin-top: 28px;
  max-width: 700px;
}
.release > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  font-size: 18px;
  line-height: 28px;
}
.release-arrow {
  position: absolute;
  right: 56px;
  top: 90px;
  width: 120px;
  color: var(--cyan);
  font-size: 92px;
  line-height: 98px;
  font-weight: 800;
}
.mobile-arrow {
  display: none;
}
.compact-footer-link {
  display: none;
}
@media (max-width: 1099px) {
  .compact-footer-link {
    display: list-item;
  }
}
.site-footer {
  margin-top: 95px;
}
.footer-grid {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  min-height: 125px;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}
.footer-grid ul {
  gap: 12px;
  flex-wrap: wrap;
}
.footer-grid li + li:before {
  content: "·";
  color: var(--muted);
  margin-right: 12px;
}
.footer-notice {
  font-size: 12px;
  line-height: 16px;
}
.language-navigation {
  width: 100%;
  opacity: 0.8;
}
.language-navigation a {
  font-size: 12px;
}
.language-navigation li + li:before {
  content: "/";
}
.content-page {
  padding-top: 102px;
  min-height: 1500px;
}
.content-page h1 {
  max-width: 700px;
  font-size: 72px;
  line-height: 76px;
}
.content-page > p {
  margin-top: 30px;
  max-width: 700px;
}
.content-page h2 {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  font-size: 34px;
  line-height: 40px;
}
.content-page a {
  text-decoration: underline;
}
.content-page ul {
  line-height: 1.8;
}
.content-page p {
  max-width: 700px;
}
@media (min-width: 1600px) {
  .home-introduction {
    overflow: visible;
  }
}
@media (max-width: 1099px) and (min-width: 705px) {
  .atmosphere::after {
    background-size: 88px 100%;
    background-position: 32px 0;
  }
  .shell {
    width: calc(100% - 64px);
    max-width: 960px;
  }
  .site-header {
    padding-top: 28px;
  }
  .header-content {
    height: 68px;
    padding: 0 15px;
    border-radius: 22px;
    backdrop-filter: blur(8px);
  }
  .brand img {
    width: 138.6px;
    height: 24px;
  }
  .header-content > nav {
    display: none;
  }
  .compact-navigation {
    position: relative;
    display: block;
    margin-left: auto;
  }
  .compact-menu {
    display: flex;
    margin-left: auto;
    font-size: 14px;
    color: var(--cyan);
    min-height: 44px;
    align-items: center;
  }
  .home-introduction {
    padding: 64px 8px 0;
    min-height: 1484px;
  }
  .hero {
    width: 100%;
  }
  .hero h1 {
    font-size: 68px;
    line-height: 72px;
    width: 100%;
    margin-top: 52px;
  }
  .hero .accent {
    opacity: 1;
  }
  .hero .lead {
    margin: 32px 0 0;
    max-width: 620px;
  }
  .hero .notice {
    display: none;
  }
  .desktop-copy {
    display: none;
  }
  .compact-copy {
    display: block;
  }
  .rotor-orbit {
    display: block;
    left: auto;
    right: clamp(0px, 4vw, 48px);
    top: 44px;
    width: clamp(280px, 30vw, 360px);
    height: clamp(280px, 30vw, 360px);
    opacity: 0.9;
  }
  .rotor-orbit > img:first-child {
    width: 100%;
    height: 100%;
  }
  .rotor-orbit img:last-child {
    left: 19.05%;
    top: 19.05%;
    width: 61.9%;
    height: 61.9%;
  }
  .product-spectrum {
    left: 8px;
    right: 8px;
    top: 504px;
    width: auto;
    gap: 24px;
  }
  .status-preview {
    width: calc((100% - 48px) / 3);
    margin-top: 0;
  }
  .status-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 210/492;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(10, 184, 128, 0.22);
  }
  .status-preview-caution img {
    box-shadow: 0 10px 28px rgba(245, 153, 10, 0.22);
  }
  .status-preview-no-go img {
    box-shadow: 0 10px 28px rgba(255, 46, 77, 0.22);
  }
  .status-preview figcaption {
    margin-bottom: 20px;
  }
  .decision {
    margin-top: 750px;
    padding-top: 0;
    width: 100%;
    max-width: 620px;
  }
  .decision .section-index {
    display: none;
  }
  .decision h2 {
    font-size: 42px;
    line-height: 48px;
    margin-top: 0;
  }
  .decision > p {
    font-size: 18px;
    line-height: 28px;
    max-width: 610px !important;
    margin-top: 19px !important;
  }
  .journey {
    display: block;
    min-height: 370px;
    padding-inline: 8px;
  }
  .journey > h2 {
    display: none;
  }
  .journey ol {
    margin: 0;
    gap: 24px;
  }
  .journey li {
    padding-top: 18px;
    border-color: rgba(41, 209, 242, 0.3);
  }
  .journey li:first-child {
    border-color: rgba(41, 209, 242, 0.8);
  }
  .journey h3 {
    margin-top: 20px;
  }
  .journey li p {
    margin-top: 20px;
  }
  .trust {
    padding: 90px 8px 0;
    min-height: 570px;
  }
  .ghost-word {
    font-size: 82px;
    line-height: 86px;
    left: 4px;
  }
  .trust > .eyebrow {
    display: none;
  }
  .trust-content {
    display: block;
    margin: 0;
  }
  .trust h2 {
    font-size: 42px;
    line-height: 48px;
    max-width: 600px;
  }
  .trust-content > p {
    padding: 0;
    max-width: 600px;
    margin-top: 24px;
  }
  .trust:after {
    display: none;
  }
  .release {
    --release-stroke: linear-gradient(
      90deg,
      rgba(41, 209, 242, 0.85),
      rgba(199, 64, 255, 0.4) 55%,
      rgba(255, 46, 77, 0.15)
    );
    min-height: 430px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(9, 12, 15, 0.68);
    backdrop-filter: none;
  }
  .release h2 {
    font-size: 36px;
    line-height: 44px;
    margin-top: 42px;
    max-width: 630px;
  }
  .release > p:not(.eyebrow) {
    margin-top: 32px;
    max-width: 560px;
  }
  .release-arrow {
    top: 288px;
    right: 34px;
    width: 100px;
    font-size: 80px;
    line-height: 82px;
  }
  .site-footer {
    margin-top: 240px;
  }
  .footer-grid {
    min-height: 270px;
    padding-top: 28px;
  }
  .home .glow {
    display: block;
  }
  .content-page {
    padding-top: 100px;
  }
  .information .site-footer {
    margin-top: 100px;
  }
}
@media (max-width: 704px) {
  .shell {
    width: calc(100% - 48px);
  }
  .site-header {
    padding-top: 24px;
  }
  .header-content {
    height: 68px;
    padding: 0 15px;
    gap: 0;
    border-radius: 22px;
    backdrop-filter: blur(8px);
  }
  .brand img {
    width: 138.6px;
    height: 24px;
  }
  .header-content > nav {
    display: none;
  }
  .compact-navigation {
    position: relative;
    display: block;
    margin-left: auto;
  }
  .compact-menu {
    display: flex;
    margin-left: auto;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    color: var(--cyan);
  }
  .atmosphere {
    background-image: repeating-linear-gradient(
      90deg,
      rgba(64, 115, 140, 0.05) 0,
      rgba(64, 115, 140, 0.05) 1px,
      transparent 1px,
      transparent 57px
    );
    background-size: 57px 100%;
    background-position: 24px 0;
  }
  .atmosphere::after {
    display: none;
  }
  .home .atmosphere {
    background-image: repeating-linear-gradient(
      90deg,
      rgba(64, 115, 140, 0.06) 0,
      rgba(64, 115, 140, 0.06) 1px,
      transparent 1px,
      transparent 57px
    );
  }
  .home-introduction {
    padding: 62px 4px 0;
    min-height: 0;
  }
  .hero {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(42px, 13.333vw, 52px);
    line-height: 56px;
    width: 100%;
    margin-top: 0;
  }
  .hero .accent {
    opacity: 1;
  }
  .hero .lead {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    margin: 26px 0 0;
    max-width: 326px;
  }
  .hero .notice {
    margin: 13px 0 0;
    max-width: 326px;
  }
  .desktop-copy {
    display: none;
  }
  .compact-copy {
    display: block;
  }
  .rotor-orbit {
    display: block;
    left: auto;
    right: -24px;
    top: 390px;
    width: 280px;
    height: 280px;
    opacity: 0.7;
  }
  .rotor-orbit > img:first-child {
    width: 100%;
    height: 100%;
  }
  .rotor-orbit img:last-child {
    left: 19.05%;
    top: 19.05%;
    width: 61.9%;
    height: 61.9%;
  }
  .product-spectrum {
    position: relative;
    left: auto;
    top: auto;
    display: grid;
    gap: 40px;
    width: 100%;
    margin-top: 68px;
  }
  .status-preview {
    width: 280px;
    max-width: calc(100% - 54px);
    margin: 0;
  }
  .status-preview img {
    width: 280px;
    height: auto;
    aspect-ratio: 280/656;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(10, 184, 128, 0.25);
  }
  .status-preview-caution img {
    box-shadow: 0 12px 28px rgba(245, 153, 10, 0.25);
  }
  .status-preview-no-go img {
    box-shadow: 0 12px 28px rgba(255, 46, 77, 0.25);
  }
  .status-preview figcaption {
    margin-bottom: 14px;
    white-space: nowrap;
  }
  .status-preview-caution {
    margin-left: 54px;
    margin-top: 0;
  }
  .status-preview-no-go {
    margin-top: 0;
  }
  .decision {
    margin-top: 64px;
    padding-top: 0;
    width: 100%;
  }
  .decision .section-index {
    display: none;
  }
  .decision h2 {
    font-size: 36px;
    line-height: 42px;
    margin: 0;
    max-width: 330px;
  }
  .decision > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 26px;
    margin-top: 22px;
    max-width: 326px;
  }
  .journey {
    display: block;
    margin-top: 28px;
    padding-inline: 4px;
    min-height: 0;
  }
  .journey > h2 {
    display: none;
  }
  .journey ol {
    display: block;
    margin: 0;
  }
  .journey li {
    position: relative;
    min-height: 160px;
    margin-left: 54px;
    padding-top: 19px;
    border-color: rgba(41, 209, 242, 0.35);
  }
  .journey li:first-child {
    border-color: rgba(41, 209, 242, 0.35);
  }
  .journey .step-number {
    position: absolute;
    left: -54px;
    top: -11px;
  }
  .journey h3 {
    margin-top: 0;
  }
  .journey li p {
    margin-top: 14px;
  }
  .trust {
    margin-top: 110px;
    padding: 0 4px;
    min-height: 0;
  }
  .ghost-word {
    display: none;
  }
  .trust-index {
    display: none;
  }
  .trust-content {
    display: block;
    margin-top: 20px;
  }
  .trust h2 {
    font-size: 48px;
    line-height: 52px;
    font-weight: 800;
  }
  .trust-content > p {
    font-size: 17px;
    line-height: 26px;
    padding: 0;
    margin-top: 16px;
    max-width: 326px;
  }
  .trust:after {
    display: none;
  }
  .release {
    --release-stroke: linear-gradient(
      90deg,
      rgba(41, 209, 242, 0.85),
      rgba(199, 64, 255, 0.4) 55%,
      rgba(255, 46, 77, 0.15)
    );
    margin-top: 166px;
    padding: 28px 26px;
    min-height: 430px;
    border-radius: 28px;
    background: rgba(9, 12, 15, 0.68);
    backdrop-filter: none;
  }
  .release h2 {
    font-size: 34px;
    line-height: 40px;
    margin-top: 32px;
    max-width: 278px;
  }
  .release > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 26px;
    margin-top: 52px;
    max-width: 278px;
  }
  .release-arrow {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    margin: 2px -28px 0 auto;
    width: 100px;
    font-size: 72px;
    line-height: 76px;
  }
  .release-arrow .wide-arrow {
    display: none;
  }
  .release-arrow .mobile-arrow {
    display: inline;
  }
  .site-footer {
    margin-top: 130px;
  }
  .footer-grid {
    border-top: 0;
    padding: 0 4px;
    min-height: 160px;
    display: block;
  }
  .footer-grid ul {
    gap: 4px;
  }
  .footer-grid li + li:before {
    margin-right: 4px;
  }
  .home .footer-grid nav:first-child li:first-child {
    width: 100%;
  }
  .footer-grid nav:first-child li:nth-child(2):before {
    display: none;
  }
  .footer-grid nav a {
    min-height: 44px;
    font-weight: 400;
  }
  .language-navigation {
    margin-top: 24px;
  }
  .glow-one {
    left: 60px;
    top: -130px;
    width: 520px;
    height: 520px;
  }
  .glow-two {
    left: -260px;
    top: 1190px;
    width: 640px;
    height: 640px;
  }
  .glow-three {
    left: 40px;
    top: 1910px;
    width: 640px;
    height: 640px;
  }
  .glow-four {
    display: block;
    left: -210px;
    top: 3880px;
    width: 660px;
    height: 660px;
  }
  .content-page {
    padding-top: 104px;
    min-height: 0;
  }
  .content-page h1 {
    font-size: 44px;
    line-height: 50px;
  }
  .content-page p {
    font-size: 17px;
    line-height: 26px;
  }
  .content-page h2 {
    margin-top: 100px;
    font-size: 32px;
    line-height: 38px;
  }
  .information .site-footer {
    margin-top: 120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (forced-colors: active) {
  .atmosphere,
  .rotor-orbit {
    display: none;
  }
  .header-content,
  .release,
  .journey li {
    border: 1px solid CanvasText;
  }
  .hero .accent {
    color: CanvasText;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 9.6px;
  width: 184.8px;
  height: 32px;
}
.brand-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.brand-symbol img {
  width: 28.875px;
  height: 28.875px;
}
.brand .brand-wordmark {
  width: 143.088px;
  height: 23.92px;
}
.data-introduction {
  position: relative;
  padding-top: 102px;
  min-height: 437px;
}
.data-introduction::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(41, 209, 242, 0.8),
    rgba(199, 64, 255, 0.25) 50%,
    rgba(255, 46, 77, 0)
  );
}
.data-introduction .ghost-word {
  top: 67px;
  left: -6px;
  opacity: 0.04;
  font-size: 150px;
  line-height: 150px;
}
.data-introduction h1 {
  font-size: 72px;
  line-height: 76px;
  max-width: 700px;
  margin-top: 28px;
}
.data-introduction .lead {
  position: absolute;
  left: 718px;
  top: 214px;
  width: 520px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.data-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 282px 430px 1fr;
  gap: 28px;
  padding: 49px 0 0;
  min-height: 300px;
  border-bottom: 1px solid var(--line);
}
.data-row:first-of-type {
  padding-top: 49px;
}
.row-number {
  font-size: 14px;
  line-height: 20px;
  color: var(--cyan);
  font-weight: 500;
  padding-top: 6px;
}
.row-label {
  color: var(--dim);
  padding-top: 6px;
}
.data-row h2 {
  font-size: 34px;
  line-height: 40px;
  max-width: 410px;
}
@media (min-width: 1440px) {
  html[lang="en-US"] .independent-checks-title {
    word-spacing: 1px;
  }
}
.row-body {
  font-size: 17px;
  line-height: 27px;
  padding-top: 6px;
}
.information:has(.data-page) .site-footer {
  margin-top: 90px;
}
.information:has(.data-page) .footer-grid {
  border-top: 0;
  padding-top: 0;
  min-height: 175px;
}
.information .glow {
  display: none;
}
.error-content {
  padding-top: 162px;
  min-height: 712px;
  position: relative;
}
.error-ghost {
  position: absolute;
  left: 578px;
  top: 92px;
  font-size: 300px;
  line-height: 300px;
  font-weight: 800;
  letter-spacing: -0.4px;
  opacity: 0.06;
}
.error-content h1 {
  font-size: 72px;
  line-height: 78px;
  margin-top: 36px;
  max-width: 620px;
}
.error-content .lead {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 26px 0 0 4px;
}
.recovery-primary {
  display: block;
  color: var(--cyan);
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  margin: 60px 0 0 4px;
  letter-spacing: -0.4px;
  width: max-content;
  max-width: calc(100% - 4px);
}
.recovery-secondary {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  margin: 27px 0 0 4px;
  width: max-content;
  max-width: calc(100% - 4px);
}
.error-orbit {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 863px;
  top: 147px;
  background: url("../website/error-orbit-desktop.png") center / contain
    no-repeat;
  pointer-events: none;
}
.error-orbit:after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  left: 118px;
  top: 113px;
  background: url("../website/error-orbit-center.svg") center / contain
    no-repeat;
}
.error-page .site-footer {
  margin-top: 0;
}
.error-page .footer-grid {
  min-height: 160px;
  padding-top: 20px;
}
.error-page .glow-one {
  left: calc(50% - 90px);
  top: 30px;
}
.error-page .glow-two,
.error-page .glow-three {
  display: none;
}
@media (min-width: 705px) and (max-width: 1099px) {
  .brand {
    width: 138.6px;
    height: 24px;
    gap: 7.2px;
  }
  .brand-symbol {
    width: 24px;
    height: 24px;
  }
  .brand-symbol img {
    width: 21.656px;
    height: 21.656px;
  }
  .brand .brand-wordmark {
    width: 107.316px;
    height: 17.94px;
  }
  .trust h2 .desktop-copy {
    display: block;
    font-size: 42px;
    line-height: 48px;
  }
  .trust h2 .compact-copy {
    display: none;
  }
  .trust-content > p.desktop-copy {
    display: block;
  }
  .trust-content > p.compact-copy {
    display: none;
  }
  .data-introduction .lead {
    position: static;
    margin-top: 30px;
    max-width: 100%;
  }
  .data-introduction {
    padding-bottom: 70px;
  }
  .data-row {
    grid-template-columns: 40px 1fr 1fr;
    gap: 20px;
  }
  .data-row .row-label {
    grid-column: 2/-1;
  }
  .data-row h2 {
    grid-column: 2;
  }
  .data-row .row-body {
    grid-column: 3;
  }
  .error-content {
    overflow: hidden;
  }
  .error-content h1.compact-copy {
    display: block;
  }
  .error-content h1.desktop-copy {
    display: none;
  }
}
@media (max-width: 704px) {
  .brand {
    width: 138.6px;
    height: 24px;
    gap: 7.2px;
  }
  .brand-symbol {
    width: 24px;
    height: 24px;
  }
  .brand-symbol img {
    width: 21.656px;
    height: 21.656px;
  }
  .brand .brand-wordmark {
    width: 107.316px;
    height: 17.94px;
  }
  .compact-menu {
    width: 44px;
    justify-content: center;
  }
  .data-introduction {
    padding: 58px 4px 0;
    min-height: 428px;
  }
  .data-introduction::after {
    display: none;
  }
  .data-introduction .ghost-word {
    display: none;
  }
  .data-introduction h1 {
    font-size: 44px;
    line-height: 50px;
    margin-top: 26px;
    max-width: 334px;
  }
  .data-introduction .lead {
    position: static;
    font-size: 18px;
    line-height: 27px;
    width: auto;
    max-width: 326px;
    margin-top: 34px;
  }
  .data-row {
    display: block;
    border: 0;
    margin-left: 58px;
    padding: 0;
    min-height: 500px;
  }
  .data-row:first-of-type {
    padding-top: 0;
  }
  .row-number {
    position: absolute;
    left: -54px;
    top: 0;
    padding: 0;
  }
  .row-label {
    padding: 0 0 12px;
    border-bottom: 1px solid var(--line);
    width: 280px;
    max-width: 100%;
  }
  .data-row h2 {
    font-size: 32px;
    line-height: 38px;
    margin-top: 29px;
    width: 280px;
    max-width: 100%;
  }
  .row-body {
    padding: 0;
    margin-top: 22px;
    font-size: 17px;
    line-height: 26px;
    max-width: 280px;
  }
  .data-row:nth-of-type(2) .row-body {
    margin-top: 28px;
  }
  .data-row:nth-of-type(4) .row-body {
    margin-top: 24px;
  }
  .information:has(.data-page) .site-footer {
    margin-top: 0;
  }
  .information:has(.data-page) .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 28px;
    padding-inline: 4px;
    min-height: 230px;
  }
  .information:has(.data-page) .footer-notice {
    order: -1;
    max-width: 326px;
  }
  .error-content {
    padding: 104px 4px 0;
    min-height: 638px;
  }
  .error-ghost {
    left: 48px;
    top: 58px;
    font-size: 150px;
    line-height: 154px;
    width: 290px;
  }
  .error-content h1 {
    font-size: 52px;
    line-height: 56px;
    margin-top: 24px;
    max-width: 334px;
  }
  .error-content .lead {
    font-size: 18px;
    line-height: 27px;
    margin: 30px 0 0;
    max-width: 326px;
  }
  .recovery-primary {
    margin: 61px 0 0;
  }
  .recovery-secondary {
    margin: 32px 0 0;
  }
  .error-orbit {
    background-image: url("../website/error-orbit-mobile.png");
    width: 100px;
    height: 100px;
    left: 226px;
    top: 318px;
  }
  .error-orbit:after {
    display: none;
  }
  .error-page .footer-grid {
    border-top: 1px solid var(--line);
    padding-top: 34px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    min-height: 170px;
    margin-inline: 28px;
    width: calc(100% - 56px);
    padding-inline: 0;
  }
  .error-page .footer-notice {
    order: -1;
    max-width: 326px;
  }
  .error-page .glow-one {
    left: 30px;
    top: 70px;
    width: 560px;
    height: 560px;
  }
}
.error-page .atmosphere {
  background-image: none;
}
.error-page .atmosphere::after {
  display: none;
}
/* Figma-approved double-size lockup, 2026-09-04. */
.brand {
  width: 369.6px;
  height: 64px;
  gap: 19.2px;
}
.brand-symbol {
  width: 64px;
  height: 64px;
}
.brand-symbol img {
  width: 57.75px;
  height: 57.75px;
}
.brand .brand-wordmark {
  width: 286.176px;
  height: 47.84px;
}
.header-content {
  height: 112px;
}
.home-introduction {
  padding-top: 61px;
  min-height: 1286px;
}
.product-spectrum {
  top: 378px;
}
.rotor-orbit {
  top: 26px;
}
.data-introduction {
  padding-top: 66px;
  min-height: 401px;
}
.data-introduction .ghost-word {
  top: 31px;
}
.data-introduction .lead {
  top: 178px;
}
.error-content {
  padding-top: 126px;
  min-height: 676px;
}
.error-ghost {
  top: 56px;
}
.error-orbit {
  top: 111px;
}
@media (min-width: 705px) and (max-width: 1099px) {
  .brand {
    width: 277.2px;
    height: 48px;
    gap: 14.4px;
  }
  .brand-symbol {
    width: 48px;
    height: 48px;
  }
  .brand-symbol img {
    width: 43.3125px;
    height: 43.3125px;
  }
  .brand .brand-wordmark {
    width: 214.632px;
    height: 35.88px;
  }
  .header-content {
    height: 100px;
  }
  .home-introduction {
    padding-top: 32px;
    min-height: 1452px;
  }
  .product-spectrum {
    top: 472px;
  }
  .data-introduction {
    padding-top: 68px;
  }
  .error-content {
    padding-top: 130px;
  }
}
@media (max-width: 704px) {
  .header-content {
    --mobile-brand-width: min(262.2px, calc(100vw - 112.8px));
  }
  .brand {
    width: var(--mobile-brand-width);
    height: calc(var(--mobile-brand-width) * 0.17316);
    gap: calc(var(--mobile-brand-width) * 0.051948);
  }
  .brand-symbol {
    width: calc(var(--mobile-brand-width) * 0.17316);
    height: calc(var(--mobile-brand-width) * 0.17316);
  }
  .brand-symbol img {
    width: calc(var(--mobile-brand-width) * 0.15625);
    height: calc(var(--mobile-brand-width) * 0.15625);
  }
  .brand .brand-wordmark {
    width: calc(var(--mobile-brand-width) * 0.774286);
    height: calc(var(--mobile-brand-width) * 0.129437);
  }
  .header-content {
    height: 100px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14.4px;
    padding: 0;
  }
  .compact-menu {
    align-self: auto;
    margin-left: -6px;
    min-height: 44px;
  }
  .compact-navigation {
    align-self: auto;
    width: 32px;
    margin-left: 0;
  }
  .compact-menu-icon {
    width: 32px;
    height: 3px;
  }
  .compact-menu-icon::before,
  .compact-menu-icon::after {
    width: 32px;
    height: 3px;
  }
  .compact-menu-icon::before {
    top: -10.5px;
  }
  .compact-menu-icon::after {
    top: 10.5px;
  }
  .home-introduction {
    padding-top: 62px;
    min-height: 0;
  }
  .product-spectrum {
    top: auto;
  }
  .data-introduction {
    padding-top: 58px;
    min-height: 428px;
  }
  .error-content {
    padding-top: 104px;
    min-height: 638px;
  }
  .error-ghost {
    top: 58px;
  }
  .error-orbit {
    top: 318px;
  }
}
@media (min-width: 1440px) {
  .data-introduction {
    min-height: 366px;
  }
  .data-row:first-of-type {
    padding-top: 84px;
    min-height: 335px;
  }
  .journey ol {
    grid-template-columns: 155px 155px 155px 175px;
  }
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .rotor-orbit {
    left: auto;
    right: 6.4%;
    width: clamp(320px, 29.2vw, 420px);
    height: clamp(320px, 29.2vw, 420px);
  }
  .rotor-orbit > img:first-child {
    width: 100%;
    height: 100%;
  }
  .rotor-orbit img:last-child {
    left: 19.05%;
    top: 19.05%;
    width: 61.9%;
    height: 61.9%;
  }
  .product-spectrum {
    left: calc(14.75vw + 365.75px);
    width: min(790px, calc(85.25vw - 438.75px));
  }
  .status-preview {
    width: calc((100% - 10px) / 3);
  }
  .status-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 260 / 610;
  }
  .journey {
    grid-template-columns: minmax(360px, 40%) 1fr;
  }
  .journey ol {
    grid-template-columns: 155fr 155fr 155fr 175fr;
  }
  .trust-content {
    grid-template-columns: 43% 41%;
    gap: 8%;
  }
  .data-introduction .lead {
    width: min(520px, calc(100% - 718px));
  }
  .data-row {
    grid-template-columns: 60px minmax(0, 24.5fr) minmax(0, 37.3fr) minmax(
        0,
        38.2fr
      );
  }
  .error-ghost {
    left: clamp(500px, 40.14vw, 578px);
    font-size: clamp(220px, calc(23.6vw - 39.6px), 300px);
    line-height: clamp(220px, calc(23.6vw - 39.6px), 300px);
  }
  .error-orbit {
    left: min(863px, calc(100% - 300px));
  }
}
@media (max-width: 359px) {
  .header-content {
    width: calc(100% - 48px);
    padding-inline: 8px;
  }
  .status-preview {
    max-width: calc(100% - 32px);
  }
  .status-preview-caution {
    margin-left: 8px;
  }
  .status-preview figcaption:after {
    width: 75px;
    left: 180px;
  }
  .status-preview-caution figcaption:after {
    width: 45px;
  }
  .ghost-word {
    max-width: 100%;
    overflow: hidden;
  }
}
.tablet-copy {
  display: none;
}
@media (min-width: 1440px) {
  .header-content nav li:nth-child(1) {
    min-width: 55px;
  }
  .header-content nav li:nth-child(2) {
    min-width: 50px;
  }
  .header-content nav li:nth-child(3) {
    min-width: 60px;
  }
  .header-content nav li:nth-child(4) {
    min-width: 55px;
  }
}
@media (min-width: 705px) and (max-width: 1099px) {
  .tablet-copy {
    display: block;
  }
  .non-tablet-copy {
    display: none !important;
  }
  .product-spectrum {
    right: 18px;
  }
  .journey ol {
    grid-template-columns: 19fr 19fr 19fr 20fr;
  }
  .home .footer-grid {
    margin-inline: 40px;
    width: calc(100% - 80px);
    padding-top: 28px;
    gap: 30px;
  }
  .home .footer-notice {
    width: 100%;
    color: var(--dim);
    letter-spacing: 0.4px;
  }
  .home .footer-grid nav:first-child a {
    min-height: 44px;
  }
}
@media (max-width: 704px) {
  .information .footer-brand {
    display: none;
  }
  .error-page .footer-grid nav:first-child li:nth-child(2):before {
    display: inline;
  }
}

.content-page {
  padding-top: 66px;
  min-height: 0;
}
.content-introduction {
  min-height: 300px;
  padding-bottom: 64px;
}
.content-introduction > p {
  margin-top: 34px;
  max-width: 680px;
  font-size: 20px;
  line-height: 30px;
}
.content-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  min-height: 300px;
  padding-block: 64px;
  border-top: 1px solid var(--line);
}
.content-row-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}
.content-row h2 {
  margin: 0;
  padding: 0;
  border: 0;
}
.content-row p {
  grid-column: 2;
  font-size: 17px;
  line-height: 27px;
}
.content-row h2 + p {
  grid-row: 1;
}
@media (max-width: 704px) {
  .content-page {
    padding-top: 58px;
    padding-inline: 4px;
  }
  .content-introduction {
    min-height: 0;
    padding-bottom: 88px;
  }
  .content-introduction > p {
    font-size: 18px;
    line-height: 27px;
  }
  .content-row {
    grid-template-columns: 30px 1fr;
    gap: 24px;
    padding-block: 32px 100px;
    min-height: 0;
  }
  .content-row-body {
    display: block;
  }
  .content-row p {
    margin-top: 24px;
  }
}

@media (max-width: 704px) {
  .journey li,
  .journey li:first-child {
    border-color: rgba(41, 209, 242, 0.35);
  }
}

@media (min-width: 705px) and (max-width: 1099px) {
  .home-introduction {
    min-height: 0;
    padding-bottom: 111px;
  }
  .product-spectrum {
    position: static;
    width: calc(100% - 10px);
    margin-top: 50px;
  }
  .decision {
    margin-top: 138px;
  }
}

.ghost-word {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.content-row > .row-number {
  position: static;
}
.content-row-body,
.data-row > * {
  min-width: 0;
}
@media (max-width: 359px) {
  .data-introduction h1,
  .content-page h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .error-content h1 {
    font-size: 44px;
    line-height: 50px;
  }
  .trust h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .error-ghost {
    font-size: 120px;
    line-height: 124px;
    width: 250px;
    left: 4px;
  }
  .error-orbit {
    left: auto;
    right: 0;
  }
}
