:root {
  --bg: #f5f7fc;
  --surface: #fff;
  --primary: #285cf4;
  --primary-hover: #1949d8;
  --ink: #11192e;
  --muted: #61708b;
  --line: #dfe5f1;
  --soft-blue: #eef3ff;
  --cyan: #30beda;
  --scroll-thumb: #b4bfd4;
  --scroll-track: #f5f7fc;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
  --radius-control: 999px;
  --radius-card: 28px;
  --radius-panel: 36px;
  --hero-inset: 12px;
}
* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
body.modal-open,
body.has-dialog {
  overflow: hidden;
}
::selection {
  background: #d8e4ff;
  color: #183792;
}
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: var(--scroll-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 8px;
  border: 2px solid var(--scroll-track);
}
::-webkit-scrollbar-thumb:hover {
  background: #899abb;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #6688fc;
  outline-offset: 5px;
}
button:active,
.button:active {
  transform: translateY(1px);
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
img {
  max-width: 100%;
  display: block;
}
.symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  background: white;
  padding: 12px;
  z-index: 30;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: fixed;
  top: calc(18px + var(--hero-inset));
  z-index: 10;
  left: 0;
  right: 0;
  pointer-events: none;
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  padding-inline: 23px;
  border-radius: var(--radius-control);
  background: #f8fbfff0;
  border: 1px solid #ffffffc9;
  box-shadow:
    0 12px 42px #061d3830,
    inset 0 1px 0 #ffffff;
  backdrop-filter: blur(22px);
  pointer-events: auto;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.5px;
}
.brand img {
  border-radius: 13px;
  object-fit: contain;
  width: 42px;
  height: 42px;
}
.brand-ai {
  margin-left: 3px;
}
.brand small {
  display: block;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 3px;
}
nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: 40px;
}
nav a {
  font-size: 13px;
  color: #41516f;
  line-height: 42px;
}
nav a:hover {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.home-support-label {
  border: 0;
  background: transparent;
  min-height: 44px;
  font-size: 10px;
  color: #6a7790;
  white-space: nowrap;
  padding: 0;
  border-radius: 4px;
}
.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 7px 20px #285cf432,
    inset 0 1px 0 #ffffff20;
}
.button-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 10px 24px #285cf447;
}
.button-secondary {
  background: #ffffffc9;
  border-color: #d6deed;
  color: #344462;
  box-shadow: 0 3px 9px #1d346206;
}
.button-secondary:hover {
  background: #fff;
  border-color: #aac0f4;
  box-shadow: 0 5px 20px #3563c418;
}
.button-small {
  height: 39px;
  font-size: 12px;
  padding-inline: 17px;
  gap: 10px;
  border-radius: var(--radius-control);
}
.icon-button {
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-control);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--muted);
}
.icon-button:hover {
  background: var(--soft-blue);
  color: var(--primary);
}
.icon-button svg {
  width: 16px;
  height: 16px;
}
.menu-toggle {
  display: none;
}
#main {
  padding-top: var(--hero-inset);
}
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: calc(100% - 2 * var(--hero-inset));
  margin-inline: auto;
  height: max(740px, calc(100svh - 2 * var(--hero-inset)));
  color: #fff;
  background: #0b293f;
  border-radius: 56px;
  overflow: hidden;
}
.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-backdrop {
  z-index: -3;
  overflow: hidden;
}
.hero-backdrop:focus-visible {
  outline-offset: -6px;
}
.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}
#hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 0%;
}
.scene-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.scene-motion[hidden] {
  display: none;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  --portal-x: 62%;
  --portal-y: 35%;
  --portal-width: 35%;
  --portal-height: 50%;
  transform-origin: var(--portal-x) var(--portal-y);
  animation: hero-breathe 12s linear -2s infinite alternate paused;
}
.portal-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}
.hero[data-scene="future"] .portal-effects {
  visibility: visible;
}
.portal-glow,
.portal-dust {
  position: absolute;
  left: var(--portal-x);
  top: var(--portal-y);
  width: var(--portal-width);
  height: var(--portal-height);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.portal-glow {
  background: radial-gradient(
    ellipse,
    #ebfaff80 0%,
    #80c9ff66 24%,
    #b1a1ff28 52%,
    transparent 72%
  );
  mix-blend-mode: screen;
  opacity: 0.1;
  animation: portal-breathe 4s ease-in-out -1s infinite alternate paused;
}
.portal-dust i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e4f6ff;
  box-shadow: 0 0 6px #8ad8ff;
  opacity: 0;
  animation: portal-drift 7s linear infinite paused;
  animation-delay: var(--delay);
}
body.hero-motion-running .hero-visual,
body.hero-motion-running .hero[data-scene="future"] .portal-glow,
body.hero-motion-running .hero[data-scene="future"] .portal-dust i {
  animation-play-state: running;
}
@keyframes hero-breathe {
  from {
    transform: scale(1.025) translate(-0.6%, -0.2%);
  }
  to {
    transform: scale(1.09) translate(0.6%, 0.3%);
  }
}
@keyframes portal-breathe {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 0.22;
  }
}
@keyframes portal-drift {
  0%,
  100% {
    transform: translate(0, 8px);
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.4;
  }
  90% {
    transform: translate(12px, -28px);
    opacity: 0;
  }
}
.hero-shade {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #071a31c9 0%,
      #071a3196 28%,
      #071a312b 49%,
      transparent 68%
    ),
    linear-gradient(0deg, #071a31e8, transparent 30%);
}
.hero-content {
  padding-block: 145px 154px;
}
.hero-copy {
  width: min(570px, 47%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    11px/1.5 "Consolas",
    "Microsoft YaHei",
    monospace;
  letter-spacing: 1px;
  color: #e7f4ff;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ff5ff;
  box-shadow: 0 0 14px #89efff;
}
.eyebrow-divider {
  width: 1px;
  height: 12px;
  background: #ffffff66;
  margin-inline: 3px;
}
h1 {
  font-size: clamp(47px, 4.35vw, 78px);
  line-height: 1.25;
  letter-spacing: -2px;
  margin: 28px 0 25px;
  font-weight: 750;
  text-shadow: 0 3px 24px #05193233;
}
h1 em {
  font-style: normal;
  display: inline-block;
  white-space: nowrap;
  color: #fff;
}
.hero-description {
  font-size: 14px;
  line-height: 2;
  color: #e1edf9;
  margin: 0 0 34px;
  text-shadow: 0 1px 10px #071a314d;
}
.hero-actions {
  display: flex;
  gap: 13px;
}
.hero-actions .button {
  height: 52px;
  padding-inline: 27px;
  border-radius: var(--radius-control);
}
.hero-actions .button-primary {
  background: #fff;
  color: #173957;
  box-shadow: 0 6px 30px #06172b26;
  gap: 25px;
}
.hero-actions .button-primary:hover {
  background: #e4f4ff;
  box-shadow: 0 6px 35px #90d0ff55;
}
.hero-actions .button-secondary {
  background: #0b26454d;
  border-color: #dcefff77;
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: none;
}
.hero-actions .button-secondary:hover {
  background: #ffffff26;
  border-color: #fff;
}
.hero-capabilities {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e1edf9;
  font-size: 11px;
  margin-top: 23px;
}
.hero-capabilities i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff88;
}
.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 0;
}
.hero-art-info {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 8px 12px;
}
.visual-label {
  font-size: 10px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-control);
  padding: 5px 9px;
  color: #e1edf9;
  background: #ffffff16;
}
.hero-art-info strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}
.hero-art-info small {
  grid-column: 1 / -1;
  color: #d5e6f7;
  font-size: 11px;
}
.example-tabs {
  display: flex;
  gap: 5px;
  background: #dcecff1c;
  border: 1px solid #ffffff30;
  border-radius: var(--radius-control);
  padding: 7px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 10px 32px #04182a24,
    inset 0 1px 0 #ffffff18;
}
.example-tabs button {
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-control);
  padding: 10px 16px;
  color: #e1edf9;
  font-size: 12px;
  white-space: nowrap;
}
.example-tabs button:hover {
  background: #ffffff1f;
  color: #fff;
}
.example-tabs button[aria-selected="true"] {
  background: #fff;
  color: #234360;
}
.hero-view-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.artwork-frame,
.hero-motion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #ffffff45;
  color: #fff;
  background: #0b26454d;
  padding: 12px 16px;
  border-radius: var(--radius-control);
  font-size: 12px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.artwork-frame svg,
