@charset "UTF-8";
:root {
  --bg: #101214;
  --panel: #1a1e22;
  --ink: #f3f5f6;
  --muted: #9ca6ad;
  --blue: #afd9ec;
  --line: #2d343a;
  --paper: #f0f0eb;
  --dark: #20272a;
  --font: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  color-scheme: dark;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
.symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: min(1200px, calc(100% - 104px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.muted {
  color: var(--muted);
}
.mobile-only {
  display: none;
}
.site-header {
  height: 92px;
  width: min(1320px, calc(100% - 80px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff10;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  border-radius: 10px;
  object-fit: cover;
}
.brand > span {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.2;
}
.brand b {
  font-weight: 400;
  letter-spacing: 1.8px;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--muted);
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: #bec6cc;
  margin-left: 38px;
}
.site-header nav a:hover {
  color: var(--blue);
}
.header-download {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  border-bottom: 1px solid #788a94;
  padding: 11px 0;
}
.header-download svg {
  width: 16px;
  height: 16px;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 64px;
  gap: 30px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
}
.spark {
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 13px #86b7cc66;
  border-radius: 50%;
}
h1 {
  font-size: clamp(58px, 6.3vw, 94px);
  letter-spacing: -5px;
  line-height: 1.16;
  font-weight: 600;
  margin-left: -5px;
}
h1 > span {
  color: var(--blue);
}
.hero-subtitle {
  font-size: 28px;
  letter-spacing: 0.8px;
  margin-top: 21px;
  color: #d7e0e5;
}
.hero-description {
  font-size: 14px;
  color: var(--muted);
  margin-top: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}
.button {
  min-height: 48px;
  padding: 0 21px;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    transform 0.15s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: #c5e3ef;
  color: #142731;
}
.button.primary:hover {
  background: #e0f2fa;
}
.button.secondary {
  border-color: #515b63;
  color: #e1e7ea;
  background: transparent;
}
.button.secondary:hover {
  background: #ffffff0a;
}
.small-arrow {
  width: 16px;
  height: 16px;
  margin-left: 7px;
}
.hero-platforms {
  font-size: 10px;
  color: #a3aeb5;
  margin-top: 17px;
  letter-spacing: 0.3px;
}
.hero-platforms > span:first-child {
  margin: 0 8px;
  color: #66737a;
}
.hero-aside {
  width: 190px;
  align-self: center;
  padding-top: 17px;
}
.aside-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: #94bacb;
  margin-bottom: 23px;
}
.hero-aside p {
  font-size: 18px;
  color: #b9c5cc;
  line-height: 1.85;
  letter-spacing: 2px;
  font-weight: 400;
}
.hero-aside em {
  color: #d9eaf2;
  font-style: normal;
}
.hero-aside small {
  display: block;
  font-size: 10px;
  color: #8b99a2;
  margin-top: 21px;
}
.canvas-section {
  scroll-margin-top: 28px;
}
.canvas-window {
  border: 1px solid #4b5e6a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 90px #0004,
    0 0 70px #77b4dc09;
}
.window-bar {
  height: 46px;
  background: #1e252b;
  border-bottom: 1px solid #41505a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #b8c5ce;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68737c;
}
.window-dots i:nth-child(2) {
  background: #53616c;
}
.window-dots i:nth-child(3) {
  background: #45555f;
}
.demo-label {
  font-size: 9px;
  color: #8699a6;
}
.canvas-scene {
  position: relative;
  background-color: #121c25;
  background-image:
    radial-gradient(ellipse at 70% 80%, #36556a44, transparent 65%),
    radial-gradient(#6b829640 0.65px, transparent 0.65px);
  background-size:
    auto,
    18px 18px;
  height: 463px;
  overflow: hidden;
}
.scene-tools {
  position: absolute;
  left: 16px;
  top: 38px;
  width: 39px;
  padding: 13px 0;
  border: 1px solid #4f606a80;
  border-radius: 9px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: #25313c80;
  color: #92a5b4;
  z-index: 1;
}
.scene-tools span {
  width: 16px;
  height: 1px;
  background: #435460;
}
.scene-tools svg {
  width: 17px;
  height: 17px;
}
.scene-tools svg:first-child {
  color: #e0f1f7;
}
.diagram {
  position: absolute;
  width: 1070px;
  height: 440px;
  left: calc(50% - 500px);
  top: 0;
  transform-origin: top left;
}
.connectors {
  position: absolute;
  inset: 0;
  width: 1070px;
  height: 440px;
  overflow: visible;
  stroke: url(#wire);
  stroke-width: 1.1;
  fill: none;
}
.connectors circle {
  fill: #12212c;
  stroke: #b2ccd9;
  stroke-width: 1.8;
}
.canvas-node {
  position: absolute;
  background: #222b32;
  border: 1px solid #70859488;
  border-radius: 9px;
  box-shadow: 0 8px 20px #0002;
  overflow: hidden;
}
.node-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #c2ccd4;
  padding: 11px 12px;
  border-bottom: 1px solid #8496a624;
}
.node-label svg {
  width: 12px;
  height: 12px;
}
.node-label > span {
  margin-left: auto;
  font-size: 9px;
  color: #899fae;
}
.prompt-node {
  left: 0;
  top: 95px;
  width: 220px;
}
.prompt-node h3 {
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: 0.7px;
  padding: 20px 18px 12px;
  font-weight: 500;
  color: #e5eff4;
}
.prompt-node p {
  font-size: 11px;
  color: #aabac6;
  line-height: 1.8;
  padding: 0 18px 20px;
}
.node-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ffffff12;
  padding: 10px 18px;
  font-size: 9px;
  color: #859caa;
}
.node-footer i {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #aed2e2;
}
.picture-node {
  left: 325px;
  top: 42px;
  width: 225px;
}
.node-caption {
  padding: 9px 12px;
  font-size: 10px;
  color: #afc3ce;
}
.still-life {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #96acb4, #dbe2df 70%, #a9b6b6);
}
.sun {
  position: absolute;
  background: #e9ede3;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  top: -70px;
  right: -30px;
  box-shadow: -10px 10px 70px #fff5;
}
.plinth {
  position: absolute;
  width: 210px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(#b2c2c3, #879c9f);
  left: 9px;
  bottom: -10px;
  box-shadow: 0 -3px 15px #182c3b20;
}
.vessel {
  display: block;
  position: absolute;
  width: 68px;
  height: 99px;
  background: linear-gradient(
    100deg,
    #638a95,
    #bed7d9 33%,
    #a8cdd0 60%,
    #547c86
  );
  border-radius: 14px 14px 8px 8px;
  left: 79px;
  top: 39px;
  box-shadow:
    13px 18px 19px #182c3b3f,
    inset 1px 0 2px #fff9;
}
.vessel:before {
  content: "";
  position: absolute;
  width: 44px;
  height: 18px;
  top: -16px;
  left: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(100deg, #1c3137, #547581 60%, #253c43);
  box-shadow: 0 2px 2px #0e272655;
}
.vessel:after {
  content: "";
  position: absolute;
  inset: 6px 6px auto;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(160deg, #fff5, transparent 60%);
}
.vessel b {
  font-family: Georgia, serif;
  text-align: center;
  position: absolute;
  top: 40%;
  width: 100%;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  color: #213f45;
}
.vessel small {
  font-family: var(--font);
  font-size: 3px;
  letter-spacing: 1px;
  line-height: 3;
}
.voice-node {
  left: 325px;
  top: 292px;
  width: 225px;
}
.waveform {
  display: flex;
  height: 59px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #86b6cc;
}
.waveform i {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
}
.waveform i:nth-child(3n) {
  height: 29px;
}
.waveform i:nth-child(4n) {
  height: 19px;
}
.waveform i:nth-child(5n) {
  height: 37px;
}
.waveform i:nth-child(7n) {
  height: 24px;
}
.movie-node {
  left: 651px;
  top: 34px;
  width: 235px;
  border-color: #b3d4eaaa;
}
.movie-art {
  height: 334px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 40%, #b5cdcc44, transparent 60%),
    linear-gradient(135deg, #385561, #8aadb7 48%, #c2d2cc);
}
.movie-art:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  top: -215px;
  left: 40px;
  border-radius: 50%;
  border: 45px solid #e0ece850;
  box-shadow: 0 0 100px #9dafba33;
}
.movie-art .orb {
  position: absolute;
  width: 260px;
  height: 160px;
  bottom: -60px;
  left: -10px;
  border-radius: 100%;
  background: linear-gradient(#a8c1c4, #5d808a);
  box-shadow: 0 -4px 50px #24435255;
}
.movie-art .vessel {
  transform: scale(1.5) rotate(-7deg);
  top: 118px;
  left: 95px;
  z-index: 1;
}
.movie-copy {
  position: absolute;
  left: 17px;
  top: 20px;
  font-size: 24px;
  line-height: 1.4;
  color: #eff4f0;
  letter-spacing: 3px;
  z-index: 2;
}
.play-mark {
  position: absolute;
  bottom: 17px;
  left: 18px;
  font-size: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid #fff7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  padding-left: 2px;
}
.final-node {
  position: absolute;
  left: 948px;
  top: 197px;
  color: #afc9d8;
}
.final-node > span {
  display: grid;
  place-items: center;
  border: 1px solid #708b9b;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 24px;
  background: #243646;
}
.final-node p {
  font-size: 10px;
  margin-top: 10px;
  line-height: 1.9;
  color: #8199a9;
}
.final-node strong {
  font-weight: 400;
  color: #b1c8d4;
}
.canvas-bottom {
  position: absolute;
  bottom: 15px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: #819aab;
}
.canvas-bottom i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #9cb9c7;
  border-radius: 50%;
  margin-right: 7px;
}
.canvas-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 80px;
  gap: 20px;
}
.canvas-caption h2 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.canvas-caption p {
  font-size: 11px;
  color: var(--muted);
}
.belief-section {
  background: var(--paper);
  color: var(--dark);
  padding: 97px 0 51px;
}
.dark-eyebrow {
  color: #6d787d;
}
.section-heading h2 {
  font-size: 47px;
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1.35;
}
.section-heading h2 span {
  color: #79878d;
}
.section-copy {
  font-size: 14px;
  line-height: 1.9;
  color: #637178;
  margin-top: 26px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 58px;
}
.values article {
  border-top: 1px solid #b4bfc2;
  padding-top: 23px;
}
.value-index {
  color: #78868c;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.values h3 {
  font-size: 25px;
  font-weight: 500;
  margin-top: 23px;
  letter-spacing: -0.5px;
}
.values p {
  font-size: 13px;
  line-height: 1.9;
  color: #626f76;
  margin-top: 16px;
  max-width: 300px;
  min-height: 77px;
}
.value-tail {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #54656d;
  margin-top: 31px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d1d7d7;
}
.value-tail > span {
  font-size: 18px;
}
.belief-footnote {
  font-size: 10px;
  color: #738087;
  margin-top: 36px;
}
.workflow-section {
  padding: 104px 0 95px;
}
.workflow-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.workflow-heading h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.35;
}
.workflow-heading > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  padding-bottom: 6px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}
.workflow-graphic {
  height: 225px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background: #242c33;
}
.graphic-commerce {
  background:
    radial-gradient(ellipse at 70% 30%, #71888b44, transparent), #26343b;
}
.mini-panel {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 22px;
  top: 53px;
  width: 116px;
  height: 106px;
  border: 1px solid #8eafb077;
  border-radius: 7px;
  background: #31434b;
  gap: 10px;
  padding: 14px;
}
.mini-panel svg {
  width: 14px;
  height: 14px;
  color: #a5c7d1;
}
.mini-panel i {
  width: 80%;
  height: 2px;
  background: #89a9b266;
}
.mini-panel i:last-child {
  width: 50%;
}
.mini-product {
  position: absolute;
  width: 125px;
  height: 152px;
  right: 24px;
  top: 31px;
  background: linear-gradient(140deg, #bfd6d0, #7b9aa3);
  border-radius: 7px;
  border: 1px solid #b9cfd466;
}
.mini-product .vessel {
  transform: scale(0.8);
  top: 40px;
  left: 29px;
}
.mini-wire {
  position: absolute;
  border-top: 1px solid #bed3d888;
  width: 110px;
  top: 108px;
  left: 130px;
}
.graphic-tag {
  position: absolute;
  bottom: 17px;
  left: 21px;
  color: #bacfd8;
  font-size: 10px;
  letter-spacing: 1px;
}
.graphic-media {
  background: linear-gradient(135deg, #28323e, #303f4a);
}
.filmstrip {
  display: flex;
  width: 100%;
  gap: 12px;
  transform: rotate(-9deg);
  padding: 43px 25px;
}
.filmstrip > span {
  width: 30%;
  height: 117px;
  border-radius: 6px;
  border: 1px solid #9baeba66;
  color: #c6d5de;
  font-size: 10px;
  padding: 9px;
  background: linear-gradient(120deg, #527284, #89a7b1);
  position: relative;
  overflow: hidden;
}
.filmstrip > span:nth-child(2) {
  background: linear-gradient(120deg, #7c99a7, #d5dfdf);
}
.filmstrip > span:nth-child(3) {
  background: linear-gradient(120deg, #5b717e, #7b9e9d);
}
.filmstrip i {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 17px solid #e2eff333;
  border-radius: 50%;
  top: 40px;
  left: -20px;
}
.graphic-method {
  background:
    radial-gradient(ellipse at 50% 0, #42606b44, transparent 70%), #202a31;
}
.method-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 23px;
  gap: 5px;
}
.method-steps b {
  font-weight: 400;
  font-size: 11px;
  border: 1px solid #7498a955;
  border-radius: 5px;
  padding: 9px 0;
  width: 180px;
  text-align: center;
  color: #afcbd7;
  background: #273944;
}
.method-steps > span {
  font-size: 12px;
  color: #76929e;
}
.method-steps b:last-child {
  border-color: #b8d9e5aa;
  color: #e1f0f5;
  background: #3a5360;
}
.method-steps b i {
  font-style: normal;
  margin-left: 14px;
}
.workflow-info {
  position: relative;
  padding: 24px 0 0 30px;
}
.workflow-info > span {
  position: absolute;
  left: 0;
  top: 30px;
  font-size: 10px;
  color: #7994a3;
}
.workflow-info h3 {
  font-size: 20px;
  font-weight: 500;
}
.workflow-info p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 12px;
}
.download-section {
  padding: 79px 0 60px;
  background:
    radial-gradient(ellipse at 80% 80%, #233f5060, transparent 65%), #171c20;
  border-top: 1px solid #4d627833;
  border-bottom: 1px solid #4d627833;
}
.download-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 38px;
}
.download-heading h2 {
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.35;
}
.release-state {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.release-badge {
  font-size: 11px;
  color: #c5dce6;
  display: flex;
  align-items: center;
  gap: 9px;
}
.release-badge:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #8fb9c9;
  border-radius: 50%;
}
.text-button {
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #aebfc9;
  padding: 8px 0;
}
.text-button svg {
  width: 14px;
  height: 14px;
}
.text-button:hover {
  color: #e3f4fc;
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.download-card {
  position: relative;
  padding: 32px;
  border: 1px solid #46545e;
  border-radius: 10px;
  background: #ffffff02;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.platform-icon {
  position: absolute;
  right: 34px;
  top: 36px;
  width: 34px;
  height: 34px;
  color: #bfd8e5;
}
.download-card h3 {
  font-size: 25px;
  font-weight: 500;
}
.download-card > p {
  font-size: 12px;
  margin-top: 7px;
  color: #a5b4be;
}
.download-card .button {
  width: 100%;
  margin-top: 27px;
}
.download-card .artifact-meta {
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin-top: 16px;
  color: #b9c7cf;
}
.download-card p.platform-note {
  font-size: 10px;
  color: #95a5af;
  margin-top: 5px;
}
.button[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.download-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.download-foot p {
  font-size: 10px;
  color: #a0adb6;
  line-height: 1.8;
}
.faq-section {
  padding: 92px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}
.faq-section h2 {
  font-size: 29px;
  font-weight: 500;
}
.faq-section > div > p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 21px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 19px;
  color: #b0c8d5;
  transition: transform 0.15s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  padding: 17px 26px 0 0;
}
footer {
  padding: 0 0 26px;
}
.footer-top {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top p {
  color: #c0cbd2;
  font-size: 13px;
}
.footer-top > a:last-child {
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 0.4px;
  color: #80919c;
  padding-top: 20px;
}
.footer-bottom span:nth-child(2) {
  margin-left: auto;
}
.footer-bottom span:last-child {
  margin-left: 24px;
}
dialog {
  color: var(--ink);
  background: #20262b;
  border: 1px solid #607481;
  border-radius: 14px;
  width: min(680px, calc(100% - 32px));
  max-height: 80dvh;
  padding: 0;
  box-shadow: 0 25px 100px #0008;
}
dialog::backdrop {
  background: #0009;
  backdrop-filter: blur(6px);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #20262b;
}
.dialog-header h2 {
  font-size: 19px;
}
.dialog-header button {
  width: 32px;
  height: 32px;
  font-size: 25px;
  background: none;
  border: 0;
}
.dialog-body {
  padding: 25px;
}
.dialog-body p {
  font-size: 12px;
  color: #aebec9;
  line-height: 1.8;
}
.dialog-body pre {
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.9;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 20px 0 28px;
}
.dialog-body h3 {
  font-size: 14px;
  margin-bottom: 7px;
}
.hash-row {
  padding: 15px 0;
  overflow-wrap: anywhere;
}
.hash-row code {
  display: block;
  color: #9eb3c2;
  font-size: 10px;
  line-height: 1.8;
  margin-top: 5px;
}
@media (min-width: 1400px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 73px;
  }
  .canvas-scene {
    height: 470px;
  }
  .hero-aside {
    width: 206px;
  }
  .hero-subtitle {
    font-size: 30px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    width: calc(100% - 56px);
  }
  .hero-aside {
    width: 155px;
  }
  .hero {
    padding-top: 60px;
  }
  .diagram {
    transform: scale(0.83);
    left: calc(50% - 414px);
    top: 4px;
  }
  .canvas-scene {
    height: 392px;
  }
  .values {
    gap: 30px;
  }
  .mini-panel {
    left: 15px;
    width: 100px;
  }
  .mini-product {
    right: 13px;
    width: 109px;
  }
  .mini-product .vessel {
    left: 20px;
  }
  .workflow-heading > p {
    max-width: 265px;
  }
  .workflow-heading h2 {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  .hero-aside {
    display: none;
  }
  .hero-main {
    width: 100%;
  }
  h1 {
    font-size: 78px;
  }
  .hero {
    padding-block: 55px;
  }
  .diagram {
    transform: scale(0.66);
    left: calc(50% - 328px);
    top: 10px;
  }
  .canvas-scene {
    height: 328px;
  }
  .scene-tools {
    left: 10px;
    width: 30px;
    gap: 15px;
  }
  .scene-tools svg {
    width: 14px;
    height: 14px;
  }
  .canvas-caption {
    display: block;
    padding-bottom: 52px;
  }
  .canvas-caption p {
    margin-top: 10px;
  }
  .belief-section {
    padding-top: 65px;
  }
  .values {
    gap: 22px;
  }
  .values h3 {
    font-size: 22px;
  }
  .values p {
    font-size: 12px;
  }
  .workflow-section {
    padding-block: 68px;
  }
  .workflow-heading {
    display: block;
  }
  .workflow-heading > p {
    margin-top: 24px;
    max-width: none;
  }
  .workflow-grid {
    gap: 16px;
  }
  .workflow-graphic {
    height: 190px;
  }
  .mini-panel {
    width: 90px;
    left: 15px;
    top: 42px;
    height: 83px;
    padding: 10px;
  }
  .mini-product {
    width: 90px;
    height: 122px;
    right: 12px;
    top: 25px;
  }
  .mini-product .vessel {
    transform: scale(0.65);
    left: 12px;
    top: 25px;
  }
  .filmstrip {
    padding: 40px 10px;
    gap: 8px;
  }
  .filmstrip > span {
    height: 91px;
  }
  .method-steps b {
    width: 140px;
    padding-block: 7px;
  }
  .method-steps {
    padding-top: 22px;
  }
  .workflow-info {
    padding-left: 0;
  }
  .workflow-info > span {
    display: none;
  }
  .workflow-info h3 {
    font-size: 18px;
  }
  .download-card {
    padding: 26px;
  }
  .platform-icon {
    right: 25px;
    top: 29px;
  }
  .faq-section {
    gap: 35px;
  }
  .site-header nav {
    gap: 20px;
    margin: 0;
  }
  .footer-top p {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    width: calc(100% - 36px);
    height: 75px;
    gap: 16px;
  }
  .brand img {
    width: 31px;
    height: 31px;
    border-radius: 8px;
  }
  .brand > span {
    font-size: 15px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 4px;
  }
  .site-header nav {
    display: none;
  }
  .header-download {
    font-size: 11px;
    gap: 8px;
    padding: 8px 0;
  }
  .header-download svg {
    width: 14px;
    height: 14px;
  }
  .hero {
    padding: 53px 0 36px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(40px, 11vw, 64px);
    letter-spacing: -2.7px;
    margin-left: -2px;
  }
  .hero-subtitle {
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 18px;
    line-height: 1.7;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 12px;
    max-width: 320px;
  }
  .hero-actions {
    gap: 9px;
    margin-top: 26px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 0 12px;
    gap: 7px;
    min-height: 44px;
  }
  .hero-actions svg {
    width: 15px;
    height: 15px;
  }
  .hero-actions .small-arrow {
    display: none;
  }
  .hero-platforms {
    font-size: 9px;
    line-height: 1.8;
    margin-top: 14px;
  }
  .window-bar {
    height: 34px;
    padding: 0 10px;
    font-size: 8px;
  }
  .window-dots {
    gap: 3px;
  }
  .window-dots i {
    width: 4px;
    height: 4px;
  }
  .demo-label {
    font-size: 7px;
  }
  .canvas-window {
    border-radius: 9px;
  }
  .canvas-scene {
    height: 255px;
  }
  .diagram {
    transform: scale(0.46);
    left: calc(50% - 243px);
    top: 13px;
  }
  .prompt-node {
    left: 55px;
    top: 40px;
    width: 205px;
  }
  .connectors {
    transform: translateX(40px);
    width: 950px;
  }
  .picture-node {
    left: 345px;
    top: 0;
  }
  .voice-node {
    left: 345px;
    top: 272px;
  }
  .movie-node {
    left: 640px;
    top: 33px;
    width: 215px;
  }
  .final-node {
    display: none;
  }
  .scene-tools {
    display: none;
  }
  .canvas-bottom {
    left: 11px;
    right: 11px;
    bottom: 11px;
    font-size: 7px;
    letter-spacing: 0;
  }
  .canvas-bottom > span:last-child {
    display: none;
  }
  .canvas-caption {
    padding: 20px 0 40px;
  }
  .canvas-caption h2 {
    font-size: 17px;
    line-height: 1.6;
  }
  .canvas-caption p {
    font-size: 10px;
    line-height: 1.8;
    margin-top: 6px;
  }
  .belief-section {
    padding: 52px 0 33px;
  }
  .section-heading h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .section-copy {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 20px;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: initial;
  }
  .values {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 35px;
  }
  .values article {
    padding-top: 18px;
    position: relative;
  }
  .value-index {
    font-size: 9px;
  }
  .values h3 {
    font-size: 25px;
    margin-top: 14px;
  }
  .values p {
    font-size: 12px;
    min-height: 0;
    max-width: 100%;
    margin-top: 12px;
  }
  .value-tail {
    margin-top: 16px;
    padding-bottom: 0;
    border: 0;
    font-size: 10px;
  }
  .belief-footnote {
    font-size: 9px;
    line-height: 1.8;
    margin-top: 30px;
  }
  .workflow-section {
    padding-block: 51px;
  }
  .workflow-heading h2 {
    font-size: 30px;
    letter-spacing: -0.7px;
  }
  .workflow-heading > p {
    font-size: 11px;
    line-height: 1.9;
    margin-top: 18px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 30px;
  }
  .workflow-graphic {
    height: 215px;
  }
  .mini-panel {
    top: 44px;
    left: 35px;
    width: 130px;
    height: 100px;
    padding: 15px;
  }
  .mini-product {
    right: 38px;
    top: 26px;
    width: 140px;
    height: 154px;
  }
  .mini-product .vessel {
    left: 37px;
    top: 42px;
    transform: scale(0.83);
  }
  .mini-wire {
    top: 97px;
    left: 158px;
  }
  .filmstrip {
    padding: 35px 27px;
    gap: 16px;
  }
  .filmstrip > span {
    height: 130px;
  }
  .method-steps {
    padding-top: 25px;
  }
  .method-steps b {
    width: 200px;
    padding: 9px;
  }
  .workflow-info {
    padding-top: 17px;
  }
  .workflow-info h3 {
    font-size: 20px;
  }
  .workflow-info p {
    font-size: 12px;
    margin-top: 8px;
  }
  .download-section {
    padding: 51px 0 37px;
  }
  .download-heading {
    display: block;
    margin-bottom: 24px;
  }
  .download-heading h2 {
    font-size: 32px;
  }
  .release-state {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    gap: 10px;
  }
  .release-badge {
    font-size: 10px;
  }
  .text-button {
    font-size: 10px;
  }
  .download-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .download-card {
    padding: 24px;
  }
  .download-card h3 {
    font-size: 24px;
  }
  .platform-icon {
    width: 28px;
    height: 28px;
  }
  .download-card .button {
    margin-top: 22px;
  }
  .download-foot {
    align-items: flex-start;
    gap: 12px;
  }
  .download-foot p {
    font-size: 9px;
  }
  .download-foot > button {
    white-space: nowrap;
    padding-top: 0;
  }
  .faq-section {
    padding: 50px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 26px;
  }
  .faq-section > div > p:last-child {
    margin-top: 14px;
    font-size: 11px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-top p {
    order: 3;
    width: 100%;
    font-size: 13px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
    line-height: 1.8;
    padding-top: 8px;
  }
  .footer-bottom span:last-child {
    width: 100%;
    margin: 0;
  }
  .dialog-header {
    padding: 17px;
  }
  .dialog-header h2 {
    font-size: 17px;
  }
  .dialog-body {
    padding: 17px;
  }
}
@media (max-width: 640px) {
  .diagram {
    transform: scale(0.36);
    left: calc(50% - 160px);
    top: 18px;
  }
  .canvas-scene {
    height: 195px;
  }
  .prompt-node {
    left: 0;
    top: 95px;
    width: 220px;
  }
  .connectors {
    transform: none;
    width: 1070px;
  }
  .picture-node {
    left: 325px;
    top: 42px;
  }
  .voice-node {
    left: 325px;
    top: 292px;
  }
  .movie-node {
    left: 651px;
    top: 34px;
    width: 235px;
  }
}
@media (max-width: 380px) {
  .hero-actions .button {
    font-size: 10px;
    padding: 0 9px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .diagram {
    transform: scale(0.3);
    left: calc(50% - 134px);
  }
  .canvas-scene {
    height: 170px;
  }
  .mini-panel {
    left: 22px;
    width: 110px;
  }
  .mini-product {
    right: 24px;
    width: 125px;
  }
  .mini-product .vessel {
    left: 30px;
  }
  .release-badge {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
[hidden] {
  display: none !important;
}
.hero-retry {
  margin-left: 10px;
  padding: 0;
  vertical-align: baseline;
}
.noscript-message {
  margin: 22px auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}
#main:focus {
  outline: none;
}
.button[aria-disabled="true"] {
  cursor: not-allowed;
}
.dialog-body pre {
  font-size: 14px;
}
.hash-row code {
  font-size: 12px;
}
