/* Home screen 07 — migrated from 模板素材/07.html */
.home07-inline {
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #0f172a;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

.home07-inline *,
.home07-inline *::before,
.home07-inline *::after {
  box-sizing: border-box;
}

.home07-inline button {
  margin: 0;
  font: inherit;
}

@scope (.home07-inline) {
/* =========================================================
       01. DESIGN TOKENS
       1920px × 85% = 1632px
    ========================================================= */
    :scope {
      --design-width: 1920px;
      --content-max: 1632px;

      --brand: #165daa;
      --brand-dark: #124c89;
      --brand-bright: #1774e8;
      --brand-soft: #eaf3fd;

      --text: #0f172a;
      --text-2: #334155;
      --muted: #5d6775;
      --muted-2: #7b8796;

      --white: #ffffff;
      --soft: #f8fafc;
      --soft-blue: #f4f8fd;
      --border: #e2e8f0;
      --border-blue: #c9dbed;

      --navy: #04162c;
      --navy-2: #072746;
      --navy-3: #0a3158;

      --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 15px 42px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.035);

      --transition: 180ms ease;
    }

    /* =========================================================
       03. PAGE
       No global navigation
       No global header
       No footer
    ========================================================= */
  .page {
      width: 85%;
      max-width: var(--content-max);
      margin: 0 auto;

      padding:
        clamp(30px, 2.65vw, 50px)
        0
        clamp(42px, 4vw, 72px);

      background: var(--white);
    }

    /* =========================================================
       04. INTRO
    ========================================================= */
    .intro {
      display: grid;

      grid-template-columns:
        minmax(0, 1.04fr)
        minmax(520px, 0.96fr);

      gap: clamp(50px, 5vw, 90px);
      align-items: end;

      margin-bottom: 22px;
    }

    .intro__eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;

      margin-bottom: 18px;

      color: var(--brand);

      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.045em;
    }

    .intro__slash {
      font-size: 1.18rem;
    }

    .intro__label {
      font-size: 0.77rem;
      letter-spacing: 0.02em;
    }

    .intro__title {
      margin: 0;

      color: #111315;

      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);
      font-weight: inherit;
    }

    .intro__description {
      max-width: none;

      margin: 17px 0 0;

      color: var(--muted);

      font-size: var(--lead);
      line-height: 1.74;
    }

    /* =========================================================
       05. DESIGN → PRODUCTION → DELIVERY
    ========================================================= */
    .top-flow {
      align-self: center;

      padding-bottom: 6px;
    }

    .top-flow__steps {
      display: flex;
      align-items: center;
      justify-content: flex-end;

      gap: 22px;
    }

    .top-flow__step {
      display: flex;
      align-items: center;
      gap: 11px;

      color: var(--text);
    }

    .top-flow__icon {
      display: grid;
      place-items: center;

      width: 43px;
      height: 43px;

      color: var(--brand);
    }

    .top-flow__icon svg {
      width: 100%;
      height: 100%;
    }

    .top-flow__name {
      font-family: Arial, sans-serif;

      font-size: 0.92rem;
      line-height: 1;
      font-weight: 800;

      white-space: nowrap;
    }

    .top-flow__arrow {
      color: var(--brand);

      font-family: Arial, sans-serif;
      font-size: 1.7rem;
      line-height: 1;
    }

    .top-flow__caption {
      margin-top: 16px;

      color: var(--muted);

      font-size: var(--lead);
      line-height: 1.4;

      text-align: center;
      letter-spacing: 0.08em;
    }

    /* =========================================================
       06. MANUFACTURING LAYOUT
    ========================================================= */
    .manufacturing {
      display: grid;

      grid-template-columns:
        192px
        minmax(0, 1fr)
        292px;

      gap: 14px;

      align-items: stretch;
    }

    /* =========================================================
       07. PRODUCTION INPUT
    ========================================================= */
    .production-input {
      align-self: start;

      margin-top: 68px;

      overflow: hidden;

      background:
        linear-gradient(
          145deg,
          #fbfdff 0%,
          #f5f9fd 100%
        );

      border:
        1px solid
        var(--border);

      border-radius: var(--radius-lg);

      box-shadow: var(--shadow);
    }

    .production-input__main {
      padding:
        19px
        18px
        18px;
    }

    .production-input__eyebrow {
      margin-bottom: 14px;

      color: var(--brand);

      font-family: Arial, sans-serif;
      font-size: 0.69rem;
      line-height: 1;
      font-weight: 800;
    }

    .production-input__hero-icon {
      display: grid;
      place-items: center;

      width: 58px;
      height: 58px;

      margin: 0 auto 17px;

      color: var(--brand);
    }

    .production-input__hero-icon svg {
      width: 100%;
      height: 100%;
    }

    .input-list {
      display: grid;
      gap: 14px;
    }

    .input-item {
      display: grid;

      grid-template-columns:
        25px
        minmax(0, 1fr);

      gap: 9px;
      align-items: start;
    }

    .input-item__icon {
      display: grid;
      place-items: center;

      width: 24px;
      height: 24px;

      color: var(--brand);
    }

    .input-item__icon svg {
      width: 100%;
      height: 100%;
    }

    .input-item__title {
      color: var(--text);

      font-size: 0.68rem;
      line-height: 1.2;
      font-weight: 800;
    }

    .input-item__description {
      margin-top: 3px;

      color: var(--muted);

      font-size: 0.58rem;
      line-height: 1.3;
    }

    .production-input__footer {
      display: flex;
      align-items: center;

      min-height: 68px;

      padding: 12px 17px;

      color: var(--white);

      background:
        linear-gradient(
          135deg,
          #1357a5,
          #0d4180
        );
    }

    .production-input__footer-icon {
      display: grid;
      place-items: center;

      width: 31px;
      height: 31px;

      margin-right: 10px;
    }

    .production-input__footer-copy {
      font-family: Arial, sans-serif;

      font-size: 0.63rem;
      line-height: 1.35;
      font-weight: 700;
    }

    .production-input__footer-copy strong {
      display: block;

      margin-bottom: 3px;

      font-size: 0.65rem;
    }

    /* =========================================================
       08. CENTER COLUMN
    ========================================================= */
    .production-center {
      min-width: 0;
    }

    /* =========================================================
       09. STANDARDIZED / CUSTOMIZED STRIP
    ========================================================= */
    .production-mode {
      position: relative;

      display: grid;
      grid-template-columns: 1fr 1fr;

      min-height: 72px;

      margin: 0 40px 28px;

      background:
        linear-gradient(
          100deg,
          #fbfdff 0%,
          #f4f8fd 100%
        );

      border:
        1px solid
        var(--border);

      border-radius: var(--radius-md);

      box-shadow:
        0 8px 24px
        rgba(15, 23, 42, 0.035);
    }

    .production-mode::after {
      content: "";

      position: absolute;
      left: 50%;
      bottom: -32px;

      width: 1px;
      height: 32px;

      background: var(--brand);
    }

    .production-mode::before {
      content: "";

      position: absolute;
      left: calc(50% - 4px);
      bottom: -8px;
      z-index: 2;

      width: 8px;
      height: 8px;

      background: var(--brand);

      border-radius: 50%;
    }

    .mode-item {
      display: flex;
      align-items: center;

      gap: 12px;

      min-width: 0;

      padding: 12px 37px;
    }

    .mode-item + .mode-item {
      border-left:
        1px solid
        var(--border);
    }

    .mode-item__icon {
      display: grid;
      place-items: center;

      flex: 0 0 auto;

      width: 42px;
      height: 42px;

      color: var(--brand);
    }

    .mode-item__icon svg {
      width: 100%;
      height: 100%;
    }

    .mode-item__en {
      margin-bottom: 4px;

      color: var(--brand);

      font-family: Arial, sans-serif;
      font-size: 0.67rem;
      line-height: 1;
      font-weight: 800;
    }

    .mode-item__title {
      color: var(--brand-dark);

      font-size: 0.72rem;
      line-height: 1.25;
      font-weight: 800;
    }

    /* =========================================================
       10. MANUFACTURING STAGES
       Every card has fixed aspect ratio.
    ========================================================= */
    .stage-grid {
      position: relative;
      display: grid;
      grid-template-columns:
        repeat(6, minmax(0, 1fr));

      overflow: hidden;

      border:
        1px solid
        var(--border-blue);

      border-radius: var(--radius-lg);

      background: var(--navy);

      box-shadow: var(--shadow);
    }

    .stage-grid__panorama {
      display: none;
    }

    .stage {
      position: relative;
      isolation: isolate;

      width: 100%;
      aspect-ratio: 0.41 / 1;

      overflow: hidden;

      color: var(--white);
      background: var(--navy);

      cursor: default;
    }

    .stage:not(:last-child) {
      border-right:
        1px solid
        rgba(86, 160, 232, 0.65);
    }

    .stage__media {
      position: absolute;
      inset: 0;
      z-index: -3;

      width: 100%;
      height: 100%;

      overflow: hidden;
    }

    .stage__media img {
      width: 100%;
      height: 100%;

      object-fit: cover;
      object-position: center;

      user-select: none;
      pointer-events: none;

      transition:
        transform 500ms ease,
        filter 300ms ease;
    }

    .stage::before {
      content: "";

      position: absolute;
      inset: 0;
      z-index: -2;

      background:
        linear-gradient(
          180deg,
          rgba(2, 14, 29, 0.9) 0%,
          rgba(4, 25, 46, 0.75) 34%,
          rgba(5, 29, 52, 0.35) 59%,
          rgba(3, 20, 38, 0.52) 100%
        );

      pointer-events: none;
    }

    .stage::after {
      content: "";

      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      z-index: -1;

      height: 42%;

      background:
        linear-gradient(
          180deg,
          rgba(1, 12, 26, 0.78),
          transparent
        );

      pointer-events: none;
    }

    .stage:hover
    .stage__media img {
      transform: scale(1.035);

      filter:
        brightness(1.05)
        saturate(1.04);
    }

    .stage__content {
      position: relative;
      z-index: 2;

      padding:
        14px
        12px
        18px;
    }

    .stage__number {
      display: grid;
      place-items: center;

      width: 32px;
      height: 32px;

      margin: 0 auto 10px;

      color: var(--white);
      background: var(--brand);

      border:
        2px solid
        rgba(255, 255, 255, 0.84);

      border-radius: 50%;

      font-family: Arial, sans-serif;
      font-size: 0.74rem;
      line-height: 1;
      font-weight: 800;

      box-shadow:
        0 3px 9px
        rgba(0, 0, 0, 0.18);
    }

    .stage__title {
      margin: 0;

      color: var(--white);

      font-size: 0.79rem;
      line-height: 1.28;
      font-weight: 800;

      text-align: center;
    }

    .stage__details {
      display: grid;
      gap: 4px;

      margin-top: 11px;

      color:
        rgba(255, 255, 255, 0.87);

      font-size: 0.61rem;
      line-height: 1.35;

      text-align: center;
    }

    /* One continuous factory panorama for the six desktop stages.
       The frame follows the asset's natural 1911:823 ratio so contain
       produces neither cropping nor letterboxing. */
    @media (min-width: 1101px) {
      .stage-grid {
        aspect-ratio: 1911 / 823;
      }

      .stage-grid__panorama {
        position: absolute;
        inset: 0;
        z-index: 0;

        display: block;
        width: 100%;
        height: 100%;

        object-fit: contain;
        object-position: center;

        user-select: none;
        pointer-events: none;
      }

      .stage {
        z-index: 1;
        height: 100%;
        aspect-ratio: auto;
        background: transparent;
      }

      .stage__media {
        display: none;
      }

      .stage::before {
        background:
          linear-gradient(
            180deg,
            rgba(2, 14, 29, 0.88) 0%,
            rgba(4, 25, 46, 0.68) 30%,
            rgba(5, 29, 52, 0.16) 58%,
            rgba(3, 20, 38, 0.34) 100%
          );
      }
    }

    /* manufacturing arrows */
    .stage-arrow {
      position: absolute;
      top: 55%;
      right: -10px;
      z-index: 9;

      display: grid;
      place-items: center;

      width: 20px;
      height: 20px;

      color: #3ba0ff;

      font-size: 1.4rem;
      line-height: 1;

      text-shadow:
        0 0 10px
        rgba(47, 153, 255, 0.9);
    }

    /* =========================================================
       11. MANUFACTURING CAPABILITY
    ========================================================= */
    .capability {
      align-self: stretch;

      overflow: hidden;

      color: var(--white);

      background:
        linear-gradient(
          155deg,
          #06172c 0%,
          #082b4c 100%
        );

      border-radius: var(--radius-lg);

      box-shadow: var(--shadow);
    }

    .capability__main {
      padding:
        23px
        23px
        19px;
    }

    .capability__eyebrow {
      margin-bottom: 6px;

      color:
        rgba(255, 255, 255, 0.86);

      font-family: Arial, sans-serif;
      font-size: 0.68rem;
      line-height: 1;
      font-weight: 800;
    }

    .capability__title {
      margin: 0;

      color: var(--white);

      font-size: 1.25rem;
      line-height: 1.2;
      font-weight: 900;
    }

    .capability-list {
      position: relative;

      display: grid;
      gap: 19px;

      margin-top: 22px;
    }

    .capability-list::before {
      content: "";

      position: absolute;
      top: 24px;
      bottom: 24px;
      left: 37px;

      border-left:
        1px dashed
        rgba(113, 167, 221, 0.42);
    }

    .capability-item {
      position: relative;
      z-index: 2;

      display: grid;

      grid-template-columns:
        68px
        minmax(0, 1fr);

      gap: 13px;
      align-items: center;
    }

    .capability-item__icon {
      display: grid;
      place-items: center;

      width: 64px;
      height: 64px;

      color: var(--white);

      background:
        rgba(255, 255, 255, 0.025);

      border:
        1px solid
        rgba(255, 255, 255, 0.72);

      border-radius: 7px;
    }

    .capability-item__icon svg {
      width: 65%;
      height: 65%;
    }

    .capability-item__copy {
      position: relative;
    }

    .capability-item__copy::before {
      content: "";

      position: absolute;
      top: 12px;
      left: -20px;

      width: 6px;
      height: 6px;

      background: #3c95ed;

      border-radius: 50%;

      box-shadow:
        0 0 8px
        rgba(60, 149, 237, 0.8);
    }

    .capability-item__title {
      color: var(--white);

      font-size: 0.8rem;
      line-height: 1.2;
      font-weight: 800;
    }

    .capability-item__description {
      margin-top: 6px;

      color:
        rgba(229, 237, 246, 0.79);

      font-size: 0.65rem;
      line-height: 1.5;
    }

    .capability__data {
      margin-top: 19px;
      padding-top: 15px;

      border-top:
        1px dashed
        rgba(255, 255, 255, 0.22);
    }

    .capability__data-title {
      margin-bottom: 12px;

      color:
        rgba(255, 255, 255, 0.83);

      font-size: 0.63rem;
      line-height: 1.2;
      font-weight: 700;
    }

    .capability-stats {
      display: grid;
      grid-template-columns:
        repeat(4, 1fr);

      gap: 7px;
    }

    .capability-stat__label {
      color:
        rgba(255, 255, 255, 0.75);

      font-size: 0.55rem;
      line-height: 1.15;
    }

    .capability-stat__value {
      margin-top: 6px;

      color: var(--white);

      font-family: Arial, sans-serif;
      font-size: 0.7rem;
      line-height: 1;
      font-weight: 800;
    }

    /* =========================================================
       12. BOTTOM ENGINEERING TO MANUFACTURING
    ========================================================= */
    .bottom-flow {
      display: grid;

      grid-template-columns:
        265px
        minmax(0, 1fr)
        166px;

      gap: 19px;
      align-items: center;

      margin-top: 22px;

      padding:
        20px
        18px
        20px
        23px;

      color: var(--white);

      background:
        linear-gradient(
          100deg,
          #07305a 0%,
          #062343 55%,
          #051a33 100%
        );

      border-radius: var(--radius-lg);

      box-shadow:
        0 14px 35px
        rgba(5, 31, 58, 0.12);
    }

    .bottom-flow__eyebrow {
      margin-bottom: 8px;

      color:
        rgba(255, 255, 255, 0.87);

      font-family: Arial, sans-serif;
      font-size: 0.67rem;
      line-height: 1;
      font-weight: 800;
    }

    .bottom-flow__title {
      margin: 0;

      color: var(--white);

      font-size: 1.3rem;
      line-height: 1.2;
      letter-spacing: -0.025em;

      font-weight: 900;
    }

    .bottom-flow__steps {
      display: grid;
      grid-template-columns:
        repeat(6, minmax(0, 1fr));

      align-items: center;
    }

    .bottom-step {
      position: relative;

      display: grid;

      grid-template-columns:
        43px
        minmax(0, 1fr);

      gap: 9px;
      align-items: center;

      min-width: 0;

      padding: 0 13px;
    }

    .bottom-step:first-child {
      padding-left: 0;
    }

    .bottom-step:not(:last-child)::after {
      content: "→";

      position: absolute;
      top: 50%;
      right: -7px;

      color:
        rgba(255, 255, 255, 0.76);

      font-size: 1rem;
      line-height: 1;

      transform:
        translateY(-50%);
    }

    .bottom-step__icon {
      display: grid;
      place-items: center;

      width: 42px;
      height: 42px;

      color: var(--white);
    }

    .bottom-step__icon svg {
      width: 100%;
      height: 100%;
    }

    .bottom-step__title {
      color: var(--white);

      font-size: 0.68rem;
      line-height: 1.2;
      font-weight: 800;

      white-space: nowrap;
    }

    .bottom-step__description {
      margin-top: 4px;

      color:
        rgba(225, 235, 245, 0.7);

      font-size: 0.56rem;
      line-height: 1.35;
    }

    .bottom-flow__cta {
      display: flex;
      align-items: center;
      justify-content: center;

      min-height: 55px;

      padding: 10px 15px;

      color: var(--white);

      background:
        linear-gradient(
          135deg,
          #1874df,
          #115ab0
        );

      border-radius: 7px;

      cursor: pointer;
      text-decoration: none;

      font-size: 0.78rem;
      line-height: 1.3;
      font-weight: 800;

      transition:
        transform var(--transition),
        background var(--transition);
    }

    .bottom-flow__cta:hover {
      transform: translateY(-1px);

      background:
        linear-gradient(
          135deg,
          #2384f6,
          #124c89
        );
    }

    .bottom-flow__cta-arrow {
      margin-left: 11px;

      font-size: 1.1rem;
    }

    /* =========================================================
       13. TOAST
    ========================================================= */
    .toast {
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 100;

      max-width:
        calc(100% - 30px);

      padding: 10px 17px;

      color: var(--white);
      background:
        rgba(15, 23, 42, 0.95);

      border-radius: 8px;

      font-size: var(--small);
      line-height: 1.4;

      box-shadow:
        0 12px 36px
        rgba(15, 23, 42, 0.22);

      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);
    }

    /* =========================================================
       14. RESPONSIVE ≤ 1320
    ========================================================= */
    @media (max-width: 1320px) {
  .page {
        width: 90%;
      }

      .intro {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .top-flow {
        max-width: 850px;
      }

      .top-flow__steps {
        justify-content: flex-start;
      }

      .top-flow__caption {
        text-align: left;
      }

      .manufacturing {
        grid-template-columns:
          178px
          minmax(0, 1fr)
          260px;
      }

      .production-mode {
        margin-inline: 20px;
      }

      .mode-item {
        padding-inline: 22px;
      }

      .bottom-flow {
        grid-template-columns:
          220px
          1fr;
      }

      .bottom-flow__cta {
        grid-column: 1 / -1;
      }
    }

    /* =========================================================
       15. RESPONSIVE ≤ 1120
    ========================================================= */
    @media (max-width: 1120px) {
      .manufacturing {
        grid-template-columns:
          minmax(0, 1fr)
          285px;
      }

      .production-input {
        grid-column: 1 / -1;

        margin-top: 0;
      }

      .production-input__main {
        display: grid;

        grid-template-columns:
          170px
          minmax(0, 1fr);

        align-items: center;
      }

      .production-input__hero-icon {
        margin-bottom: 0;
      }

      .input-list {
        grid-template-columns:
          repeat(3, 1fr);

        gap: 15px 22px;
      }

      .production-input__footer {
        min-height: 55px;
      }

      .production-center {
        grid-column: 1;
      }

      .capability {
        grid-column: 2;
      }

      .stage-grid {
        grid-template-columns:
          repeat(3, 1fr);
      }

      .stage {
        aspect-ratio: 0.72 / 1;
      }

      .stage:nth-child(3) {
        border-right: 0;
      }

      .stage:nth-child(-n+3) {
        border-bottom:
          1px solid
          rgba(86, 160, 232, 0.65);
      }

      .stage-arrow {
        display: none;
      }

      .bottom-flow__steps {
        grid-template-columns:
          repeat(3, 1fr);

        row-gap: 22px;
      }

      .bottom-step:nth-child(3)::after {
        display: none;
      }
    }

    /* =========================================================
       16. RESPONSIVE ≤ 850
    ========================================================= */
    @media (max-width: 850px) {
      .intro__title {
        font-size:
          clamp(
            2.1rem,
            7vw,
            2.95rem
          );
      }

      .top-flow__steps {
        flex-wrap: wrap;
      }

      .manufacturing {
        grid-template-columns: 1fr;
      }

      .production-input,
      .production-center,
      .capability {
        grid-column: auto;
      }

      .production-mode {
        margin-inline: 0;
      }

      .capability-list {
        grid-template-columns:
          repeat(2, 1fr);
      }

      .capability-list::before {
        display: none;
      }

      .capability-item {
        padding:
          13px
          12px;

        border:
          1px solid
          rgba(255, 255, 255, 0.13);

        border-radius: 8px;
      }

      .capability-item__copy::before {
        display: none;
      }

      .bottom-flow {
        grid-template-columns: 1fr;
      }

      .bottom-flow__title br {
        display: none;
      }
    }

    /* =========================================================
       17. MOBILE
    ========================================================= */
    @media (max-width: 620px) {
  .page {
        width:
          calc(100% - 28px);

        padding-top: 26px;
        padding-bottom: 42px;
      }

      .intro {
        margin-bottom: 17px;
      }

      .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;
      }

      .top-flow__steps {
        display: grid;

        grid-template-columns:
          1fr
          auto
          1fr
          auto
          1fr;

        gap: 8px;
      }

      .top-flow__step {
        display: grid;
        justify-items: center;

        gap: 6px;
      }

      .top-flow__icon {
        width: 36px;
        height: 36px;
      }

      .top-flow__name {
        font-size: 0.7rem;
      }

      .top-flow__arrow {
        font-size: 1.3rem;
      }

      .top-flow__caption {
        margin-top: 12px;

        font-size: 0.78rem;

        text-align: center;
      }

      .production-input__main {
        display: block;
      }

      .production-input__hero-icon {
        margin-bottom: 17px;
      }

      .input-list {
        grid-template-columns:
          repeat(2, 1fr);
      }

      .production-mode {
        grid-template-columns: 1fr;

        margin-bottom: 22px;
      }

      .production-mode::after,
      .production-mode::before {
        display: none;
      }

      .mode-item {
        padding: 13px 16px;
      }

      .mode-item + .mode-item {
        border-top:
          1px solid
          var(--border);

        border-left: 0;
      }

      .stage-grid {
        grid-template-columns: 1fr;
      }

      .stage {
        aspect-ratio: 1.25 / 1;

        border-right: 0 !important;

        border-bottom:
          1px solid
          rgba(86, 160, 232, 0.55);
      }

      .stage:last-child {
        border-bottom: 0;
      }

      .stage__content {
        width: 58%;

        padding:
          18px
          17px;
      }

      .stage__number {
        margin:
          0
          0
          10px;
      }

      .stage__title,
      .stage__details {
        text-align: left;
      }

      .stage::before {
        background:
          linear-gradient(
            90deg,
            rgba(2, 14, 29, 0.94) 0%,
            rgba(4, 25, 46, 0.82) 40%,
            rgba(5, 29, 52, 0.38) 75%,
            rgba(3, 20, 38, 0.12) 100%
          );
      }

      .capability-list {
        grid-template-columns: 1fr;
      }

      .capability-stats {
        grid-template-columns:
          repeat(2, 1fr);

        row-gap: 16px;
      }

      .bottom-flow {
        padding:
          20px
          17px;
      }

      .bottom-flow__steps {
        grid-template-columns: 1fr;

        row-gap: 17px;
      }

      .bottom-step {
        min-height: 55px;

        padding: 0;
      }

      .bottom-step:not(:last-child)::after {
        top: auto;
        right: auto;
        left: 16px;
        bottom: -15px;

        transform: rotate(90deg);
      }

      .bottom-step:nth-child(3)::after {
        display: block;
      }

      .bottom-step__description {
        max-width: 250px;
      }
    }

    /* =========================================================
       18. REDUCED MOTION
    ========================================================= */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior:
          auto !important;

        transition-duration:
          0.001ms !important;

        animation-duration:
          0.001ms !important;
      }
    }
}
