/* Home screen 05 — migrated from 模板素材/05.html */
.home05-inline {
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #0f172a;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.home05-inline *,
.home05-inline *::before,
.home05-inline *::after {
  box-sizing: border-box;
}

.home05-inline button {
  margin: 0;
  font: inherit;
}

@scope (.home05-inline) {
/* =========================================================
       01. DESIGN TOKENS
       Desktop design baseline: 1920px
       1920 × 85% = 1632px
    ========================================================= */
    :scope {
      --design-width: 1920px;
      --content-max: 1632px;

      --brand: #165daa;
      --brand-dark: #124c89;
      --brand-bright: #1774e8;
      --brand-electric: #0e6fe4;

      --text: #f8fafc;
      --text-soft: #d8e1ec;
      --text-muted: #94a5b9;
      --text-dim: #73869b;

      --white: #ffffff;

      --bg-950: #020b17;
      --bg-900: #031122;
      --bg-850: #06172b;
      --bg-800: #08203b;
      --bg-750: #0a2949;

      --line: rgba(144, 176, 210, 0.22);
      --line-strong: rgba(144, 176, 210, 0.34);

      --panel: rgba(7, 26, 49, 0.82);
      --panel-soft: rgba(10, 34, 61, 0.62);

      --body: 1rem;
      --lead: 0.9rem;
      --small: 0.82rem;
      --tiny: 0.74rem;

      --section-title:
        clamp(1.7rem, 2.45vw, 2.5rem);

      --radius-lg: 10px;
      --radius-md: 10px;
      --radius-sm: 10px;

      --shadow:
        0 20px 60px rgba(0, 0, 0, 0.16),
        0 4px 14px rgba(0, 0, 0, 0.12);

      --transition: 180ms ease;
    }

    /* =========================================================
       03. PAGE
       No top navigation
       No global header
       No footer
    ========================================================= */
  .page {
      width: 85%;
      max-width: var(--content-max);
      margin: 0 auto;

      padding:
        clamp(28px, 2.6vw, 48px)
        0
        clamp(36px, 3vw, 58px);
    }

    /* =========================================================
       04. INTRO
    ========================================================= */
    .intro {
      max-width: none;
      margin-bottom: 18px;
    }

    .intro__eyebrow {
      display: flex;
      align-items: stretch;
      gap: 14px;

      margin-bottom: 18px;

      color: var(--white);

      font-size: var(--tiny);
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.018em;
    }

    .intro__number {
      font-size: clamp(2rem, 2.55vw, 2.7rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .intro__slash {
      font-size: 1.2rem;
    }

    .intro__label {
      font-size: 0.78rem;
      letter-spacing: 0.015em;
    }

    .intro__title {
      margin: 0;

      color: var(--white);

      font-size: clamp(2.3rem, 3.05vw, 3.25rem);
      line-height: 1.08;
      letter-spacing: -0.045em;

      font-weight: 900;
    }

    .intro__title strong {
      color: var(--brand-bright);
      font-weight: inherit;
    }

    .intro__description {
      max-width: none;

      margin: 17px 0 0;

      color: var(--text-soft);

      font-size: var(--lead);
      line-height: 1.72;
    }

    /* =========================================================
       05. MAIN LAYOUT
    ========================================================= */
    .solutions {
      display: grid;
      grid-template-columns:
        minmax(0, 2.06fr)
        minmax(410px, 1fr);

      gap: 14px;
      align-items: stretch;
    }

    /* =========================================================
       06. MAIN VISUAL
    ========================================================= */
    .scene {
      position: relative;

      width: 100%;
      align-self: start;
      min-height: 0;

      overflow: hidden;

      border-radius: var(--radius-lg);

      background: #0a213a;

      border: 0;

      box-shadow:
        inset 0 0 0 1px rgba(153, 185, 218, 0.15),
        var(--shadow);
    }

    .scene__media {
      position: absolute;
      inset: 0;

      width: 100%;
      height: 100%;
    }

    .scene__media img {
      width: 100%;
      height: 100%;

      object-fit: contain;
      object-position: center center;

      user-select: none;
      pointer-events: none;
    }

    .scene::before {
      content: "";

      position: absolute;
      inset: 0;
      z-index: 1;

      pointer-events: none;

      background:
        linear-gradient(
          90deg,
          rgba(1, 12, 23, 0.18),
          transparent 28%,
          transparent 70%,
          rgba(1, 12, 23, 0.12)
        ),
        linear-gradient(
          0deg,
          rgba(1, 11, 21, 0.9) 0%,
          rgba(1, 11, 21, 0.55) 24%,
          transparent 52%
        );
    }

    .scene-caption {
      position: absolute;
      left: clamp(20px, 2.2vw, 34px);
      bottom: clamp(18px, 2vw, 30px);
      z-index: 3;

      width: fit-content;
      max-width: min(36rem, calc(100% - clamp(40px, 4.4vw, 68px)));

      color: #fff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    }

    .scene-caption__title {
      margin: 0;

      font-size: clamp(1.4rem, 2vw, 2.1rem);
      line-height: 1.15;
      font-weight: 900;
      white-space: nowrap;
    }

    .scene-caption__description {
      margin: 8px 0 0;

      width: fit-content;
      max-width: 100%;

      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(0.75rem, 0.85vw, 0.94rem);
      line-height: 1.55;
    }

    /* =========================================================
       07. SCENE CALLOUTS
    ========================================================= */
    .callout {
      position: absolute;
      z-index: 4;

      display: flex;
      align-items: flex-start;
      gap: 9px;

      color: var(--white);

      text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.55);
    }

    .callout__number {
      display: grid;
      place-items: center;

      flex: 0 0 auto;

      width: 29px;
      height: 29px;

      background: rgba(12, 88, 178, 0.94);

      border:
        2px solid
        rgba(255, 255, 255, 0.92);

      border-radius: 50%;

      font-size: 0.72rem;
      line-height: 1;
      font-weight: 800;
    }

    .callout__copy {
      padding-top: 2px;
    }

    .callout__title {
      font-size: 0.78rem;
      line-height: 1.2;
      font-weight: 800;

      white-space: nowrap;
    }

    .callout__title span {
      margin-left: 5px;

      color: rgba(255, 255, 255, 0.88);

      font-family: Arial, sans-serif;
      font-size: 0.66rem;
      font-weight: 700;
    }

    .callout__description {
      margin-top: 5px;

      color: rgba(255, 255, 255, 0.76);

      font-size: 0.68rem;
      line-height: 1.35;

      white-space: pre-line;
    }

    .callout__leader {
      position: absolute;

      height: 1px;

      background:
        rgba(255, 255, 255, 0.72);

      transform-origin: left center;
    }

    .callout__leader::before,
    .callout__leader::after {
      content: "";

      position: absolute;
      top: 50%;

      width: 6px;
      height: 6px;

      background: var(--white);

      border-radius: 50%;

      transform: translateY(-50%);
    }

    .callout__leader::before {
      left: -2px;
    }

    .callout__leader::after {
      right: -2px;
    }

    .callout--1 {
      top: 9%;
      left: 5%;
    }

    .callout--1 .callout__leader {
      left: calc(100% + 9px);
      top: 20px;

      width: 111px;

      transform: rotate(2deg);
    }

    .callout--2 {
      top: 7%;
      left: 47%;
    }

    .callout--2 .callout__leader {
      right: calc(100% + 9px);
      top: 20px;

      width: 100px;

      transform: rotate(-1deg);
    }

    .callout--3 {
      top: 54%;
      left: 4%;
    }

    .callout--3 .callout__leader {
      left: calc(100% + 8px);
      top: 20px;

      width: 123px;

      transform: rotate(4deg);
    }

    .callout--4 {
      top: 55%;
      left: 64%;
    }

    .callout--4 .callout__leader {
      right: calc(100% + 9px);
      top: 19px;

      width: 103px;

      transform: rotate(-5deg);
    }

    .callout--5 {
      top: 79%;
      left: 37%;
    }

    .callout--5 .callout__leader {
      right: calc(100% + 9px);
      top: 19px;

      width: 77px;

      transform: rotate(-8deg);
    }

    /* =========================================================
       08. RIGHT COLUMN
    ========================================================= */
    .solution-side {
      display: grid;
      gap: 8px;
    }

    .solution-card {
      padding:
        clamp(22px, 1.8vw, 30px);

      background:
        linear-gradient(
          145deg,
          rgba(7, 25, 46, 0.95) 0%,
          rgba(6, 30, 55, 0.88) 100%
        );

      border:
        1px solid
        var(--line-strong);

      border-radius: var(--radius-lg);

      box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.025),
        var(--shadow);
    }

    .solution-card__eyebrow {
      margin-bottom: 8px;

      color: var(--brand-bright);

      font-family: Arial, sans-serif;
      font-size: var(--tiny);
      line-height: 1;
      font-weight: 700;
    }

    .solution-card__title {
      margin: 0;

      color: var(--white);

      font-size: clamp(1.55rem, 1.75vw, 1.9rem);
      line-height: 1.14;
      letter-spacing: -0.025em;

      font-weight: 900;
    }

    .solution-card__description {
      margin: 10px 0 0;

      color: var(--text-soft);

      font-size: var(--small);
      line-height: 1.58;
    }

    /* =========================================================
       09. SOLUTION FEATURES
    ========================================================= */
    .solution-features {
      display: grid;
      grid-template-columns:
        repeat(4, minmax(0, 1fr));

      margin-top: 25px;
    }

    .solution-feature {
      position: relative;

      display: grid;
      justify-items: center;

      padding: 0 11px;

      text-align: center;
    }

    .solution-feature:first-child {
      padding-left: 0;
    }

    .solution-feature:last-child {
      padding-right: 0;
    }

    .solution-feature:not(:last-child)::after {
      content: "";

      position: absolute;
      top: 2px;
      right: 0;

      width: 1px;
      height: 90px;

      background:
        rgba(179, 203, 228, 0.28);
    }

    .solution-feature__icon {
      display: grid;
      place-items: center;

      width: 45px;
      height: 45px;

      margin-bottom: 11px;

      color: var(--white);
    }

    .solution-feature__icon svg {
      width: 100%;
      height: 100%;
    }

    .solution-feature__title {
      color: var(--white);

      font-size: 0.79rem;
      line-height: 1.2;
      font-weight: 800;
    }

    .solution-feature__description {
      margin-top: 6px;

      color: var(--text-muted);

      font-size: 0.66rem;
      line-height: 1.45;

      white-space: pre-line;
    }

    /* =========================================================
       10. SOLUTION SELECTOR
    ========================================================= */
    .solution-tabs {
      display: grid;
      gap: 1px;

      overflow: hidden;

      border-radius: var(--radius-md);
    }

    .solution-tab {
      display: grid;
      grid-template-columns:
        44px
        35px
        minmax(0, 1fr)
        auto;

      gap: 9px;
      align-items: center;

      min-height: 62px;

      padding: 9px 18px;

      color: var(--white);

      background:
        linear-gradient(
          90deg,
          rgba(7, 29, 53, 0.94),
          rgba(7, 34, 61, 0.86)
        );

      border:
        1px solid
        rgba(132, 171, 209, 0.18);

      cursor: pointer;

      text-align: left;

      transition:
        background var(--transition),
        transform var(--transition),
        border-color var(--transition);
    }

    .solution-tab:hover {
      background:
        linear-gradient(
          90deg,
          rgba(11, 44, 78, 0.96),
          rgba(8, 40, 72, 0.9)
        );
    }

    .solution-tab.is-active {
      background:
        linear-gradient(
          100deg,
          #1765c5 0%,
          #176bcf 58%,
          #105ab5 100%
        );

      border-color:
        rgba(31, 123, 229, 0.85);
    }

    .solution-tab__number {
      font-family: Arial, sans-serif;

      font-size: 1.45rem;
      line-height: 1;
      font-weight: 700;
    }

    .solution-tab__icon {
      display: grid;
      place-items: center;

      width: 31px;
      height: 31px;

      color: rgba(255, 255, 255, 0.88);
    }

    .solution-tab__icon svg {
      width: 100%;
      height: 100%;
    }

    .solution-tab__copy {
      min-width: 0;
    }

    .solution-tab__name {
      display: block;

      font-size: 0.82rem;
      line-height: 1.2;
      font-weight: 800;
    }

    .solution-tab__en {
      display: block;

      margin-top: 3px;

      color: var(--text-muted);

      font-family: Arial, sans-serif;
      font-size: 0.65rem;
      line-height: 1;
      text-transform: uppercase;
    }

    .solution-tab.is-active
    .solution-tab__en {
      color:
        rgba(255, 255, 255, 0.82);
    }

    .solution-tab__arrow {
      display: grid;
      place-items: center;

      width: 27px;
      height: 27px;

      color: var(--white);

      font-size: 1.35rem;
      line-height: 1;
    }

    .solution-tab.is-active
    .solution-tab__arrow {
      color: var(--brand);
      background: var(--white);

      border-radius: 50%;

      font-size: 1.1rem;
    }

    /* =========================================================
       11. BOTTOM PROCESS
    ========================================================= */
    .process {
      display: grid;
      grid-template-columns:
        245px
        minmax(0, 1fr)
        150px;

      gap: 18px;
      align-items: center;

      margin-top: 14px;

      padding:
        19px
        19px
        19px
        23px;

      background:
        linear-gradient(
          90deg,
          rgba(7, 30, 55, 0.92),
          rgba(8, 37, 67, 0.86)
        );

      border:
        1px solid
        var(--line);

      border-radius: var(--radius-lg);

      box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.02),
        var(--shadow);
    }

    .process__title {
      margin: 0;

      color: var(--white);

      font-size: 1.25rem;
      line-height: 1.38;
      letter-spacing: -0.02em;

      font-weight: 900;
    }

    .process-flow {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 0;
      min-width: 0;
    }

    .process-step {
      position: relative;

      display: grid;
      grid-template-columns:
        36px
        max-content;

      gap: 6px;
      align-items: center;

      flex: 0 1 auto;
      min-width: 0;
      min-height: 52px;

      padding: 0 12px 0 0;
    }

    .process-step__copy {
      display: grid;
      align-content: center;

      min-width: 0;
    }

    .process-step:first-child {
      padding-left: 0;
    }

    .process-step:last-child {
      padding-right: 0;
    }

    .process-step:not(:last-child)::after {
      content: "→";

      position: absolute;
      top: 50%;
      right: -1px;

      color: #adc5dd;

      font-size: 0.92rem;
      line-height: 1;

      transform: translateY(-50%);
    }

    .process-step__icon {
      display: grid;
      place-items: center;

      width: 41px;
      height: 41px;

      color: #d9e8f8;
    }

    .process-step__icon svg {
      width: 100%;
      height: 100%;
    }

    .process-step__name {
      color: var(--white);

      font-size: 0.7rem;
      line-height: 1.2;
      font-weight: 800;

      white-space: nowrap;
    }

    .process-step__description {
      margin-top: 5px;

      color: var(--text-muted);

      font-size: 0.59rem;
      line-height: 1.3;

      white-space: pre-line;
    }

    .process__cta {
      display: flex;
      align-items: center;
      justify-content: center;

      min-height: 52px;

      padding: 10px 13px;

      color: var(--white);

      background:
        linear-gradient(
          135deg,
          #1768cf,
          #0f5ab7
        );

      border-radius: var(--radius-sm);

      cursor: pointer;

      font-size: 0.76rem;
      line-height: 1.42;
      font-weight: 800;

      text-align: left;
      text-decoration: none;

      transition:
        background var(--transition),
        transform var(--transition);
    }

    .process__cta:hover {
      background:
        linear-gradient(
          135deg,
          #1b75e5,
          #124c89
        );

      transform: translateY(-1px);
    }

    .process__cta-arrow {
      margin-left: 10px;

      font-size: 1.2rem;
    }

    /* =========================================================
       12. TOAST
    ========================================================= */
    .toast {
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 100;

      max-width:
        calc(100% - 30px);

      padding: 10px 17px;

      color: var(--white);

      background:
        rgba(4, 14, 26, 0.96);

      border:
        1px solid
        rgba(130, 167, 204, 0.26);

      border-radius: 7px;

      font-size: var(--small);

      box-shadow:
        0 12px 36px
        rgba(0, 0, 0, 0.32);

      opacity: 0;
      visibility: hidden;

      transform:
        translate(-50%, 10px);

      transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
    }

    .toast.is-visible {
      opacity: 1;
      visibility: visible;

      transform:
        translate(-50%, 0);
    }

    /* =========================================================
       13. RESPONSIVE - DESKTOP SMALL
    ========================================================= */
    @media (max-width: 1350px) {
  .page {
        width: 90%;
      }

      .solutions {
        grid-template-columns:
          minmax(0, 1.75fr)
          minmax(390px, 1fr);
      }

      .solution-feature {
        padding-inline: 7px;
      }

      .process {
        grid-template-columns:
          205px
          1fr;
      }

      .process__cta {
        grid-column: 1 / -1;

        min-height: 54px;
      }
    }

    /* =========================================================
       14. TABLET
    ========================================================= */
    @media (max-width: 1080px) {
      .solutions {
        grid-template-columns: 1fr;
      }

      .scene {
        align-self: auto;
        aspect-ratio: 1.72 / 1;
      }

      .solution-side {
        grid-template-columns:
          1.15fr
          0.85fr;

        align-items: start;
      }

      .solution-tabs {
        height: 100%;
      }

      .solution-tab {
        min-height: 66px;
      }

      .process {
        grid-template-columns: 1fr;
      }

      .process__title br {
        display: none;
      }

      .process-flow {
        display: grid;
        grid-template-columns:
          repeat(3, 1fr);

        row-gap: 22px;
      }

      .process-step {
        grid-template-columns:
          36px
          minmax(0, 1fr);
        padding: 0 10px 0 0;
      }

      .process-step:nth-child(3)::after {
        display: none;
      }
    }

    /* =========================================================
       15. SMALL TABLET
    ========================================================= */
    @media (max-width: 820px) {
      .intro__title {
        font-size:
          clamp(
            2.1rem,
            7vw,
            2.9rem
          );
      }

      .scene {
        aspect-ratio: 1.4 / 1;
      }

      .solution-side {
        grid-template-columns: 1fr;
      }

      .solution-card {
        padding: 23px 22px;
      }

      .callout__description {
        display: none;
      }

      .callout__title {
        font-size: 0.7rem;
      }

      .callout__leader {
        width: 60px !important;
      }

      .callout--2 {
        left: 52%;
      }

      .callout--4 {
        left: 60%;
      }

      .callout--5 {
        left: 45%;
      }
    }

    /* =========================================================
       16. MOBILE
    ========================================================= */
    @media (max-width: 620px) {
  .page {
        width:
          calc(100% - 28px);

        padding-top: 25px;
        padding-bottom: 40px;
      }

      .intro {
        margin-bottom: 16px;
      }

      .intro__eyebrow {
        gap: 9px;

        margin-bottom: 13px;
      }

      .intro__number {
        font-size: 2rem;
      }

      .intro__title {
        font-size:
          clamp(
            1.95rem,
            9.3vw,
            2.55rem
          );
      }

      .intro__description {
        font-size: 0.9rem;
        line-height: 1.68;
      }

      .scene {
        aspect-ratio: 0.9 / 1;
      }

      .scene__media img {
        object-position: center;
      }

      .callout {
        gap: 5px;
      }

      .callout__number {
        width: 24px;
        height: 24px;

        font-size: 0.62rem;
      }

      .callout__title {
        font-size: 0.64rem;
      }

      .callout__title span {
        display: none;
      }

      .callout__leader {
        width: 42px !important;
      }

      .callout--1 {
        top: 10%;
        left: 4%;
      }

      .callout--2 {
        top: 11%;
        left: 57%;
      }

      .callout--3 {
        top: 51%;
        left: 3%;
      }

      .callout--4 {
        top: 53%;
        left: 59%;
      }

      .callout--5 {
        top: 78%;
        left: 35%;
      }

      .solution-features {
        grid-template-columns:
          repeat(2, 1fr);

        row-gap: 22px;
      }

      .solution-feature {
        min-height: 104px;
      }

      .solution-feature:nth-child(2)::after {
        display: none;
      }

      .solution-feature:nth-child(1),
      .solution-feature:nth-child(2) {
        padding-bottom: 17px;

        border-bottom:
          1px solid
          rgba(177, 201, 224, 0.16);
      }

      .solution-feature:not(:last-child)::after {
        height: 80px;
      }

      .solution-tab {
        grid-template-columns:
          39px
          31px
          minmax(0, 1fr)
          auto;

        padding-inline: 13px;
      }

      .process {
        padding: 20px 17px;
      }

      .process__title {
        font-size: 1.15rem;
      }

      .process-flow {
        display: grid;
        grid-template-columns: 1fr;
      }

      .process-step {
        min-height: 58px;

        padding: 0;
      }

      .process-step:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -16px;
        left: 17px;

        transform: rotate(90deg);
      }

      .process-step:nth-child(3)::after {
        display: block;
      }

      .process-step__description {
        white-space: normal;
      }
    }

    /* =========================================================
       17. REDUCED MOTION
    ========================================================= */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior:
          auto !important;

        transition-duration:
          0.001ms !important;

        animation-duration:
          0.001ms !important;
      }
    }
}