.hero-motion-toggle svg {
  width: 16px;
  height: 16px;
}
.artwork-frame:hover,
.hero-motion-toggle:hover:not(:disabled) {
  background: #ffffff24;
  border-color: #fff;
}
.hero-motion-toggle:disabled {
  cursor: default;
  opacity: 0.65;
}
.hero :is(button, a):focus-visible {
  outline-color: #fff;
  outline-offset: 4px;
}
@media (min-width: 1700px) {
  .hero-copy {
    width: 630px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions .button {
    height: 56px;
    padding-inline: 31px;
  }
}
@media (max-width: 1150px) {
  .hero-copy {
    width: 50%;
  }
  h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 19px;
    gap: 12px;
  }
  .hero-footer {
    gap: 12px;
    padding-top: 0;
    bottom: 38px;
  }
  .hero-art-info small {
    max-width: 230px;
  }
  .example-tabs button {
    padding-inline: 11px;
    font-size: 11px;
  }
}
@media (max-width: 850px) {
  .hero {
    height: max(740px, calc(100svh - 2 * var(--hero-inset)));
  }
  .hero-copy {
    width: 62%;
  }
  #hero-art {
    object-position: 64% 50%;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #071a31cc, #071a317d 45%, #071a311f 85%),
      linear-gradient(0deg, #071a31ed, transparent 35%);
  }
  h1 {
    font-size: clamp(40px, 5.8vw, 49px);
  }
  .hero-footer {
    flex-wrap: wrap;
    bottom: 38px;
    padding-top: 0;
  }
  .hero-art-info {
    flex: 1;
  }
  .hero-art-info small {
    display: none;
  }
  .example-tabs {
    order: 3;
    margin-top: 5px;
  }
  .example-tabs button {
    padding-inline: 18px;
  }
  .artwork-frame {
    padding: 10px 13px;
  }
}
@media (max-width: 600px) {
  :root {
    --hero-inset: 8px;
  }
  .hero {
    height: max(820px, calc(100svh - 2 * var(--hero-inset)));
    display: block;
    background: #0b293f;
    border-radius: 30px;
  }
  .hero-visual {
    height: 65%;
  }
  .hero[data-scene="future"] .hero-visual {
    height: 100%;
  }
  #hero-art {
    object-position: 62% 50%;
  }
  .hero[data-scene="future"] #hero-art {
    object-position: 50% 50%;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #0b293f 0%,
      #0b293f 34%,
      #0b293fe8 42%,
      #0b293f00 69%
    );
  }
  .hero[data-scene="future"] .hero-shade {
    background: linear-gradient(
      0deg,
      #071d32f2 0%,
      #071d32e6 28%,
      #071d3299 45%,
      #071d3200 66%
    );
  }
  .hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 146px;
    padding: 0;
  }
  .hero-copy {
    width: 100%;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.5px;
    gap: 7px;
  }
  h1 {
    font-size: clamp(36px, 8.5vw, 48px);
    margin: 17px 0 15px;
    letter-spacing: -1.3px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 22px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    height: 47px;
    font-size: 12px;
    padding-inline: 20px;
    gap: 15px;
  }
  .hero-capabilities {
    margin-top: 17px;
    gap: 15px;
    font-size: 10px;
  }
  .hero-footer {
    bottom: 28px;
    padding-top: 0;
    gap: 9px;
  }
  .hero-art-info {
    gap: 7px;
  }
  .visual-label {
    font-size: 9px;
    padding: 3px 5px;
  }
  .hero-art-info strong {
    font-size: 13px;
    letter-spacing: 1px;
  }
  .artwork-frame {
    font-size: 10px;
    min-height: 44px;
    padding: 9px 10px;
    gap: 6px;
  }
  .artwork-frame svg {
    width: 14px;
    height: 14px;
  }
  .hero-motion-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .motion-label {
    display: none;
  }
  .example-tabs {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 4px;
    margin-top: 2px;
  }
  .example-tabs button {
    flex: 1;
    min-height: 44px;
    font-size: 11px;
    padding: 10px 5px;
  }
}
@media (max-width: 360px) {
  .hero-actions .button {
    padding-inline: 15px;
    font-size: 11px;
    gap: 9px;
  }
  .hero-description {
    font-size: 11px;
  }
  .eyebrow {
    font-size: 9px;
    gap: 6px;
  }
}
@media (forced-colors: active) {
  .hero-backdrop,
  .hero-shade {
    display: none;
  }
  .hero,
  .hero h1 em {
    color: CanvasText;
    background: Canvas;
  }
  .example-tabs button,
  .artwork-frame {
    border: 1px solid ButtonText;
  }
}
.tools-section {
  padding-top: 36px;
}
.section-overline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.section-overline h2 {
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 500;
  color: #50617f;
}
.section-overline > span {
  font:
    8px "Consolas",
    monospace;
  letter-spacing: 1.5px;
  color: #5c6e89;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  gap: 12px;
}
.tool-entry {
  padding: 23px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 0;
  position: relative;
  text-align: left;
  transition: background 0.2s;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px #27446e06;
  min-width: 0;
}
.tool-entry:hover {
  background: #f0f5ff;
}
.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #eef3ff;
  border-radius: var(--radius-control);
  color: var(--primary);
  flex-shrink: 0;
}
.tool-icon svg {
  width: 20px;
  height: 20px;
}
.tool-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.tool-copy small {
  display: block;
  font-size: 10px;
  color: #5c6e89;
  margin-top: 6px;
}
.tool-entry > svg {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: #97a7c5;
}
.showcase {
  padding-block: 80px 67px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 29px;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7589aa;
  font:
    9px "Consolas",
    "Microsoft YaHei",
    monospace;
  letter-spacing: 1.5px;
  margin: 0 0 18px;
}
.section-kicker > span {
  width: 14px;
  height: 2px;
  background: var(--primary);
}
h2 {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -1px;
  line-height: 1.5;
  margin: 0;
}
.section-note {
  font-size: 12px;
  color: #5c6e89;
  line-height: 1.9;
  margin: 0 0 4px;
}
.mobile-break {
  display: none;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 206px 206px;
  gap: 17px;
}
.work-card {
  padding: 0;
  background: #c6d9e8;
  border: 0;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
}
.work-feature {
  grid-row: 1/3;
}
.work-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.work-card:hover img {
  transform: scale(1.04);
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #11213aac);
  z-index: 0;
  pointer-events: none;
}
.work-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: var(--radius-control);
  padding: 7px 12px;
  background: #ffffffdf;
  color: #3d5874;
  font-size: 10px;
  backdrop-filter: blur(4px);
}
.work-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 35px;
  color: #fff;
  z-index: 1;
}
.work-caption small {
  font:
    8px "Consolas",
    monospace;
  letter-spacing: 2px;
  color: #e0eaff;
}
.work-caption h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px 0 0;
  line-height: 1.4;
}
.work-caption p {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #d2dff2;
  margin: 12px 0 0;
}
.work-product .work-caption,
.work-cafe .work-caption {
  bottom: 18px;
  left: 20px;
}
.work-product .work-caption h3,
.work-cafe .work-caption h3 {
  font-size: 19px;
  margin-top: 7px;
}
.work-product img {
  object-position: 50% 52%;
}
.work-cafe img {
  object-position: 50% 51%;
}
.work-open {
  position: absolute;
  bottom: 22px;
  right: 20px;
  z-index: 2;
  color: white;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #ffffff20;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}
.work-open svg {
  width: 15px;
  height: 15px;
}
.section-disclosure {
  font-size: 10px;
  color: #5c6e89;
  line-height: 1.8;
  margin: 13px 0 0;
}
.workflow-section {
  background: transparent;
}
.workflow-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 50px;
  padding-block: 55px;
}
.workflow-intro h2 {
  font-size: 35px;
  line-height: 1.55;
}
.workflow-intro > p:not(.section-kicker) {
  color: #7888a2;
  font-size: 12px;
  line-height: 2;
  margin: 20px 0 25px;
}
.workflow-intro .button {
  height: 43px;
  font-size: 12px;
  padding-inline: 18px;
  gap: 15px;
}
.workflow-map {
  height: 310px;
  position: relative;
  background-image: radial-gradient(#b9cbea80 1px, transparent 1px);
  background-size: 18px 18px;
  background-color: #f6f9ff;
  border: 1px solid #e3eaf6;
  border-radius: var(--radius-panel);
  overflow: hidden;
  border-color: #e3eaf680;
}
.map-lines {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  stroke: #96b2ed;
  stroke-width: 1.6;
  stroke-dasharray: 5 4;
}
.map-source {
  position: absolute;
  left: 20px;
  top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #cbdaf4;
  border-radius: 16px;
  box-shadow: 0 5px 15px #3e60960b;
}
.map-source > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #ebf2ff;
  color: var(--primary);
}
.map-source svg {
  width: 17px;
  height: 17px;
}
.map-source strong {
  font-size: 11px;
  font-weight: 500;
  margin-top: 9px;
}
.map-source small {
  font-size: 10px;
  color: #8b9bb6;
  margin-top: 6px;
}
.map-image {
  position: absolute;
  left: 36%;
  top: 27px;
  width: 34%;
  height: 125px;
  background: #fff;
  padding: 5px;
  border: 1px solid #cbd8eb;
  border-radius: 16px;
  box-shadow: 0 8px 15px #3e609612;
}
.map-image img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 3px;
}
.map-image span {
  font-size: 10px;
  color: #6d809c;
  display: block;
  padding: 7px 3px;
}
.map-script {
  position: absolute;
  left: 38%;
  top: 181px;
  width: 30%;
  padding: 12px;
  background: #fff;
  border: 1px solid #d3def2;
  border-radius: 16px;
  box-shadow: 0 8px 15px #3e609612;
}
.map-script > span {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 10px;
  color: #57749d;
}
.map-script svg {
  width: 13px;
  height: 13px;
}
.map-script p {
  font-size: 10px;
  color: #5c6e89;
  line-height: 1.7;
  margin: 9px 0 0;
}
.map-destination {
  position: absolute;
  right: 17px;
  top: 124px;
  border: 1px solid #b9cef9;
  border-radius: 16px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 14px 12px;
  color: #3c6ed7;
  gap: 9px;
  box-shadow: 0 5px 15px #3e609610;
}
.map-destination strong {
  font-size: 10px;
  font-weight: 500;
}
.map-destination > svg:last-child {
  width: 14px;
  height: 14px;
}
.map-destination:hover {
  background: #dfe9ff;
}
.map-label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font:
    8px "Consolas",
    "Microsoft YaHei",
    monospace;
  letter-spacing: 0.6px;
  color: #5c6e89;
}
.closing-cta {
  position: relative;
  border: 1px solid #d5def3;
  border-radius: var(--radius-panel);
  background:
    radial-gradient(ellipse at 14% 20%, #d6e7ff, transparent 65%),
    linear-gradient(115deg, #eff3ff, #f2f8ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 52px;
  margin-block: 48px;
  overflow: hidden;
  border-color: #d5def366;
}
.closing-cta .section-kicker {
  font-size: 10px;
  letter-spacing: 1.3px;
  color: #7b90b3;
  margin-bottom: 10px;
}
.closing-cta h2 {
  font-size: 29px;
}
.cta-orb {
  font-size: 97px;
  line-height: 1;
  color: #5c7eea;
  text-shadow:
    3px 2px 0 #aeccff,
    -2px -1px 0 white;
  flex-shrink: 0;
  transform: rotate(-15deg);
  margin-right: 8px;
}
.closing-cta > div:nth-child(2) {
  margin-right: auto;
}
.closing-cta .button {
  flex-shrink: 0;
}
.site-footer {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-block: 26px;
}
.home-footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.home-footer-support {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 44px;
}
.brand-footer {
  font-size: 17px;
  gap: 9px;
}
.brand-footer img {
  width: 31px;
  height: 31px;
}
.site-footer > span {
  font-size: 10px;
  color: #5c6e89;
}
.site-footer > span:last-child {
  margin-left: auto;
}
dialog {
  width: min(820px, calc(100% - 36px));
  max-height: calc(100dvh - 48px);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border: 1px solid #d5dff1;
  border-radius: var(--radius-card);
  padding: 23px;
  box-shadow: 0 25px 100px #10244840;
}
dialog::backdrop {
  background: #14243878;
  backdrop-filter: blur(8px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
  font-size: 11px;
  color: var(--muted);
}
.dialog-close {
  background: #f1f4fc;
  flex-shrink: 0;
}
.dialog-title {
  font-size: 25px;
  margin: 0 0 16px;
}
.dialog-art {
  width: 100%;
  height: auto;
  max-height: 57dvh;
  object-fit: contain;
  background: var(--bg);
  border-radius: 18px;
}
.dialog-description {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 18px 0;
}
.dialog-disclosure {
  font-size: 11px;
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.9;
}
.dialog-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.dialog-actions .button {
  height: 44px;
  font-size: 12px;
  padding-inline: 18px;
  gap: 9px;
}
.dialog-tool-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.dialog-tool-list .tool-entry {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.tool-detail-symbol {
  width: 54px;
  height: 54px;
  background: var(--soft-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 20px;
  color: var(--primary);
}
.tool-detail-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.tool-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 9px 0;
}
.tool-detail-list svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--primary);
}
.status-message {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: #1a2d51;
  color: #fff;
  padding: 12px 18px;
  border-radius: 7px;
  font-size: 12px;
  box-shadow: 0 10px 30px #16385c25;
  z-index: 30;
  transition:
    opacity 0.18s,
    transform 0.18s;
  max-width: calc(100% - 40px);
  text-align: center;
}
.status-message.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .header-inner {
    gap: 22px;
  }
  nav {
    gap: 21px;
    margin-left: 10px;
  }
  .home-support-label {
  border: 0;
  background: transparent;
  min-height: 44px;
    display: none;
  }
  .tool-entry {
    padding: 21px 13px;
    gap: 8px;
  }
  .tool-copy strong {
    font-size: 12px;
  }
  .tool-copy small {
    font-size: 10px;
  }
  .tool-icon {
    width: 31px;
    height: 31px;
  }
  .tool-entry > svg {
    width: 11px;
    height: 11px;
  }
  .workflow-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }
  .workflow-intro h2 {
    font-size: 28px;
  }
  .map-source {
    left: 11px;
    padding: 11px;
  }
  .map-destination {
    right: 9px;
    padding: 13px 9px;
  }
  .map-image {
    left: 32%;
    width: 36%;
  }
  .map-script {
    left: 34%;
    width: 32%;
  }
  .map-source strong {
    font-size: 10px;
  }
  .map-source small {
    font-size: 10px;
  }
  .closing-cta {
    padding: 33px 32px;
  }
  .closing-cta h2 {
    font-size: 24px;
  }
  .cta-orb {
    font-size: 73px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    height: 66px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .brand small {
    font-size: 10px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .header-actions {
    margin-left: 0;
  }
  .header-actions .button {
    height: 36px;
    font-size: 11px;
    padding-inline: 12px;
  }
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 14px 23px;
    background: #fcfdfff7;
    box-shadow: 0 12px 20px #1c315114;
    border: 1px solid #e3e8f080;
    border-radius: 26px;
    max-height: calc(100svh - 115px);
    overflow-y: auto;
  }
  nav.is-open {
    display: flex;
  }
  nav a {
    padding: 4px 0;
  }
  .tools-section {
    padding-top: 31px;
  }
  .tool-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tool-entry {
    padding: 20px 15px;
  }
  .tool-grid > .tool-entry:last-child {
    grid-column: 2/4;
  }
  .tool-icon {
    width: 35px;
    height: 35px;
  }
  .section-overline > span {
    font-size: 10px;
  }
  .showcase {
    padding-block: 53px 42px;
  }
  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .section-header h2 {
    font-size: 29px;
  }
  .section-note {
    font-size: 11px;
  }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 230px;
    gap: 14px;
  }
  .work-feature {
    grid-column: 1/3;
    grid-row: 1;
  }
  .work-caption h3 {
    font-size: 24px;
  }
  .work-product .work-caption h3,
  .work-cafe .work-caption h3 {
    font-size: 17px;
  }
  .work-caption small {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .work-caption p {
    font-size: 10px;
  }
  .workflow-inner {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-block: 42px;
  }
  .workflow-intro h2 {
    font-size: 31px;
  }
  .workflow-intro h2 br {
    display: none;
  }
  .workflow-intro > p:not(.section-kicker) {
    font-size: 12px;
  }
  .workflow-map {
    height: 300px;
    max-width: 650px;
    width: 100%;
    border-radius: var(--radius-panel);
    border-color: #e3eaf680;
  }
  .map-source {
    left: 4%;
    top: 110px;
    padding: 13px;
  }
  .map-image {
    left: 35%;
    width: 31%;
    top: 20px;
    height: 123px;
  }
  .map-script {
    left: 37%;
    width: 28%;
    top: 176px;
  }
  .map-destination {
    right: 4%;
    top: 117px;
  }
  .closing-cta {
    padding: 30px;
    gap: 22px;
    flex-wrap: wrap;
  }
  .closing-cta h2 {
    font-size: 23px;
  }
  .closing-cta .button {
    margin-left: 86px;
    height: 45px;
    font-size: 12px;
  }
  .cta-orb {
    font-size: 62px;
    margin-right: 0;
  }
  .site-footer {
    gap: 20px;
  }
  .site-footer > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header-inner {
    height: 60px;
    gap: 8px;
    padding-inline: 11px;
  }
  .brand {
    font-size: 18px;
    gap: 7px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .brand small {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .menu-toggle {
    width: 31px;
  }
  .header-actions .button {
    font-size: 10px;
    height: 34px;
    padding-inline: 10px;
    gap: 6px;
  }
  .header-actions .button svg {
    width: 13px;
    height: 13px;
  }
  nav {
    padding-inline: 20px;
  }
  .tools-section {
    padding-top: 24px;
  }
  .section-overline {
    margin-bottom: 12px;
  }
  .section-overline h2 {
    font-size: 12px;
  }
  .section-overline > span {
    display: none;
  }
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tool-entry {
    padding: 17px 12px;
    gap: 9px;
  }
  .tool-grid > .tool-entry:last-child {
    grid-column: 1/3;
  }
  .tool-icon {
    width: 32px;
    height: 32px;
  }
  .tool-icon svg {
    width: 18px;
    height: 18px;
  }
  .tool-copy strong {
    font-size: 12px;
  }
  .tool-copy small {
    font-size: 10px;
    margin-top: 5px;
  }
  .tool-entry > svg {
    width: 12px;
    height: 12px;
  }
  .showcase {
    padding-top: 44px;
  }
  .section-kicker {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    gap: 7px;
  }
  .section-header h2 {
    font-size: 27px;
    line-height: 1.5;
  }
  .section-header {
    gap: 11px;
    margin-bottom: 21px;
  }
  .mobile-break {
    display: block;
  }
  .section-note {
    font-size: 11px;
  }
  .showcase-grid {
    grid-template-rows: 300px 192px;
    gap: 10px;
  }
  .work-caption {
    bottom: 20px;
    left: 17px;
    right: 26px;
  }
  .work-caption h3 {
    font-size: 20px;
    letter-spacing: 0.4px;
  }
  .work-caption p {
    font-size: 10px;
    line-height: 1.8;
    max-width: 220px;
  }
  .work-caption small {
    font-size: 10px;
  }
  .work-chip {
    font-size: 10px;
    left: 11px;
    top: 11px;
    padding: 7px 12px;
  }
  .work-product .work-caption,
  .work-cafe .work-caption {
    left: 12px;
    right: 13px;
    bottom: 14px;
  }
  .work-product .work-caption h3,
  .work-cafe .work-caption h3 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .work-product .work-caption small,
  .work-cafe .work-caption small {
    font-size: 6px;
    letter-spacing: 0.5px;
  }
  .work-open {
    right: 12px;
    bottom: 15px;
    width: 25px;
    height: 25px;
  }
  .work-open svg {
    width: 12px;
    height: 12px;
  }
  .work-product .work-open,
  .work-cafe .work-open {
    top: 10px;
    bottom: auto;
    right: 9px;
    width: 23px;
    height: 23px;
  }
  .work-feature img {
    object-position: 58% 50%;
  }
  .section-disclosure {
    font-size: 10px;
  }
  .workflow-inner {
    padding-block: 35px;
    gap: 27px;
  }
  .workflow-intro h2 {
    font-size: 28px;
  }
  .workflow-intro h2 br {
    display: block;
  }
  .workflow-intro > p:not(.section-kicker) {
    font-size: 11px;
    line-height: 2;
  }
  .workflow-intro .button {
    height: 42px;
    font-size: 11px;
  }
  .workflow-map {
    height: 260px;
    border-radius: var(--radius-panel);
    border-color: #e3eaf680;
  }
  .map-source {
    left: 8px;
    top: 94px;
    padding: 9px 8px;
  }
  .map-source > span {
    width: 24px;
    height: 24px;
  }
  .map-source strong {
    font-size: 10px;
  }
  .map-source small {
    font-size: 6px;
  }
  .map-image {
    left: 32%;
    top: 24px;
    width: 36%;
    height: 99px;
    padding: 4px;
  }
  .map-image img {
    height: 69px;
  }
  .map-image span {
    font-size: 10px;
    padding-top: 5px;
  }
  .map-script {
    left: 34%;
    top: 155px;
    width: 32%;
    padding: 9px;
  }
  .map-script > span {
    font-size: 10px;
  }
  .map-script p {
    font-size: 10px;
    line-height: 1.9;
    margin-top: 7px;
  }
  .map-destination {
    right: 8px;
    top: 101px;
    padding: 10px 7px;
    gap: 7px;
  }
  .map-destination strong {
    font-size: 10px;
  }
  .map-destination > svg {
    width: 19px;
    height: 19px;
  }
  .map-label {
    font-size: 10px;
    bottom: 9px;
    left: 10px;
  }
  .closing-cta {
    padding: 25px 21px;
    gap: 15px;
    border-radius: var(--radius-panel);
    margin-block: 32px;
  }
  .cta-orb {
    font-size: 57px;
  }
  .closing-cta .section-kicker {
    font-size: 6px;
    letter-spacing: 0.7px;
    margin-bottom: 9px;
  }
  .closing-cta h2 {
    font-size: 23px;
    line-height: 1.55;
  }
  .closing-cta .button {
    margin: 1px 0 0 72px;
    font-size: 11px;
    height: 42px;
    padding-inline: 16px;
  }
  .site-footer {
    padding-block: 20px;
  }
  .brand-footer {
    font-size: 15px;
  }
  .brand-footer img {
    width: 28px;
    height: 28px;
  }
  .site-footer > span:last-child {
    font-size: 10px;
  }
  dialog {
    padding: 17px;
    width: calc(100% - 26px);
    max-height: calc(100dvh - 30px);
  }
  .dialog-title {
    font-size: 21px;
  }
  .dialog-tool-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .dialog-tool-list .tool-entry {
    padding: 15px;
    border-radius: 18px;
  }
  .dialog-description {
    font-size: 12px;
  }
  .dialog-actions {
    flex-wrap: wrap;
  }
  .dialog-actions .button {
    height: 42px;
    font-size: 11px;
  }
  .dialog-disclosure {
    font-size: 10px;
    line-height: 1.8;
  }
}
@media (max-width: 360px) {
  .closing-cta {
    padding: 21px 16px;
    gap: 12px;
  }
  .closing-cta h2 {
    font-size: 20px;
  }
  .closing-cta .section-kicker {
    font-size: 5px;
  }
  .cta-orb {
    font-size: 49px;
  }
  .closing-cta .button {
    margin-left: 61px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scene-motion {
    display: none;
  }
  .portal-effects {
    display: none;
  }
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .work-card:hover img {
    transform: none;
  }
}
@media (forced-colors: active) {
  * {
    scrollbar-color: auto;
  }
  .button,
  .tool-entry {
    border: 1px solid ButtonText;
  }
  .work-chip {
    background: Canvas;
    color: CanvasText;
    padding: 7px 12px;
  }
}
