    :root {
      --bg: #000000;
      --text: #ffffff;
      --muted: #aaaaaa;
      --card-bg: rgba(17, 17, 17, 0.4);
      --card-border: rgba(51, 51, 51, 0.6);
      --teal: #58f5d7;
      --btn-grad-start: #b7f9fe;
      --btn-grad-mid: #82eef9;
      --btn-grad-end: #4ce2f3;
      --promo-header-offset: 0px;
      --module-gap-desktop: 150px;
      --module-title-card-gap-desktop: 46px;
      --hero-top-desktop: calc(180px + var(--promo-header-offset));
      --hero-block-height-desktop: 884px;
      --hero-p2-gap: 120px;
      --p2-p3-gap: var(--module-gap-desktop);
      --p2-top-desktop: 960px;
      --p2-block-height-desktop: 1020px;
      --p3-top-desktop: 2183px;
      --p3-block-height-desktop: 578px;
      --p3-p4-gap: 119px;
      --p4-top-desktop: calc(var(--p3-top-desktop) + var(--p3-block-height-desktop) + var(--p3-p4-gap));
      --p4-p5-gap: 115px;
      --p4-block-height-desktop: 602px;
      --p5-top-desktop: calc(var(--p4-top-desktop) + var(--p4-block-height-desktop) + var(--p4-p5-gap));
      --p5-footer-gap: 64px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background-color: #000000;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      overflow-x: hidden;
    }

    .page {
      position: relative;
      width: 100%;
      min-height: 100vh;
      background: #000000;
      overflow: visible;
    }

    .page-content {
      position: relative;
      width: 1920px;
      height: 4800px;
      margin: 0 auto;
      overflow: visible;
      background: transparent;
    }

    .bg-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 1920px;
      height: 1080px;
      background: url("assets/figma/41790fc8-37ab-475b-86b0-5b8764c19e37.401d89e5.webp") center top / cover no-repeat;
      opacity: 0.35;
      pointer-events: none;
    }

    .bg-grid::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    }

    .bg-bottom {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 1920px;
      height: 1084px;
      background: none;
      opacity: 0;
      pointer-events: none;
      display: none;
    }

    .header {
      position: fixed;
      top: var(--promo-header-offset);
      left: 0;
      width: 100%;
      height: 60px;
      border-bottom: 0;
      background: rgba(34, 34, 34, 0.8);
      backdrop-filter: blur(10px);
      z-index: 50;
      transition: none;
    }

    .header.is-sticky {
      top: var(--promo-header-offset);
      border-bottom-color: transparent;
      background: rgba(34, 34, 34, 0.8);
      box-shadow: none;
    }

    .header-inner {
      width: 100%;
      max-width: 1280px;
      height: 100%;
      margin: 0 auto;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      width: 134.739px;
      max-width: 134.739px;
      aspect-ratio: 152 / 30;
      display: block;
      object-fit: contain;
      overflow: hidden;
    }

    .logo-image {
      width: 100%;
      max-width: 134.739px;
      height: 100%;
      display: block;
      object-fit: contain;
      background: transparent;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
    }

    .header-nav {
      position: static;
      margin-left: 60px;
      transform: none;
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .header-tab,
    .header-tab:link,
    .header-tab:visited {
      height: 60px;
      min-width: 0;
      padding: 0 10px;
      border-radius: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      font-weight: 400;
      line-height: 1;
      text-decoration: none;
      white-space: normal;
      transition: color 180ms ease;
    }

    .header-tab.is-active {
      color: #4ce2f3;
      background: transparent;
      box-shadow: none;
    }

    .header-tab:hover,
    .header-tab:focus-visible {
      outline: none;
      color: #4ce2f3;
    }

    .header-tab.is-active:hover,
    .header-tab.is-active:focus-visible {
      color: #4ce2f3;
    }

    .header-models {
      position: relative;
      height: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .header-models-trigger {
      border: 0;
      background: transparent;
      font-family: "Montserrat", "Lato", sans-serif;
      cursor: pointer;
    }

    .header-models-trigger::after {
      content: "";
      width: 6px;
      height: 6px;
      margin-left: 8px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: translateY(-2px) rotate(45deg);
      transition: transform 180ms ease;
    }

    .header-models-menu {
      position: absolute;
      top: 52px;
      left: 50%;
      z-index: 30;
      width: 168px;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      background: rgba(17, 17, 17, 0.96);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      gap: 2px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate(-50%, 8px);
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .header-products-menu {
      width: 312px;
      padding: 30px;
      border: 0;
      gap: 10px;
      border-radius: 12px;
      background: #121212;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    }

    .header-models:hover .header-models-menu,
    .header-models:focus-within .header-models-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .header-models:hover .header-models-trigger::after,
    .header-models:focus-within .header-models-trigger::after {
      transform: translateY(1px) rotate(225deg);
    }

    .header-models-menu a,
    .header-models-menu a:link,
    .header-models-menu a:visited {
      min-height: 38px;
      padding: 0 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      transition: background 160ms ease, color 160ms ease;
    }

    .header-models-menu a:hover,
    .header-models-menu a:focus-visible {
      color: #4ce2f3;
      background: rgba(255, 255, 255, 0.06);
      outline: none;
    }

    .header-products-menu .header-product-link,
    .header-products-menu .header-product-link:link,
    .header-products-menu .header-product-link:visited {
      min-height: 40px;
      width: 252px;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 6px;
      color: #fff;
      font-size: 16px;
      line-height: 1;
    }

    .header-products-menu .header-product-link img {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      object-fit: contain;
    }

    .header-products-menu .header-product-link:hover,
    .header-products-menu .header-product-link:focus-visible,
    .header-products-menu .header-product-link.is-active {
      color: #4ce2f3;
      background: #040000;
    }

    .btn-outline {
      height: 39px;
      min-width: 120px;
      padding: 0 30px;
      border: 0;
      border-radius: 10px;
      background: #ffffff;
      backdrop-filter: blur(10px);
      color: #151524;
      font-size: 16px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      line-height: 1;
      cursor: pointer;
      transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 120ms ease;
    }

    .btn-outline img {
      width: 14px;
      height: 16px;
      object-fit: contain;
      transition: filter 220ms ease;
    }

    .lang-btn {
      height: 42px;
      padding: 9px 20px;
      border: 1px solid #333;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.01);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #dee7f7;
      font-family: "PingFang SC", "Noto Sans SC", sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 4px;
      cursor: pointer;
      transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
    }

    .lang-btn-icon {
      width: 14px;
      height: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .lang-btn-icon img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .lang-btn-text {
      display: block;
      white-space: normal;
      color: inherit;
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      border-color: transparent;
      color: #151524;
      background: #ffffff;
      box-shadow: none;
      filter: brightness(0.92);
      outline: none;
    }

    .btn-outline:hover img,
    .btn-outline:focus-visible img {
      filter: brightness(0) saturate(100%);
    }

    .btn-outline:active {
      transform: translateY(1px);
    }

    .btn-primary,
    .mini-btn {
      transition: box-shadow 220ms ease, transform 120ms ease, filter 220ms ease;
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      box-shadow: 0 6px 26px rgba(76, 226, 243, 0.78);
      filter: saturate(1.06);
      outline: none;
    }

    .btn-primary:active,
    .mini-btn:active {
      transform: translateY(1px);
    }

    .mini-btn:hover,
    .mini-btn:focus-visible {
      box-shadow: 0 6px 26px rgba(76, 226, 243, 0.8);
      filter: saturate(1.06);
      outline: none;
    }

    .lang-btn:hover,
    .lang-btn:focus-visible {
      border-color: rgba(255, 255, 255, 0.56);
      background: rgba(0, 0, 0, 0.01);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34), 0 0 14px rgba(255, 255, 255, 0.14);
      outline: none;
    }

    .lang-btn:active {
      transform: none;
    }

    .section {
      position: absolute;
      left: 320px;
      width: 1280px;
    }

    .sec-title {
      margin: 0;
      font-size: 48px;
      line-height: 1.2;
      font-weight: 600;
      color: #fff;
      text-align: center;
    }

    .sec-subtitle {
      margin: 10px 0 0;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 400;
      color: #aaa;
      text-align: center;
    }

    html[lang="en"] .p2 .title-wrap {
      width: min(100%, 1280px);
      margin: 0 auto;
      text-align: center;
    }

    html[lang="en"] .p2 .sec-title {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 48px;
      line-height: normal;
      font-weight: 700;
      white-space: normal;
    }

    html[lang="en"] .p2 .sec-subtitle {
      margin: 10px auto 0;
      max-width: 856px;
      text-align: center;
      color: #ffffff;
      font-size: 18px;
      line-height: normal;
      white-space: normal;
      text-wrap: balance;
    }

    html[lang="en"] .p3 .sec-title {
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 48px;
      line-height: normal;
      font-weight: 700;
      white-space: normal;
      text-wrap: unset;
    }

    html[lang="en"] .p3 .title-wrap {
      width: min(100%, 1200px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    html[lang="en"] .p3 .sec-subtitle {
      margin: 0;
      color: #ffffff;
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 18px;
      line-height: normal;
      font-weight: 400;
      white-space: normal;
    }

    html[lang="en"] .p4 .title-wrap {
      width: min(100%, 1280px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    html[lang="en"] .p4 .sec-title {
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 48px;
      line-height: normal;
      font-weight: 700;
      white-space: normal;
    }

    html[lang="en"] .p4 .sec-subtitle {
      width: 1000px;
      max-width: 100%;
      margin: 0 auto;
      color: #ffffff;
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 18px;
      line-height: normal;
      font-weight: 400;
      white-space: normal;
      text-wrap: unset;
    }

    html[lang="en"] .gen-prompt {
      height: 136px;
    }

    html[lang="en"] .video-prompt {
      height: auto;
      min-height: 136px;
    }

    html[lang="en"] .gen-prompt-inner {
      padding: 8px;
    }

    html[lang="en"] .gen-prompt-text {
      width: 100%;
      max-width: none;
      font-size: 11px;
      line-height: 1.35;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    @media (min-width: 769px) {
      html[lang="en"] .cta-core {
        width: min(100%, 1200px);
        height: auto;
        gap: 30px;
        padding: 0 24px;
      }

      html[lang="en"] .cta-copy {
        width: 100%;
        gap: 30px;
      }

      html[lang="en"] .cta h2 {
        width: 1200px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
        text-wrap: balance;
        font-size: 48px;
        line-height: normal;
      }

      html[lang="en"] .cta-subtitle {
        white-space: normal;
        font-size: 24px;
        font-weight: 600;
        line-height: normal;
      }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      height: 40px;
      border: 0;
      border-radius: 12px;
      padding: 0 20px;
      min-width: 129px;
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      color: #040000;
      cursor: pointer;
      background: radial-gradient(100% 400% at 50% 100%, var(--btn-grad-start) 0%, var(--btn-grad-mid) 50%, var(--btn-grad-end) 100%);
      box-shadow: 0 4px 20px rgba(76, 226, 243, 0.4);
    }

    .btn-primary img {
      width: 15px;
      height: 18px;
      object-fit: contain;
    }

    .hero {
      top: var(--hero-top-desktop);
      height: var(--hero-block-height-desktop);
      left: 120px;
      width: 1680px;
      background: transparent;
      z-index: 5;
    }

    .hero-title-wrap {
      width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-title-wrap .sec-title {
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 48px;
      line-height: 1.08;
      font-weight: 700;
      text-transform: uppercase;
      white-space: normal;
    }

    .hero-title-wrap .sec-subtitle {
      width: 1000px;
      max-width: 100%;
      margin: 16px auto 0;
      color: #ffffff;
      font-size: 18px;
      line-height: 24px;
      white-space: normal;
    }

    .hero-cta {
      position: absolute;
      top: 184px;
      left: 50%;
      transform: translateX(-50%);
      height: 48px;
      min-width: 0;
      padding: 0 40px;
      border-radius: 12px;
    }

    .hero-cta:active {
      transform: translateX(-50%) translateY(1px);
    }

    .hero-card-shell {
      position: absolute;
      top: 214px;
      left: 50%;
      width: 1680px;
      height: 660px;
      transform: translateX(-50%);
      overflow: visible;
      z-index: 5;
    }

    .hero-card {
      position: absolute;
      top: 0;
      left: 0;
      width: 1680px;
      height: 660px;
      border: 0;
      border-radius: 0;
      background: transparent;
      background-image: none;
      background-size: auto;
      --grid-glow-x: 840px;
      --grid-glow-y: 330px;
      --grid-glow-opacity: 0;
      isolation: isolate;
      overflow: visible;
      z-index: 5;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: var(--grid-glow-opacity);
      transition: opacity 300ms ease;
    }

    .hero-card::after {
      background-image: none;
      background-size: auto;
      mix-blend-mode: screen;
      -webkit-mask-image: radial-gradient(
        280px circle at var(--grid-glow-x) var(--grid-glow-y),
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.36) 52%,
        rgba(0, 0, 0, 0) 100%
      );
      mask-image: radial-gradient(
        280px circle at var(--grid-glow-x) var(--grid-glow-y),
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.36) 52%,
        rgba(0, 0, 0, 0) 100%
      );
    }

    .hero-links {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      overflow: visible;
    }

    .hero-link {
      fill: none;
      stroke: rgba(255, 255, 255, 0.26);
      stroke-width: 1.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      vector-effect: non-scaling-stroke;
      filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.18));
    }

    .hero-link-flow {
      fill: none;
      stroke-width: 1.55;
      stroke-linecap: round;
      stroke-linejoin: round;
      vector-effect: non-scaling-stroke;
      filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.22));
    }

    .hero-link-flow-a {
      stroke: url(#hero-flow-grad-a);
    }

    .hero-link-flow-b {
      stroke: url(#hero-flow-grad-b);
    }

    .hero-link-flow-c {
      stroke: url(#hero-flow-grad-c);
    }

    .ref-block {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: 9.571px;
      z-index: 2;
    }

    .flow-node {
      cursor: grab;
      user-select: none;
      touch-action: none;
    }

    .flow-node.is-dragging {
      cursor: grabbing;
    }

    .flow-node label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      white-space: normal;
    }

    .flow-node .node-title,
    .flow-node .node-model {
      font-size: inherit;
      line-height: inherit;
    }

    .flow-node .node-title {
      color: inherit;
      min-width: 0;
    }

    .flow-node .node-model {
      margin-left: auto;
      color: #778093;
      font-weight: 400;
      text-align: right;
      flex: 0 0 auto;
    }

    .ref-block label {
      width: 100%;
      font-size: 14px;
      color: #d9d9d9;
      line-height: 1;
    }

    .ref-block img {
      border: 1px solid #4d5056;
      object-fit: cover;
      background: #111;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .ref-a {
      left: 0;
      top: 0;
    }

    .ref-a img {
      width: 200px;
      height: 200px;
      border-radius: 12px;
    }

    .ref-b {
      left: 0;
      top: 254px;
    }

    .ref-b img {
      width: 200px;
      height: 200px;
      border-radius: 12px;
    }

    .gen-block {
      position: absolute;
      left: 450px;
      top: 168px;
      width: 340px;
      z-index: 3;
    }

    .gen-block label {
      width: 320px;
      margin-bottom: 10px;
      font-size: 14px;
      color: #d9d9d9;
      line-height: 1;
    }

    .gen-card {
      width: 320px;
      padding: 0;
      border: 1px solid #4d5056;
      border-radius: 9.571px;
      background: #111111;
      transition: border-color 160ms ease, box-shadow 160ms ease;
      overflow: hidden;
      position: relative;
      clip-path: inset(0 round 9.571px);
    }

    .gen-block .preview {
      width: 100%;
      height: 178px;
      border-radius: 9.571px;
      object-fit: cover;
      display: block;
    }

    .gen-prompt {
      position: absolute;
      left: -8px;
      top: calc(100% + 8px);
      width: 336px;
      height: 104px;
      padding: 8px;
      border-radius: 12px;
      border: 1px solid #313136;
      background: #141416;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 220ms ease;
      z-index: 6;
      box-sizing: border-box;
    }

    .video-prompt {
      left: 0;
      width: 320px;
      height: auto;
      min-height: 104px;
    }

    .video-prompt .gen-prompt-inner {
      height: auto;
    }

    .video-prompt-text {
      width: 100%;
      max-width: none;
      line-height: 1.35;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .gen-prompt-inner {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      background: #000;
      padding: 10px;
      border: 1px solid #1f1f21;
      box-sizing: border-box;
    }

    .gen-prompt-text {
      display: block;
      width: 300px;
      margin: 0;
      color: #d9d9d9 !important;
      font-family: "PingFang SC", "Noto Sans SC", sans-serif;
      font-size: 12px;
      font-style: normal;
      font-weight: 400 !important;
      line-height: normal;
      letter-spacing: 0;
      text-align: left;
      -webkit-text-fill-color: #d9d9d9;
    }

    .gen-prompt-text::after {
      content: "";
      display: inline-block;
      width: 1px;
      height: 0.95em;
      margin-left: 4px;
      background: #58F5D7;
      vertical-align: -0.1em;
      animation: gen-prompt-caret-blink 1s steps(1, end) infinite;
      box-shadow: 0 0 4px rgba(88, 245, 215, 0.45);
    }

    .video-prompt .gen-prompt-text {
      width: 100%;
      max-width: none;
      line-height: 1.35;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .video-prompt .gen-prompt-text::after {
      content: "";
      display: inline-block;
      width: 0;
      height: 0.95em;
      margin-left: 0;
      border-left: 1px solid #58F5D7;
      background: transparent;
      vertical-align: -0.1em;
      animation: gen-prompt-caret-blink 1s steps(1, end) infinite;
      box-shadow: 0 0 4px rgba(88, 245, 215, 0.45);
    }

    @keyframes gen-prompt-caret-blink {
      0%,
      49% {
        opacity: 1;
      }
      50%,
      100% {
        opacity: 0;
      }
    }

    .gen-block.is-prompt-visible .gen-prompt,
    .video-block.is-prompt-visible .video-prompt {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .video-block {
      position: absolute;
      left: 1200px;
      top: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 2;
    }

    .video-block label {
      width: 480px;
      font-size: 14px;
      color: #d9d9d9;
      line-height: 1;
    }

    .video-block img,
    .video-block video {
      width: 480px;
      height: 267px;
      border: 1px solid #4d5056;
      border-radius: 9.571px;
      object-fit: cover;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .video-block video {
      display: block;
      background: #111;
      pointer-events: none;
    }

    .ref-block:hover img,
    .ref-block.is-dragging img,
    .gen-block:hover .gen-card,
    .gen-block.is-dragging .gen-card,
    .video-block:hover img,
    .video-block.is-dragging img,
    .video-block:hover video,
    .video-block.is-dragging video {
      border-color: rgba(255, 255, 255, 0.92);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    }

    .dot {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #58F5D7;
      filter: drop-shadow(0 0 3.829px rgba(131, 249, 107, 0.30));
      z-index: 4;
      pointer-events: none;
    }

    .dot.dot-c {
      width: 9.571px;
      height: 9.571px;
    }

    .p2 {
      top: var(--p2-top-desktop);
    }

    .p2 .title-wrap {
      width: 560px;
      margin: 0 auto;
      text-align: center;
    }

    .p2 .sec-subtitle {
      white-space: normal;
    }

    .models-shell {
      position: relative;
      width: 1280px;
      height: 870px;
      margin-top: 60px;
      overflow: hidden;
    }

    .models-wrap {
      margin-top: 0;
      width: 1280px;
      height: 870px;
    }

    .card {
      border: 1px solid var(--card-border);
      border-radius: 20px;
      background: var(--card-bg);
      position: relative;
      overflow: hidden;
    }

    .video-model {
      width: 1280px;
      height: 550px;
      padding: 30px;
    }

    .video-model-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 1280px;
      height: 550px;
      object-fit: cover;
    }

    .video-model-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    }

    .card-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .card-title {
      margin: 0;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 600;
      color: #fff;
    }

    .model-card-desc {
      margin: 10px 0 0;
      color: #ffffff;
      font-size: 16px;
      line-height: normal;
      font-weight: 400;
    }

    .corner-icon {
      position: absolute;
      right: 30px;
      top: 30px;
      width: 60px;
      height: 60px;
      object-fit: contain;
      z-index: 3;
    }

    .model-grid {
      width: 1220px;
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 30px;
      align-items: flex-start;
      margin-top: auto;
    }

    .model-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }

    .model-item img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .model-item p {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      color: #fff;
      white-space: pre-line;
      word-break: break-word;
    }

    .p2 .video-model .model-item-seedance p {
      white-space: pre;
      word-break: keep-all;
      overflow-wrap: normal;
    }

    .card-row {
      margin-top: 20px;
      display: flex;
      gap: 20px;
    }

    .small-card {
      height: 300px;
      padding: 30px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.8) 100%);
      border: 1px solid rgba(51, 51, 51, 0.6);
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .small-card.w560 { width: 440px; }
    .small-card.w400 { width: 400px; }

    .small-grid {
      display: flex;
      gap: 30px;
      align-items: flex-start;
      flex-wrap: nowrap;
    }

    .small-grid.two-col .model-item { width: 155px; }
    .small-grid.three-col .model-item { width: 126px; }

    .p2 .model-card-image .small-grid.three-col {
      justify-content: space-between;
      gap: 16px;
    }

    .p2 .model-card-image .small-grid.three-col .model-item-doubao {
      flex: 0 0 max-content;
      min-width: max-content;
      width: max-content;
    }

    .p2 .model-card-image .model-item-doubao p {
      white-space: pre;
      word-break: normal;
      overflow-wrap: normal;
    }

    .p2 .model-card-image .small-grid.three-col .model-item-image-coming {
      flex: 0 0 max-content;
      min-width: max-content;
      width: max-content;
    }

    /* P2 三卡片：按设计稿精调标题与图标上下边距 */
    .p2 .small-card {
      padding: 24px 24px 30px;
      justify-content: flex-start;
    }

    .p2 .small-card.model-card-image {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.72) 100%), url("assets/figma/p2-model-image.2b9936c0.webp");
      background-size: cover;
      background-position: 50% 46%;
      background-repeat: no-repeat;
    }

    .p2 .small-card.model-card-text {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.74) 100%), url("assets/figma/p2-model-text.87027d99.webp");
      background-size: cover;
      background-position: 52% 40%;
      background-repeat: no-repeat;
    }

    .p2 .small-card.model-card-audio {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.66) 100%), url("assets/figma/p2-model-audio.b8a56870.webp");
      background-size: cover;
      background-position: 50% 44%;
      background-repeat: no-repeat;
    }

    .p2 .small-card .card-title {
      margin-top: 0;
      line-height: 1.2;
    }

    .p2 .small-card .corner-icon {
      display: none;
    }

    .p2 .small-card .small-grid {
      margin-top: auto;
      padding-top: 10px;
      align-items: flex-start;
    }

    .p2 .small-card.w560 .small-grid {
      margin-top: auto;
    }

    .p2 .small-card.w400 .small-grid {
      margin-top: auto;
    }

    .coming {
      margin-left: 6px;
      font-size: 12px;
      color: #fff;
      opacity: 0.9;
    }

    .p3 {
      top: var(--p3-top-desktop);
    }

    .home-about-cta {
      position: absolute;
      height: 260px;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 1px solid #111111;
      background: #040608;
    }

    .home-about-cta-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .home-about-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .home-about-cta-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      color: #ffffff;
    }

    .home-about-cta-copy h2 {
      margin: 0;
      color: #ffffff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 48px;
      line-height: normal;
      font-weight: 700;
      text-align: center;
      white-space: normal;
    }

    .home-about-cta-copy p {
      width: 750px;
      max-width: 100%;
      margin: 0;
      color: #ffffff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 24px;
      line-height: normal;
      font-weight: 600;
      text-align: center;
    }

    .home-about-cta-btn {
      height: 48px;
      min-width: 190px;
      padding: 0 40px;
      border-radius: 12px;
    }

    .p3 .title-wrap {
      width: 672px;
      margin: 0 auto;
      text-align: center;
    }

    .platform-card {
      margin-top: 60px;
      width: 1280px;
      height: 426px;
      padding: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0;
      border-color: rgba(42, 42, 55, 0.6);
    }

    .platform-left {
      width: 494px;
      height: 340px;
      display: flex;
      gap: 30px;
      align-items: flex-start;
    }

    .rail-wrap {
      position: relative;
      width: 4px;
      height: 340px;
      border-radius: 2px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(102, 102, 102, 0.55) 0%, rgba(102, 102, 102, 0.3) 100%);
      box-shadow: inset 0 0 0 1px rgba(102, 102, 102, 0.22);
    }

    .rail-active {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: calc(100% / 3);
      border-radius: 2px;
      background: linear-gradient(180deg, #999999 0%, #8b8b8b 42%, #666666 100%);
      box-shadow: 0 0 14px rgba(88, 245, 215, 0.28);
      transform: translate3d(0, 0, 0);
      transition: transform 220ms cubic-bezier(0.24, 0.76, 0.3, 1), height 200ms cubic-bezier(0.24, 0.76, 0.3, 1);
      will-change: transform, height;
    }

    .platform-copy {
      width: 460px;
      height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .interactive-copy {
      height: 340px;
      justify-content: space-between;
      gap: 0;
    }

    .interactive-copy .feature-item {
      padding-top: 10px;
      padding-bottom: 10px;
    }

    .feature-item {
      width: 100%;
      border: 0;
      background: transparent;
      color: inherit;
      padding: 2px 0;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      cursor: default;
      border-radius: 8px;
      transition: transform 120ms ease, filter 160ms ease;
    }

    .feature-item:focus-visible {
      outline: 1px solid rgba(88, 245, 215, 0.6);
      outline-offset: 6px;
    }

    .feature-item:hover {
      filter: brightness(1.04);
    }

    .feature-title {
      margin: 0;
      font-family: "PingFang SC", "Noto Sans SC", sans-serif;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 600;
      color: #999999;
      transition: color 220ms ease, font-size 220ms ease;
    }

    .feature-desc {
      margin: 0;
      display: none;
      font-family: "PingFang SC", "Noto Sans SC", sans-serif;
      font-size: 16px;
      line-height: 24px;
      color: #999999;
    }

    .feature-item.is-active .feature-title {
      font-size: 30px;
      color: #ffffff;
    }

    html[lang="en"] .p3 .feature-title,
    html[lang="en"] .p4 .feature-title {
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 20px;
      font-weight: 600;
      white-space: normal;
      word-break: normal;
      overflow-wrap: normal;
    }

    html[lang="en"] .p3 .feature-item.is-active .feature-title,
    html[lang="en"] .p4 .feature-item.is-active .feature-title {
      font-size: 24px;
      font-weight: 700;
    }

    html[lang="en"] .p3 .feature-desc,
    html[lang="en"] .p4 .feature-desc {
      color: #dddddd;
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
    }

    .feature-item.is-active .feature-desc {
      display: block;
    }

    .platform-copy h3 {
      margin: 0;
      font-size: 30px;
      line-height: 1;
      color: #fff;
      font-weight: 600;
    }

    .platform-copy p {
      margin: 10px 0 0;
      font-size: 16px;
      line-height: 24px;
      color: #999;
    }

    .platform-copy .sub {
      margin: 0;
      font-size: 24px;
      line-height: 1;
      color: #999;
      font-weight: 600;
    }

    .platform-img,
    .platform-video {
      width: 680px;
      height: 366px;
      aspect-ratio: 340 / 183;
      object-fit: cover;
      border-radius: 16px;
      clip-path: inset(0 round 16px);
      transition: opacity 160ms ease, filter 160ms ease;
    }

    .p4 {
      top: var(--p4-top-desktop);
    }

    .p4 .title-wrap {
      width: 742px;
      margin: 0 auto;
      text-align: center;
    }

    .template-card {
      margin-top: 40px;
      width: 1280px;
      height: 442px;
      padding: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0;
    }

    .template-left {
      width: 494px;
      height: 340px;
      display: flex;
      gap: 30px;
      align-items: flex-start;
    }

    .template-copy {
      width: 460px;
      height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .platform-copy .feature-desc {
      max-width: 460px;
    }

    .template-copy .feature-desc {
      max-width: 460px;
    }

    .template-copy h3 {
      margin: 0;
      font-size: 30px;
      line-height: 1;
      color: #fff;
      font-weight: 600;
    }

    .template-copy p {
      margin: 10px 0 0;
      font-size: 16px;
      line-height: 24px;
      color: #999;
    }

    .template-copy .sub {
      margin: 0;
      font-size: 24px;
      line-height: 1;
      color: #999;
      font-weight: 600;
    }

    .template-img-wrap {
      position: relative;
      width: 680px;
      height: 382px;
      aspect-ratio: 340 / 191;
      border-radius: 12px;
      overflow: hidden;
    }

    .template-img,
    .template-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 160ms ease, filter 160ms ease;
    }

    .platform-img.is-switching,
    .platform-video.is-switching,
    .template-img.is-switching,
    .template-video.is-switching {
      opacity: 0.78;
      filter: saturate(0.94);
    }

    .platform-img.is-hidden,
    .platform-video.is-hidden,
    .template-img.is-hidden,
    .template-video.is-hidden {
      display: none;
    }

    .template-caption {
      position: absolute;
      left: 30px;
      right: 30px;
      bottom: 20px;
      min-height: 52px;
      padding: 9px 12px;
      border-radius: 11px;
      background: rgba(21, 21, 36, 0.4);
      backdrop-filter: blur(9px);
      color: #dee7f7;
      font-size: 11px;
      line-height: 1.4;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .template-caption.is-commerce {
      min-height: 52px;
      padding: 8px 12px;
      left: 50%;
      right: auto;
      width: fit-content;
      max-width: calc(100% - 60px);
      transform: translateX(-50%);
      align-items: center;
    }

    .template-caption.is-hidden {
      display: none !important;
    }

    .template-caption-text-wrap {
      width: 100%;
      min-width: 0;
    }

    .template-caption-text-wrap.is-hidden {
      display: none !important;
    }

    .template-caption-commerce {
      width: auto;
      max-width: 100%;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
    }

    .template-caption-commerce.is-hidden {
      display: none !important;
    }

    .template-commerce-track {
      display: flex;
      align-items: center;
      gap: 4px;
      min-width: 0;
      flex: 0 1 auto;
      max-width: 100%;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .template-commerce-track::-webkit-scrollbar {
      display: none;
    }

    .template-commerce-thumb {
      width: 36px;
      height: 36px;
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
    }

    .template-commerce-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .template-commerce-thumb:not(.is-active)::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(22, 24, 31, 0.32);
    }

    .template-commerce-thumb.is-active {
      border-color: rgba(255, 255, 255, 0.72);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }

    .template-commerce-token {
      height: 24px;
      padding: 0 8px;
      border-radius: 4px;
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      flex-shrink: 0;
      font-size: 11px;
      line-height: 1;
      color: #dee7f7;
      background: rgba(51, 51, 51, 0.8);
    }

    .template-commerce-token.is-active {
      background: rgba(0, 0, 0, 0.28);
    }

    .template-commerce-join {
      white-space: nowrap;
      flex-shrink: 0;
      font-size: 11px;
      line-height: 1;
      color: #dee7f7;
    }

    .template-caption .mini-btn {
      width: 38px;
      height: 32px;
      border: 0;
      border-radius: 8px;
      background: radial-gradient(100% 400% at 50% 100%, var(--btn-grad-start) 0%, var(--btn-grad-mid) 50%, var(--btn-grad-end) 100%);
      box-shadow: 0 4px 19px rgba(76, 226, 243, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      align-self: center;
    }

    .template-caption .mini-btn img {
      width: 15px;
      height: 18px;
      object-fit: contain;
    }

    .cta {
      position: absolute;
      top: var(--p5-top-desktop);
      left: 0;
      width: 1920px;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #040608;
      z-index: 2;
    }

    .pricing-section {
      top: 180px;
      left: 0;
      width: 1920px;
      height: 5150px;
      padding-top: 0;
      z-index: 3;
    }

    .pricing-hero,
    .pricing-plans,
    .pricing-promo {
      width: 1280px;
      margin: 0 auto;
    }

    .pricing-hero {
      min-height: 580px;
      text-align: center;
    }

    .pricing-title-wrap,
    .pricing-plans-title {
      width: 892px;
      margin: 0 auto;
    }

    .pricing-title-wrap .sec-title,
    .pricing-plans-title .sec-title {
      font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
      font-weight: 700;
    }

    .pricing-title-wrap .sec-subtitle {
      margin-top: 10px;
      font-size: 16px;
      line-height: 20px;
      color: #aaa;
    }

    .credit-cards {
      display: grid;
      grid-template-columns: repeat(4, 300px);
      gap: 28px;
      justify-content: center;
      margin-top: 52px;
    }

    .credit-card {
      position: relative;
      height: 240px;
      padding: 65px 60px 24px;
      border: 1px solid #222;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(51, 51, 51, 0.4) 0%, rgba(17, 17, 17, 0.4) 100%);
      overflow: hidden;
      text-align: center;
    }

    .credit-bonus {
      position: absolute;
      top: 0;
      left: 50%;
      min-width: 95px;
      height: 35px;
      transform: translateX(-50%);
      padding: 0 20px;
      border-radius: 0 0 12px 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #151524;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 14px;
      font-weight: 700;
      background: radial-gradient(100% 400% at 50% 100%, #b7f9fe 0%, #82eef9 50%, #4ce2f3 100%);
    }

    .credit-bonus img {
      width: 10px;
      height: 14px;
      display: block;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .credit-amount {
      margin: 0;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 20px;
      line-height: 24px;
      font-weight: 400;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      white-space: nowrap;
    }

    .credit-amount img {
      width: 11px;
      height: 16px;
      display: block;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .credit-price {
      margin: 10px 0 0;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 36px;
      line-height: 44px;
      font-weight: 700;
    }

    .credit-note {
      width: 180px;
      margin: 30px auto 0;
      color: #4ce2f3;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
    }

    .pricing-credit-btn {
      width: 269px;
      height: 50px;
      margin-top: 64px;
      font-size: 16px;
      border-radius: 12px;
      box-shadow: none;
    }

    .pricing-footnote {
      margin: 14px 0 0;
      color: #aaa;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 14px;
      font-style: italic;
      line-height: 20px;
    }

    .pricing-plans {
      margin-top: 120px;
    }

    .pricing-plans-title .sec-subtitle {
      margin-top: 10px;
      font-size: 16px;
      line-height: 20px;
      color: #aaa;
    }

    .pricing-tabs {
      width: fit-content;
      max-width: 100%;
      margin: 40px auto 60px;
      padding: 10px;
      border: 1px solid #333;
      border-radius: 32px;
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .pricing-tabs::-webkit-scrollbar {
      display: none;
    }

    .pricing-tab {
      position: relative;
      height: 40px;
      padding: 0 20px;
      border: 0;
      border-radius: 20px;
      background: transparent;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 16px;
      font-weight: 400;
      white-space: nowrap;
      cursor: pointer;
      transition: background 180ms ease, color 180ms ease;
    }

    .pricing-tab + .pricing-tab {
      margin-left: 32px;
    }

    .pricing-tab + .pricing-tab::before {
      content: "";
      position: absolute;
      left: -16px;
      top: 50%;
      width: 1px;
      height: 19px;
      transform: translateY(-50%);
      background: #333;
    }

    .pricing-tab.is-active {
      background: #fff;
      color: #151524;
    }

    .pricing-tab:not(.is-active):hover,
    .pricing-tab:not(.is-active):focus-visible {
      color: #151524;
      background: #fff;
      outline: none;
    }

    .pricing-table-wrap {
      width: 1280px;
      max-height: 3222px;
      overflow: auto;
      scrollbar-color: #333 transparent;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 16px;
      line-height: 1.25;
      table-layout: auto;
    }

    .pricing-table th,
    .pricing-table td {
      min-width: 140px;
      padding: 10px 14px;
      border-top: 1px solid #333;
      border-bottom: 1px solid #333;
      text-align: center;
      font-weight: 400;
      vertical-align: middle;
      white-space: nowrap;
    }

    .pricing-table th:first-child,
    .pricing-table .model-cell {
      min-width: 180px;
      text-align: left;
    }

    .pricing-table .model-cell {
      vertical-align: middle;
    }

    .pricing-table th {
      padding-top: 20px;
      padding-bottom: 20px;
      font-weight: 700;
    }

    .pricing-table td:last-child {
      color: #fff;
      font-size: 16px;
      white-space: nowrap;
    }

    .price-check {
      color: #58f5d7;
      font-size: 13px;
    }

    .pricing-view-more {
      width: 100%;
      height: 54px;
      margin: -1px auto 0;
      padding: 0;
      border: 0;
      border-top: 1px solid #333;
      border-bottom: 1px solid #333;
      border-radius: 0;
      background: transparent;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: color 180ms ease, background 180ms ease;
    }

    .pricing-view-more:hover,
    .pricing-view-more:focus-visible {
      color: #4ce2f3;
      background: rgba(255, 255, 255, 0.02);
      outline: none;
    }

    .pricing-view-more:active {
      transform: none;
    }

    .pricing-view-more[hidden] {
      display: none;
    }

    .pricing-view-more-icon {
      width: 10px;
      height: 10px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 180ms ease;
      flex: 0 0 auto;
    }

    .pricing-view-more.is-expanded .pricing-view-more-icon {
      transform: rotate(225deg) translateY(-2px);
    }

    .pricing-promo {
      position: relative;
      height: 420px;
      margin-top: 120px;
      padding: 60px 40px;
      border: 1px solid rgba(42, 42, 55, 0.6);
      border-radius: 20px;
      background: #040000;
      overflow: hidden;
    }

    .pricing-promo::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg, #040000 0%, #04091e 61.538%, rgba(2, 10, 29, 0) 100%);
    }

    .pricing-promo-copy {
      position: relative;
      z-index: 3;
      width: 760px;
    }

    .pricing-promo-badge {
      width: fit-content;
      height: 48px;
      padding: 0 30px;
      border: 1px solid #58f5d7;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #4ce2f3;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 16px;
      font-weight: 700;
    }

    .pricing-promo-badge img {
      width: 24px;
      height: 24px;
      display: block;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .pricing-promo-kicker {
      margin: 20px 0 0;
      color: #aaa;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 18px;
      line-height: 22px;
    }

    .pricing-promo h2 {
      margin: 20px 0 0;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 48px;
      line-height: 59px;
      font-weight: 700;
      white-space: normal;
    }

    .pricing-promo-desc {
      width: 732px;
      margin: 20px 0 0;
      color: #aaa;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 16px;
      font-style: italic;
      line-height: 20px;
    }

    .pricing-promo-btn {
      width: 276px;
      height: 48px;
      margin-top: 20px;
      border-radius: 12px;
      font-size: 16px;
      box-shadow: none;
    }

    .pricing-promo-art {
      position: absolute;
      right: 0;
      top: -46px;
      width: 574px;
      height: 524px;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .pricing-about-cta {
      position: relative;
      width: 1280px;
      height: 260px;
      margin: 120px auto 0;
      border: 1px solid #111111;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: #040608;
    }

    .pricing-about-cta-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pricing-about-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .pricing-about-cta-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      color: #ffffff;
    }

    .pricing-about-cta-copy h2 {
      margin: 0;
      color: #ffffff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 48px;
      line-height: normal;
      font-weight: 700;
      text-align: center;
      white-space: normal;
    }

    .pricing-about-cta-copy p {
      width: 750px;
      max-width: 100%;
      margin: 0;
      color: #ffffff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 24px;
      line-height: normal;
      font-weight: 600;
      text-align: center;
    }

    .pricing-about-cta-btn {
      height: 48px;
      min-width: 190px;
      padding: 0 40px;
      border-radius: 12px;
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(54% 62% at 50% 58%, rgba(23, 28, 44, 0.08) 0%, rgba(0, 0, 0, 0.24) 68%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.52) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .cta-bg-video {
      position: absolute;
      top: 3%;
      left: 0;
      width: 100%;
      height: 94%;
      object-fit: contain;
      object-position: center center;
      opacity: 0.92;
      filter: saturate(1.04) contrast(1.03);
      pointer-events: none;
      z-index: 0;
    }

    .reveal-section {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }

    .reveal-section.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .footer.reveal-section {
      opacity: 1;
      transform: none;
    }

    .cta-core {
      position: relative;
      width: 1200px;
      height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      text-align: center;
      z-index: 2;
    }

    .cta-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .cta-core::before {
      content: none;
      position: absolute;
      inset: -80px -120px;
      background: radial-gradient(circle at 50% 50%, rgba(185, 112, 255, 0.58) 0%, rgba(52, 64, 255, 0.22) 42%, rgba(0, 0, 0, 0) 72%);
      filter: blur(20px);
      z-index: -1;
    }

    .cta h2 {
      margin: 0;
      font-size: 48px;
      line-height: normal;
      font-weight: 700;
      font-family: "Montserrat", "Lato", "Noto Sans SC", "Noto Sans JP", sans-serif;
      color: #fff;
      white-space: normal;
    }

    .cta-subtitle {
      margin: 0;
      color: #FFF;
      text-align: center;
      font-family: "PingFang SC";
      font-size: 24px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      white-space: normal;
    }

    .cta .btn-primary {
      height: 48px;
      min-width: 140px;
      padding: 0 40px;
      border-radius: 12px;
    }

    .footer {
      position: absolute;
      left: 0;
      top: calc(var(--p4-top-desktop) + var(--p4-block-height-desktop) + var(--p4-p5-gap) + 480px + var(--p5-footer-gap));
      bottom: auto;
      width: 1920px;
      max-width: 100%;
      min-height: 344px;
      height: auto;
      padding: 40px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 60px;
      background: #040404;
      z-index: 5;
      box-sizing: border-box;
    }

    .pricing-page .page {
      overflow: visible;
    }

    .pricing-page .page-content {
      height: auto;
      min-height: 100vh;
      padding-top: 180px;
      overflow: visible;
    }

    .pricing-page .bg-grid {
      display: none;
    }

    .pricing-page .pricing-section {
      position: relative;
      top: auto;
      left: auto;
      height: auto;
    }

    .pricing-page .pricing-table-wrap {
      max-height: none;
      overflow-x: auto;
      overflow-y: visible;
    }

    .pricing-page .footer {
      position: relative;
      top: auto;
      left: auto;
      margin-top: var(--p5-footer-gap);
    }

.seedance-page .footer,
.gpt-image-page .footer,
.gemini-page .footer,
.eleven-page .footer,
.ai-cinematic-page .footer,
.workflow-templates-page .footer,
.asset-library-page .footer,
.ai-video-enhancer-page .footer,
.team-collaboration-page .footer,
.about-page .footer,
.legal-page .footer {
  position: relative;
  top: auto;
  left: auto;
  width: 1920px;
  max-width: 100%;
  min-height: 344px;
  height: auto;
  margin: 120px auto 0;
}

    .footer-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      display: none;
    }

    .footer-logo {
      width: 215.586px;
      max-width: 100%;
      aspect-ratio: 215.586 / 48;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .footer-logo img {
      width: 100%;
      max-width: 215.586px;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .footer-main {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 100px;
      width: 1280px;
      max-width: calc(100% - 48px);
      margin: 0 auto;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      width: 322px;
      flex: 0 0 322px;
    }

    .footer-brand-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      width: 100%;
      color: #fff;
    }

    .footer-brand-copy p {
      margin: 0;
      width: 100%;
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: normal;
    }

    .footer-brand-copy .footer-brand-title {
      font-size: 14px;
      font-weight: 700;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      width: 115px;
      flex: 0 0 115px;
    }

    .footer-column:first-of-type {
      width: 173px;
      flex-basis: 173px;
    }

    .footer-column h2 {
      margin: 0;
      color: #999;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      white-space: nowrap;
    }

    .footer-column a,
    .footer-column a:link,
    .footer-column a:visited {
      color: #fff;
      font-family: "Montserrat", "Lato", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      text-decoration: none;
      white-space: nowrap;
      transition: color 160ms ease;
    }

    .footer-column a:hover,
    .footer-column a:focus-visible {
      color: #4ce2f3;
      outline: none;
    }

    .copyright {
      margin: 0;
      font-size: 12px;
      line-height: normal;
      color: #999;
      font-family: "Lato", "Noto Sans SC", sans-serif;
      text-align: center;
    }

    .footer-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: nowrap;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: nowrap;
    }

    .footer-link,
    .footer-link:link,
    .footer-link:visited {
      color: #999;
      font-size: 12px;
      line-height: 1;
      text-decoration: none;
      font-family: "Lato", "Noto Sans SC", sans-serif;
      position: relative;
      white-space: nowrap;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    .footer-link:hover {
      color: #fff;
      opacity: 1;
    }

    .footer-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.2s ease;
    }

    .footer-link:hover::after,
    .footer-link:focus-visible::after {
      transform: scaleX(1);
    }

    .footer-link:focus-visible {
      color: #fff;
      opacity: 1;
      outline: none;
    }

    .consult-float {
      position: fixed;
      right: 40px;
      bottom: 40px;
      z-index: 80;
      width: 52px;
      height: 52px;
      font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }

    html[lang="en"] .consult-float {
      display: none;
    }

    .consult-trigger {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 52px;
      height: 52px;
      display: block;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      color: inherit;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .consult-trigger:hover,
    .consult-trigger:focus-visible {
      transform: translateY(-1px);
      filter: brightness(1.1);
      outline: none;
    }

    .consult-headset {
      display: block;
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.36));
    }

    .consult-panel {
      position: fixed;
      right: 104px;
      bottom: 40px;
      width: 280px;
      height: 360px;
      padding: 12px;
      border: 1px solid #424346;
      border-radius: 8px;
      background: #0f0f0f;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate3d(8px, 8px, 0) scale(0.98);
      transform-origin: right bottom;
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
    }

    .consult-float.is-open .consult-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate3d(0, 0, 0) scale(1);
    }

    .consult-online {
      height: 60px;
      padding: 10px 12px;
      border-radius: 8px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #f2f2f2;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }

    .consult-online:hover,
    .consult-online:focus-visible {
      background: #050505;
      outline: none;
    }

    .consult-online-copy {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 0;
    }

    .consult-online strong,
    .consult-qr-card strong {
      color: #f2f2f2;
      font-size: 14px;
      line-height: 1;
      font-weight: 600;
    }

    .consult-online-copy span {
      color: #bbbdbe;
      font-size: 12px;
      line-height: 1;
      white-space: nowrap;
    }

    .consult-arrow {
      width: 12px;
      height: 12px;
      flex: 0 0 12px;
      margin-right: 2px;
      display: block;
    }

    .consult-qr-card {
      height: 267px;
      margin-top: 8px;
      padding: 16px 8px 0;
      border-radius: 8px;
      background: #000;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .consult-qr-card img {
      width: 180px;
      height: 180px;
      margin: 26px auto 0;
      display: block;
      border-radius: 6px;
      background: #fff;
      object-fit: cover;
    }

    .mobile-nav-toggle,
    .mobile-nav-panel {
      display: none;
    }

    @media (max-width: 768px) {
      .header {
        top: var(--promo-header-offset);
        height: 60px;
        border-bottom: 0;
        background: transparent;
        backdrop-filter: none;
        overflow: visible;
        z-index: 100;
      }

      .header-inner {
        position: relative;
        width: min(100%, 375px);
        max-width: 375px;
        height: 60px;
        padding: 0 15px;
        border-radius: 10px;
        background: rgba(17, 17, 17, 0.8);
        box-shadow: none;
        backdrop-filter: blur(10px);
      }

      .header-nav,
      .header-actions {
        display: none;
      }

      .header-models {
        display: none;
      }

      .logo {
        width: 108px;
        max-width: 108px;
      }

      .logo-image {
        max-width: 108px;
      }

      .mobile-nav-toggle {
        display: inline-flex;
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-left: auto;
        padding: 0;
        border: 0;
        color: #fff;
        background: transparent;
        cursor: pointer;
      }

      .mobile-nav-toggle-line {
        display: block;
        width: 16px;
        height: 1.5px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.22s ease, opacity 0.22s ease;
      }

      .header.is-mobile-open .mobile-nav-toggle-line:first-child {
        transform: translateY(3.25px) rotate(45deg);
      }

      .header.is-mobile-open .mobile-nav-toggle-line:last-child {
        transform: translateY(-3.25px) rotate(-45deg);
      }

      .mobile-nav-panel {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 20;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0;
        overflow: hidden;
        border-radius: 0 0 10px 10px;
        background: #111;
      }

      .header.is-mobile-open .mobile-nav-panel {
        display: flex;
      }

      .mobile-nav-link,
      .mobile-nav-link:link,
      .mobile-nav-link:visited {
        display: flex;
        width: 100%;
        height: 40px;
        align-items: center;
        padding: 0 20px;
        color: #fff;
        background: transparent;
        font-family: "Montserrat", "Lato", sans-serif;
        font-size: 14px;
        line-height: 1;
        text-align: left;
        text-decoration: none;
      }

      .mobile-nav-link.is-active {
        color: #4ce2f3;
      }

      .mobile-models-group {
        width: 100%;
        display: flex;
        flex-direction: column;
      }

      .mobile-models-title {
        color: #4ce2f3;
        font-weight: 600;
        pointer-events: none;
      }

      .mobile-model-link {
        padding-left: 36px !important;
        color: rgba(255, 255, 255, 0.82) !important;
        font-size: 13px !important;
      }

      .mobile-model-link.is-active {
        color: #4ce2f3 !important;
      }

      .mobile-nav-cta {
        display: flex;
        width: 100%;
        height: 40px;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        border: 0;
        border-radius: 7.7px;
        color: #151524;
        background: #fff;
        font-family: "Montserrat", "Lato", sans-serif;
        font-size: 14px;
        line-height: 1;
        cursor: pointer;
      }
    }

    @media (max-width: 1919px) {
      .page {
        overflow: visible;
      }

      .page-content {
        width: 100%;
        max-width: 1280px;
        height: auto;
        margin: 0 auto;
        padding: calc(120px + var(--promo-header-offset)) 24px 64px;
        overflow: visible;
      }

      .header {
        width: 100%;
        left: 0;
      }

      .header-inner {
        padding: 0 24px;
      }

      .bg-grid,
      .bg-bottom {
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 1920px;
      }

      .section {
        position: relative;
        top: auto !important;
        left: auto;
        width: 100%;
        margin: 0 auto;
      }

      .hero {
        height: auto;
        margin-bottom: var(--hero-p2-gap);
      }

      .p2 {
        margin-bottom: var(--p2-p3-gap);
      }

      .p3 {
        margin-bottom: var(--p3-p4-gap);
      }

      .p4 {
        margin-bottom: var(--p4-p5-gap);
      }

      .pricing-section {
        width: 100%;
        height: auto;
        padding: 0;
        margin-bottom: var(--p5-footer-gap);
      }

      .pricing-hero,
      .pricing-plans,
      .pricing-promo,
      .pricing-about-cta {
        width: 100%;
        max-width: 1280px;
      }

      .credit-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
      }

      .credit-card {
        width: 100%;
      }

      .pricing-table-wrap {
        width: 100%;
      }

      .pricing-promo {
        margin-top: 90px;
      }

      .pricing-about-cta {
        margin-top: 90px;
      }

      .hero-title-wrap {
        width: min(100%, 1280px);
      }

      .p2 .title-wrap {
        width: min(100%, 560px);
      }

      .p3 .title-wrap {
        width: min(100%, 672px);
      }

      .p4 .title-wrap {
        width: min(100%, 742px);
      }

      .hero-title-wrap .sec-subtitle {
        white-space: normal;
      }

      .hero-cta {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 36px auto 0;
        display: flex;
      }

      .hero-cta:active {
        transform: translateY(1px);
      }

      .hero {
        overflow-x: visible;
        overflow-y: visible;
      }

      .hero-card-shell {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 1280px;
        height: 660px;
        min-height: 0;
        margin: 80px auto 0;
        transform: none;
        overflow: visible;
      }

      .hero-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 1680px;
        height: 660px;
        min-height: 0;
        margin-top: 0;
        padding: 0;
        display: block;
        overflow: visible;
      }

      .hero-links,
      .dot {
        display: block;
      }

      .ref-a,
      .ref-b,
      .gen-block,
      .video-block {
        position: absolute;
      }

      .ref-a {
        left: 0;
        top: 0;
      }

      .ref-b {
        left: 0;
        top: 254px;
      }

      .gen-block {
        left: 450px;
        top: 168px;
      }

      .video-block {
        left: 1200px;
        top: 0;
      }

      .ref-a img,
      .ref-b img {
        width: 200px;
        max-width: 200px;
        object-fit: cover;
      }

      .ref-a img {
        height: 200px;
      }

      .ref-b img {
        height: 180px;
      }

      .gen-block {
        width: 340px;
      }

      .gen-block .preview {
        width: 100%;
        height: 178px;
        border-radius: 9.571px;
      }

      .gen-prompt {
        left: -8px;
        top: calc(100% + 8px);
        width: 336px;
        height: 104px;
      }

      .video-prompt {
        left: 0;
        width: 320px;
        height: auto;
        min-height: 104px;
      }

      .video-block img,
      .video-block video {
        width: 480px;
        height: 267px;
      }

      .video-block {
        width: 480px;
      }

      html[lang="en"] .video-prompt {
        height: auto;
        min-height: 136px;
      }

      .hero-title-wrap .sec-subtitle {
        white-space: normal;
      }

      .video-model,
      .platform-card,
      .template-card {
        width: 100%;
      }

      .video-model {
        height: auto;
        min-height: 360px;
      }

      .video-model-bg {
        width: 100%;
        height: 100%;
      }

      .model-grid {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 24px;
      }

      .card-row {
        flex-wrap: wrap;
      }

      .small-card {
        height: auto;
        min-height: 300px;
      }

      .small-card.w560 {
        width: 100%;
      }

      .small-card.w400 {
        width: calc((100% - 20px) / 2);
      }

      .platform-card,
      .template-card {
        height: 418.225px;
        min-height: 418.225px;
        padding: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
      }

      .platform-card {
        height: 426px;
        min-height: 426px;
        padding: 30px;
      }

      .template-card {
        height: 442px;
        min-height: 442px;
        padding: 30px;
      }

      .platform-left,
      .template-left {
        width: auto;
        height: auto;
        min-width: 0;
      }

      .platform-left {
        flex: 0 0 clamp(340px, 35vw, 494px);
      }

      .template-left {
        flex: 0 0 clamp(340px, 35vw, 494px);
      }

      .platform-copy,
      .template-copy {
        width: 100%;
        height: auto;
        justify-content: flex-start;
        gap: 18px;
      }

      .platform-copy.interactive-copy,
      .template-copy.interactive-copy {
        height: 340px;
        justify-content: space-between;
        gap: 0;
      }

      .platform-img,
      .platform-video,
      .template-img-wrap {
        width: min(100%, 680px);
        max-width: 680px;
        flex: 0 1 680px;
        min-width: 0;
        height: auto;
      }

      .platform-img,
      .platform-video {
        aspect-ratio: 340 / 183;
        object-fit: cover;
      }

      .template-img-wrap {
        aspect-ratio: 340 / 191;
      }

      .template-img,
      .template-video {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        display: block;
      }

      .cta {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 520px;
        margin: 0 auto var(--p5-footer-gap);
      }

      .footer {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
      }
    }

    @media (max-width: 1280px) {
      .p2 .sec-subtitle {
        white-space: normal;
      }

      .sec-title {
        font-size: 40px;
      }

      .model-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .small-card.w400 {
        width: 100%;
      }

      .small-grid {
        flex-wrap: wrap;
        gap: 20px;
      }

      .small-grid.two-col .model-item,
      .small-grid.three-col .model-item {
        width: calc(50% - 10px);
      }

      .platform-copy .sub,
      .template-copy .sub {
        font-size: 20px;
      }

      .platform-left {
        flex-basis: clamp(300px, 40%, 430px);
      }

      .template-left {
        flex-basis: clamp(300px, 40%, 430px);
      }

      .platform-copy p,
      .template-copy p {
        font-size: 15px;
        line-height: 1.5;
      }

      .feature-title {
        font-size: 22px;
      }

      .feature-item.is-active .feature-title {
        font-size: 28px;
      }

      .feature-desc {
        font-size: 15px;
        line-height: 1.5;
      }
    }

    @media (max-width: 992px) {
      .page-content {
        padding: calc(104px + var(--promo-header-offset)) 16px 48px;
      }

      .header {
        top: var(--promo-header-offset);
        height: 52px;
        width: 100%;
      }

      .header-inner {
        padding: 0 16px;
      }

      .header-nav {
        gap: 14px;
      }

      .header-tab,
      .header-tab:link,
      .header-tab:visited {
        height: 52px;
        padding: 0 5px;
        font-size: 12px;
      }

      .header-actions {
        gap: 12px;
      }

      .btn-outline {
        height: 36px;
        padding: 8px 14px;
        font-size: 14px;
      }

      .btn-outline img {
        display: none;
      }

      .lang-btn {
        height: 36px;
        padding: 7px 14px;
        font-size: 12px;
        gap: 4px;
        border-radius: 10px;
      }

      .lang-btn-icon {
        width: 12px;
        height: 12px;
      }

      .sec-title {
        font-size: 32px;
      }

      .hero-card {
        width: 1680px;
        height: 660px;
        min-height: 660px;
        padding: 0;
      }

      .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .template-caption {
        position: absolute;
        margin-top: 0;
      }

      .platform-card,
      .template-card {
        flex-direction: row;
        align-items: stretch;
        gap: 16px;
      }

      .platform-left {
        flex-basis: clamp(250px, 42%, 340px);
      }

      .template-left {
        flex-basis: clamp(250px, 42%, 340px);
      }

      .platform-left,
      .template-left {
        gap: 14px;
      }

      .platform-copy h3,
      .template-copy h3 {
        font-size: 24px;
        line-height: 1.2;
      }

      .platform-copy .sub,
      .template-copy .sub {
        font-size: 18px;
      }

      .platform-copy p,
      .template-copy p {
        font-size: 14px;
        line-height: 1.5;
      }

      .feature-title {
        font-size: 18px;
      }

      .feature-item.is-active .feature-title {
        font-size: 24px;
      }

      .feature-desc {
        font-size: 14px;
        line-height: 1.5;
      }

      .cta h2 {
        font-size: 36px;
        white-space: normal;
      }

      .cta-core {
        gap: 40px;
      }

      .cta-copy {
        gap: 16px;
      }
    }

    @media (max-width: 768px) {
      .page {
        overflow: visible;
      }

      .page-content {
        padding: calc(94px + var(--promo-header-offset)) 0 28px;
        overflow: visible;
      }

      .header {
        top: var(--promo-header-offset);
        height: 44px;
        border-bottom: 1px solid rgba(51, 51, 51, 0.6);
        backdrop-filter: blur(7.5px);
      }

      .header-inner {
        width: min(calc(100% - 32px), 375px);
        max-width: 375px;
        padding: 0;
      }

      .header-nav {
        margin-left: 14px;
        gap: 10px;
      }

      .header-tab,
      .header-tab:link,
      .header-tab:visited {
        height: 44px;
        min-width: 0;
        padding: 0 4px;
        border-radius: 0;
        font-size: 10px;
      }

      .header-actions {
        flex: 0 0 auto;
        gap: 10px;
      }

      .logo {
        width: 101px;
        max-width: 101px;
      }

      .logo-image {
        max-width: 101px;
      }

      .btn-outline {
        height: 26px;
        min-width: 0;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 9px;
      }

      .lang-btn {
        height: 26px;
        padding: 0 10px;
        font-size: 10px;
        gap: 4px;
        border-radius: 10px;
      }

      .lang-btn-icon {
        width: 10px;
        height: 10px;
      }

      .section {
        width: min(100%, 375px);
        margin: 0 auto 40px;
      }

      .p2,
      .p3 {
        margin-bottom: 40px;
      }

      .pricing-section {
        width: min(100%, 375px);
        margin: 60px auto 24px;
      }

      .pricing-title-wrap,
      .pricing-plans-title {
        width: 100%;
        max-width: 347px;
      }

      .pricing-title-wrap .sec-title,
      .pricing-plans-title .sec-title {
        font-size: 30px;
        line-height: 1.2;
      }

      .pricing-title-wrap .sec-subtitle,
      .pricing-plans-title .sec-subtitle {
        width: 100%;
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
        font-size: 13px;
        line-height: 18px;
        white-space: normal;
      }

      .pricing-hero {
        min-height: 0;
      }

      .credit-cards {
        grid-template-columns: 1fr;
        width: 335px;
        gap: 16px;
        margin: 28px auto 0;
      }

      .credit-card {
        height: 186px;
        padding: 42px 24px 20px;
      }

      .credit-bonus {
        height: 30px;
        min-width: 82px;
        font-size: 12px;
      }

      .credit-amount {
        font-size: 16px;
        line-height: 20px;
      }

      .credit-price {
        font-size: 30px;
        line-height: 36px;
      }

      .credit-note {
        margin-top: 16px;
        font-size: 12px;
        line-height: 17px;
      }

      .pricing-credit-btn {
        width: 214px;
        height: 42px;
        margin-top: 28px;
        font-size: 14px;
      }

      .pricing-footnote {
        font-size: 11px;
        line-height: 16px;
      }

      .pricing-plans {
        margin-top: 70px;
      }

      .pricing-tabs {
        width: 335px;
        justify-content: flex-start;
        margin: 28px auto 34px;
        padding: 8px;
      }

      .pricing-tab {
        height: 32px;
        padding: 0 14px;
        font-size: 13px;
      }

      .pricing-tab + .pricing-tab {
        margin-left: 22px;
      }

      .pricing-tab + .pricing-tab::before {
        left: -11px;
      }

      .pricing-table-wrap {
        width: 335px;
        max-height: 640px;
        margin: 0 auto;
      }

      .pricing-table {
        font-size: 12px;
      }

      .pricing-table th,
      .pricing-table td {
        min-width: 110px;
        padding: 9px 10px;
      }

      .pricing-table th:first-child,
      .pricing-table td:first-child {
        min-width: 150px;
      }

      .pricing-promo {
        width: 335px;
        height: auto;
        min-height: 430px;
        margin: 60px auto 0;
        padding: 24px 20px 180px;
        border-radius: 16px;
        background: linear-gradient(180deg, #04091e 0%, #04091e 48%, rgba(2, 10, 29, 0.7) 100%);
      }

      .pricing-view-more {
        width: 335px;
        height: 46px;
        margin-top: -1px;
        font-size: 13px;
      }

      .pricing-promo::before {
        background: linear-gradient(180deg, #04091e 0%, #04091e 48%, rgba(2, 10, 29, 0.1) 100%);
      }

      .pricing-promo-copy {
        width: 100%;
      }

      .pricing-promo-badge {
        height: 32px;
        padding: 0 16px;
        font-size: 12px;
      }

      .pricing-promo-badge img {
        width: 16px;
        height: 16px;
      }

      .pricing-promo-kicker {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
      }

      .pricing-promo h2 {
        margin-top: 14px;
        font-size: 28px;
        line-height: 34px;
        white-space: normal;
      }

      .pricing-promo-desc {
        width: 100%;
        margin-top: 14px;
        font-size: 12px;
        line-height: 17px;
      }

      .pricing-promo-btn {
        width: 190px;
        height: 38px;
        margin-top: 18px;
        font-size: 13px;
      }

      .pricing-promo-art {
        top: auto;
        right: 0;
        bottom: 0;
        width: 260px;
        height: 200px;
        opacity: 0.92;
      }

      .p3 .platform-card,
      .p4 .template-card {
        margin-top: 20px;
      }

      .p3 .platform-card {
        min-height: 420px;
      }

      .p4 .template-card {
        min-height: 440px;
      }

      .hero-title-wrap {
        width: 100%;
        max-width: 347px;
      }

      .sec-title {
        font-size: 30px;
        line-height: 1.2;
      }

      .sec-subtitle {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.5;
      }

      .hero-title-wrap .sec-subtitle,
      .p2 .sec-subtitle {
        white-space: normal;
      }

      .hero-cta {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto 0;
        height: 29px;
        min-width: 93px;
        padding: 0 15px;
        border-radius: 12px;
        font-size: 12px;
      }

      .hero-card-shell {
        width: calc(100% - 30px);
        max-width: 345px;
        height: 176px;
        min-height: 0;
        margin: 18px auto 56px;
        overflow: visible;
      }

      .hero-card {
        position: relative;
        width: 345px;
        height: 176px;
        min-height: 0;
        border-radius: 10px;
        border-width: 0.5px;
        background-size: 24px 24px;
        transform-origin: top left;
      }

      .flow-node {
        cursor: default;
        touch-action: pan-y;
      }

      .ref-a,
      .ref-b,
      .gen-block,
      .video-block {
        position: absolute;
      }

      .ref-block {
        gap: 5px;
      }

      .ref-block label {
        font-size: 9px;
        gap: 6px;
      }

      .ref-a {
        left: 0;
        top: 0;
      }

      .ref-b {
        left: 0;
        top: 88px;
      }

      .ref-a img,
      .ref-b img {
        width: 72px;
        height: 72px;
        border-radius: 12px;
      }

      .gen-block {
        left: 147px;
        top: 88px;
        width: 170px;
      }

      .gen-block label {
        width: 170px;
        margin-bottom: 5px;
        font-size: 9px;
        gap: 6px;
      }

      .gen-card {
        width: 170px;
        padding: 0;
        border-width: 0.5px;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
        clip-path: inset(0 round 6px);
      }

      .gen-block .preview {
        width: 100%;
        height: 89px;
        border-radius: 6px;
      }

      .gen-prompt {
        left: -4px;
        top: calc(100% + 6px);
        width: 178px;
        height: 60px;
        padding: 4px;
        border-radius: 8px;
        border-width: 0.5px;
        opacity: 0;
        box-sizing: border-box;
      }

      .video-prompt {
        left: 0;
        width: 257px;
        height: auto;
        min-height: 60px;
      }

      .gen-block.is-prompt-visible .gen-prompt,
      .video-block.is-prompt-visible .video-prompt {
        opacity: 1;
      }

      .gen-prompt-inner {
        padding: 5px;
        border-radius: 6px;
        border-width: 0.5px;
      }

      .gen-prompt-text {
        width: 100%;
        max-width: 160px;
        margin: 0;
        color: #d9d9d9 !important;
        font-size: 8px;
        font-weight: 400 !important;
        line-height: normal;
      }

      .video-prompt .video-prompt-text {
        width: 100%;
        max-width: none;
        line-height: 1.35;
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      .gen-prompt-text::after {
        margin-left: 2px;
      }

      html[lang="en"] .gen-prompt {
        height: 72px;
      }

      html[lang="en"] .video-prompt {
        left: 0;
        width: 257px;
        height: auto;
        min-height: 72px;
      }

      html[lang="en"] .gen-prompt-inner {
        padding: 4px;
      }

      html[lang="en"] .gen-prompt-text {
        font-size: 7px;
        line-height: 1.35;
      }

      .video-block {
        left: 88px;
        top: 0;
        width: 257px;
        gap: 5px;
      }

      .video-block label {
        width: 257px;
        font-size: 10px;
        gap: 6px;
      }

      .video-block img,
      .video-block video {
        width: 257px;
        height: 145px;
        border-width: 0.5px;
        border-radius: 6px;
      }

      .dot,
      .dot.dot-c {
        width: 5px;
        height: 5px;
      }

      .dot {
        filter: drop-shadow(0 0 2px rgba(131, 249, 107, 0.3));
      }

      .p2 .title-wrap,
      .p3 .title-wrap,
      .p4 .title-wrap {
        width: 100%;
        max-width: 335px;
      }

      .p2 .sec-subtitle,
      .p4 .sec-subtitle {
        width: 335px;
        max-width: 100%;
        margin: 7px auto 0;
      }

      .p3 .sec-subtitle {
        width: 252px;
        max-width: 100%;
        margin: 7px auto 0;
      }

      .models-shell {
        width: 100% !important;
        max-width: 350px;
        height: auto !important;
        min-height: 0;
        margin: 20px auto 0;
        overflow: visible;
      }

      .models-wrap {
        width: 100% !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
        transform: none !important;
      }

      .video-model {
        width: 100%;
        height: 420px;
        min-height: 420px;
        padding: 22px;
        border-radius: 10px;
      }

      .video-model-bg {
        width: 100%;
        height: 100%;
      }

      .card-content {
        justify-content: flex-start;
        gap: 20px;
      }

      .card-title {
        font-size: 18px;
      }

      .model-grid {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px 30px;
        align-items: flex-start;
      }

      .video-model .model-item {
        width: calc((100% - 60px) / 3);
        min-width: 0;
        gap: 7.5px;
      }

      .video-model .model-item:nth-child(3n + 2),
      .video-model .model-item:nth-child(3n + 3) {
        transform: translateX(12px);
      }

      .model-item img {
        width: 27px;
        height: 27px;
      }

      .model-item p {
        font-size: 12px;
      }

      .video-model .model-item p {
        white-space: pre;
        word-break: keep-all;
        overflow-wrap: normal;
      }

      .coming {
        margin-left: 4px;
        font-size: 9px;
      }

      .card-row {
        width: 100%;
        margin-top: 0;
        flex-direction: column;
        gap: 15px;
      }

      .small-card,
      .small-card.w560,
      .small-card.w400 {
        width: 100%;
        height: 225px;
        min-height: 225px;
        padding: 22px;
        border-radius: 10px;
      }

      .small-grid {
        gap: 22px;
        flex-wrap: nowrap;
        margin-top: auto;
      }

      .small-grid.two-col .model-item,
      .small-grid.three-col .model-item {
        width: auto;
        min-width: 0;
        flex: 1 1 0;
      }

      .platform-card,
      .template-card {
        width: 100%;
        max-width: 375px;
        height: auto;
        min-height: 0;
        padding: 20px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .platform-video,
      .platform-img,
      .template-img-wrap {
        width: 100%;
        max-width: 335px;
        height: auto;
        aspect-ratio: 335 / 186.977;
        border-radius: 10px;
        flex: 0 0 auto;
        align-self: center;
        order: 1;
        margin: 0 auto;
      }

      .platform-video,
      .platform-img {
        clip-path: inset(0 round 10px);
      }

      .template-img,
      .template-video {
        border-radius: 10px;
      }

      .platform-left,
      .template-left {
        width: 100%;
        max-width: 335px;
        height: auto;
        min-width: 0;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        order: 2;
      }

      .platform-copy,
      .template-copy,
      .platform-copy.interactive-copy,
      .template-copy.interactive-copy {
        width: 100%;
        max-width: 335px;
        height: auto;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        order: 1;
        margin: 0 auto;
      }

      .platform-left .rail-wrap,
      .template-left .rail-wrap {
        order: 2;
        align-self: center;
      }

      .platform-left .platform-copy,
      .template-left .template-copy {
        order: 1;
      }

      .interactive-copy .feature-item {
        padding: 0;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
      }

      .platform-copy.interactive-copy .feature-item .feature-title,
      .template-copy.interactive-copy .feature-item .feature-title,
      .platform-copy.interactive-copy .feature-item.is-active .feature-desc,
      .template-copy.interactive-copy .feature-item.is-active .feature-desc {
        display: block;
        width: 100%;
        text-align: left;
      }

      .interactive-copy .feature-item:not(.is-active) {
        display: none;
      }

      .feature-title {
        font-size: 18px;
      }

      .platform-copy .feature-item.is-active .feature-title {
        font-size: 20px;
      }

      .template-copy .feature-item.is-active .feature-title {
        font-size: 24px;
      }

      html[lang="en"] .p3 .feature-title,
      html[lang="en"] .p4 .feature-title {
        width: 100%;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      html[lang="en"] .p3 .feature-item.is-active .feature-title,
      html[lang="en"] .p4 .feature-item.is-active .feature-title {
        font-size: 18px;
      }

      .feature-desc {
        font-size: 14px;
        line-height: 24px;
      }

      .platform-copy .feature-desc,
      .template-copy .feature-desc {
        width: 100%;
        max-width: 335px;
      }

      .rail-wrap {
        display: block;
        width: 100%;
        max-width: 335px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, rgba(102, 102, 102, 0.55) 0%, rgba(102, 102, 102, 0.3) 100%);
      }

      .rail-active {
        left: 0;
        top: 50%;
        width: calc(100% / 3);
        height: 4px;
        transform: translate3d(0, -50%, 0);
        transition: transform 220ms cubic-bezier(0.24, 0.76, 0.3, 1), width 200ms cubic-bezier(0.24, 0.76, 0.3, 1);
      }

      .template-caption {
        left: 12px;
        right: 12px;
        bottom: 10px;
        min-height: 22px;
        padding: 4px 6px;
        border-radius: 6px;
        font-size: 8px;
        line-height: 1.35;
        gap: 6px;
        backdrop-filter: blur(4px);
      }

      .template-caption.is-commerce {
        max-width: calc(100% - 24px);
        min-height: 22px;
        padding: 4px 6px;
      }

      html[lang="en"] .p4 .template-caption:not(.is-commerce) .template-caption-text-wrap {
        overflow: hidden;
      }

      html[lang="en"] .p4 .template-caption:not(.is-commerce) [data-template-caption-text] {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
      }

      .template-commerce-thumb {
        width: 16px;
        height: 16px;
        border-radius: 2px;
      }

      .template-commerce-token {
        height: 13px;
        padding: 0 3px;
        font-size: 7px;
        border-radius: 2px;
      }

      .template-commerce-join {
        font-size: 7px;
      }

      .cta {
        width: 100%;
        max-width: 375px;
        height: 211px;
        margin: 60px auto 24px;
      }

      .cta-bg-video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        opacity: 0.9;
        filter: saturate(1.02) contrast(1.02);
      }

      .cta-core {
        width: 335px;
        height: auto;
        gap: 12px;
      }

      .cta-copy {
        gap: 12px;
      }

      .cta h2 {
        font-size: 30px;
        line-height: 1.2;
        white-space: normal;
      }

      .cta-subtitle {
        font-size: 14px;
      }

      .cta .btn-primary {
        height: 31px;
        min-width: 132px;
        padding: 0 31px;
        font-size: 12px;
      }

      .footer {
        width: 100%;
        max-width: 375px;
        height: auto;
        min-height: 95px;
        gap: 10px;
        margin: 0 auto;
        padding-bottom: 10px;
      }

      .footer-logo,
      .footer-logo img {
        max-width: 150px;
      }

      .copyright {
        font-size: 9px;
      }

      .footer-meta {
        flex-wrap: wrap;
        gap: 8px 12px;
      }

      .footer-links {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .footer-link {
        font-size: 9px;
      }
    }

    /* P2 按设计稿锁定：模块不换行，横向承载 */
    @media (max-width: 1919px) and (min-width: 769px) {
      .p2 {
        margin-top: 0;
        overflow-x: hidden;
        overflow-y: visible;
        padding-bottom: 0;
      }

      .p2 .models-shell {
        width: 100%;
        max-width: 1280px;
        height: 870px;
        min-height: 0;
        margin: 42px auto 0;
        overflow: hidden;
      }

      .p2 .models-wrap {
        width: 1280px;
        height: 870px;
        margin: 0;
      }

      .p2 .video-model {
        width: 1280px;
        height: 550px;
        min-height: 550px;
      }

      .p2 .video-model .card-content {
        justify-content: space-between;
      }

      .p2 .video-model .model-grid {
        width: 1220px;
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        align-items: flex-start;
        column-gap: 30px;
        row-gap: 0;
        margin-top: auto;
      }

      .p2 .video-model .model-item {
        min-width: 0;
        gap: 10px;
        align-items: flex-start;
      }

      .p2 .video-model .model-item p {
        white-space: pre;
        word-break: normal;
      }

      .p2 .card-row {
        width: 1280px;
        flex-wrap: nowrap;
      }

      .p2 .small-grid {
        flex-wrap: nowrap;
        gap: 30px;
      }

      .p2 .small-grid.two-col .model-item {
        width: 155px;
      }

      .p2 .small-grid.three-col .model-item {
        width: 126px;
      }

      .p2 .small-card {
        min-height: 300px;
      }

      .p2 .small-card.w560 {
        width: 440px;
      }

      .p2 .small-card.w400 {
        width: 400px;
      }

      .p3,
      .p4 {
        padding-top: 0;
      }

      .p3 .platform-card {
        margin-top: var(--module-title-card-gap-desktop);
      }

      .p4 .template-card {
        margin-top: var(--module-title-card-gap-desktop);
      }
    }

    @media (max-width: 992px) and (min-width: 769px) {
      .p2 .models-shell {
        margin-top: 34px;
      }
    }

    @media (min-width: 1920px) {
      html[lang="en"] .home-page .hero-title-wrap .sec-title,
      html[lang="en"] .home-page .p2 .sec-title,
      html[lang="en"] .home-page .p4 .sec-title,
      html[lang="en"] .home-page .cta h2 {
        white-space: nowrap;
      }

      html[lang="en"] .home-page .p4 .title-wrap {
        width: max-content;
        max-width: none;
        margin-left: 50%;
        transform: translateX(-50%);
      }

      .p2 .video-model .model-grid {
        width: 1220px;
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        align-items: flex-start;
        column-gap: 30px;
        row-gap: 0;
      }

      .p2 .video-model .model-item {
        min-width: 0;
        gap: 10px;
        align-items: flex-start;
      }

      .p2 .video-model .model-item p {
        white-space: pre;
        word-break: normal;
      }
    }

    @media (max-width: 420px) {
      .consult-float {
        right: 20px;
        bottom: 20px;
      }

      .consult-panel {
        right: 20px;
        bottom: 84px;
        width: min(280px, calc(100vw - 40px));
        max-height: calc(100vh - 120px);
        overflow-y: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .header {
        transition: none;
      }

      .rail-active,
      .platform-img,
      .platform-video,
      .template-img,
      .feature-item,
      .consult-trigger,
      .consult-panel {
        transition: none;
      }

      .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
      }

    }


/* About page */
.about-page .header-nav {
  overflow: visible;
  scrollbar-width: none;
}

.about-page .header-nav::-webkit-scrollbar {
  display: none;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.about-page .page {
  overflow: visible;
}

.btn-about-header,
.about-mini-btn,
.about-cta-btn {
  border: 0;
  background: #fff;
  color: #151524;
  font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, filter 180ms ease;
}

.btn-about-header:hover,
.about-mini-btn:hover,
.about-cta-btn:hover,
.btn-about-header:focus-visible,
.about-mini-btn:focus-visible,
.about-cta-btn:focus-visible {
  filter: brightness(0.92);
  outline: none;
}

.btn-about-header:active,
.about-mini-btn:active,
.about-cta-btn:active {
  transform: translateY(1px);
}

.btn-about-header {
  min-width: 120px;
  height: 39px;
  padding: 0 30px;
  border-radius: 10px;
}

.about-page .page-content,
.about-content {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 160px 0 0;
  overflow: visible;
  background: #040404;
  font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content p {
  margin: 0;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content button,
.about-content a,
.about-content p,
.about-breadcrumb {
  font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
}

.about-breadcrumb {
  width: 1280px;
  margin: 0 auto 47px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.about-breadcrumb a,
.about-breadcrumb a:visited {
  color: inherit;
  text-decoration: none;
}

.about-hero,
.about-panel,
.about-why,
.about-mission,
.about-faq,
.about-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  position: relative;
  height: 460px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: #040404;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(270deg, rgba(4, 4, 4, 0) 0%, #040404 62.631%);
  pointer-events: none;
}

.about-hero-art {
  position: absolute;
  top: 0;
  left: 36.09375%;
  z-index: 0;
  display: block;
  width: 63.90625%;
  max-width: 818px;
  height: 460px;
  background: #040404;
  border-radius: 20px;
  object-fit: cover;
}

.about-hero-copy {
  position: absolute;
  z-index: 2;
  left: 40px;
  top: 84px;
  width: 543px;
  padding-top: 0;
  color: #fff;
}

.about-hero-copy h1,
.about-who-copy h2,
.about-why h2,
.about-mission h2,
.about-faq h2,
.about-cta-copy h2 {
  color: #ffffff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.about-hero-copy p {
  width: 523px;
  margin-top: 20px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.about-panel {
  margin-top: 97px;
  padding: 40px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-who-image {
  width: 600px;
  height: 520px;
  border-radius: 12px;
  object-fit: cover;
}

.about-who-copy {
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-rich-copy {
  margin-top: 20px;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.about-rich-copy p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.about-rich-copy p + p {
  margin-top: 12px;
}

.about-mini-btn {
  height: 39px;
  margin-top: 40px;
  padding: 0 30px;
  border-radius: 10px;
}

.about-why {
  margin-top: 120px;
  text-align: center;
}

.about-why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.about-why-card {
  position: relative;
  height: 480px;
  padding: 50px 30px;
  border: 1px solid #333;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.about-why-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 220ms ease;
}

.about-why-card:hover,
.about-why-card:focus-within {
  transform: translateY(-4px);
  border-color: transparent;
  background:
    linear-gradient(#111, #111) padding-box,
    linear-gradient(135deg, #666666 0%, #333333 100%) border-box;
  box-shadow: 0 0 34px rgba(102, 102, 102, 0.18);
}

.about-why-card:hover img,
.about-why-card:focus-within img {
  transform: scale(1.03);
  filter: saturate(1.08) brightness(1.05);
}

.about-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(6, 6, 6, 0.56) 40%, rgba(0, 0, 0, 0.9) 60%, rgba(0, 0, 0, 0.9) 100%);
}

.about-why-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}

.about-why-copy h3 {
  width: 100%;
  max-width: 310px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
}

.about-why-copy p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.about-mission {
  margin-top: 119px;
  text-align: center;
}

.about-mission-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 300px);
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.about-mission-card {
  height: 260px;
  padding: 30px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  color: #ffffff;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.about-mission-card:hover,
.about-mission-card:focus-within {
  transform: translateY(-4px);
  border-color: transparent;
  background:
    linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)) padding-box,
    linear-gradient(135deg, #666666 0%, #333333 100%) border-box;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
}

.about-mission-card img {
  width: 36px;
  height: 36px;
  display: block;
}

.about-mission-card h3 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.about-mission-card p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.about-faq {
  width: 1000px;
  margin-top: 119px;
  height: 560px;
  text-align: center;
}

.about-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-faq-item {
  width: 100%;
  min-height: 63px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.4) 100%);
  backdrop-filter: blur(6.674px);
  color: #ffffff;
  overflow: hidden;
  transition: background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.about-faq-item.is-open {
  border-color: #222222;
  background: rgba(34, 34, 34, 0.4);
}

.about-faq-item:hover {
  border-color: #333333;
  background: rgba(34, 34, 34, 0.5);
}

.about-faq-question {
  width: 100%;
  min-height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  pointer-events: none;
}

.about-faq-question:focus-visible {
  outline: none;
}

.about-faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.about-faq-icon::before,
.about-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.about-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.about-faq-item.is-open .about-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.about-faq-answer {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin-top 220ms ease, opacity 220ms ease;
}

.about-faq-item.is-open .about-faq-answer {
  margin-top: 10px;
  opacity: 1;
}

.about-faq-answer p {
  width: 954px;
  max-width: 100%;
  color: #c8c8c8;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.about-cta {
  position: relative;
  height: 260px;
  margin-top: 161px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.about-cta-copy {
  position: relative;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-cta-copy p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}

.about-cta-btn {
  height: 48px;
  padding: 0 40px;
  border-radius: 12px;
}

.about-page .about-footer {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 160px;
  margin-top: 64px;
  background: #040000;
}

@media (max-width: 1320px) {
  .about-breadcrumb,
  .about-hero,
  .about-panel,
  .about-why,
  .about-mission,
  .about-cta {
    width: calc(100% - 48px);
  }

  .about-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .about-mission-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-who-image {
    width: 48%;
  }

  .about-who-copy {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .about-page .page-content,
  .about-content {
    padding-top: 104px;
  }

  .btn-about-header {
    min-width: 96px;
    height: 36px;
    padding: 0 18px;
    font-size: 14px;
  }

  .about-breadcrumb,
  .about-hero,
  .about-panel,
  .about-why,
  .about-mission,
  .about-cta,
  .about-faq {
    width: calc(100% - 32px);
  }

  .about-hero-copy {
    width: min(52%, 520px);
  }

  .about-hero-copy h1,
  .about-who-copy h2,
  .about-why h2,
  .about-mission h2,
  .about-faq h2,
  .about-cta-copy h2 {
    font-size: 36px;
  }

  .about-hero-copy p {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .about-panel {
    gap: 28px;
  }

  .about-who-image {
    height: 440px;
  }

  .about-rich-copy,
  .about-why-copy p,
  .about-mission-card p {
    font-size: 14px;
    line-height: 21px;
  }

  .about-why-grid,
  .about-mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-faq-item {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-page .page-content,
  .about-content {
    padding-top: 84px;
  }

  .about-breadcrumb,
  .about-hero,
  .about-panel,
  .about-why,
  .about-mission,
  .about-cta,
  .about-faq {
    width: min(100% - 32px, 375px);
  }

  .about-breadcrumb {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .about-hero {
    height: 520px;
    background: #040404;
  }

  .about-hero-art {
    left: 0;
    width: 100%;
    max-width: none;
    height: 260px;
    top: 210px;
    object-position: center;
  }

  .about-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding-top: 0;
  }

  .about-hero-copy h1,
  .about-who-copy h2,
  .about-why h2,
  .about-mission h2,
  .about-faq h2,
  .about-cta-copy h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .about-hero-copy p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .about-panel {
    margin-top: 50px;
    padding: 18px;
    flex-direction: column;
  }

  .about-who-image,
  .about-who-copy {
    width: 100%;
  }

  .about-who-image {
    height: auto;
    aspect-ratio: 600 / 520;
  }

  .about-who-copy {
    gap: 0;
  }

  .about-rich-copy {
    margin-top: 14px;
  }

  .about-mini-btn {
    margin-top: 24px;
  }

  .about-why,
  .about-mission {
    margin-top: 70px;
    height: auto;
  }

  .about-faq {
    margin-top: 70px;
    height: 520px;
  }

  .about-why-grid,
  .about-mission-grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-why-card {
    height: 390px;
    padding: 34px 24px;
  }

  .about-why-copy h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .about-mission-card {
    height: auto;
    min-height: 210px;
    padding: 24px;
  }

  .about-faq-list {
    margin-top: 28px;
    gap: 12px;
  }

  .about-faq-item {
    min-height: 58px;
    padding: 16px;
    font-size: 13px;
  }

  .about-faq-question {
    font-size: 13px;
    line-height: 18px;
  }

  .about-faq-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .about-faq-answer p {
    font-size: 13px;
    line-height: 19px;
  }

  .about-cta {
    height: 300px;
    margin-top: 70px;
  }

  .about-cta-copy {
    width: 90%;
    gap: 14px;
  }

  .about-cta-copy p {
    font-size: 14px;
  }

  .about-cta-btn {
    height: 36px;
    padding: 0 24px;
    font-size: 13px;
  }

  .about-page .about-footer {
    height: auto;
    min-height: 95px;
    margin-top: 36px;
  }
}


/* Final About color fidelity overrides */
.about-page .reveal-section {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.about-page .header-tab,
.about-page .header-tab:link,
.about-page .header-tab:visited {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.about-page .header-tab.is-active,
.about-page .header-tab.is-active:link,
.about-page .header-tab.is-active:visited {
  color: #4ce2f3 !important;
  -webkit-text-fill-color: #4ce2f3 !important;
}

.about-page .about-breadcrumb,
.about-page .about-breadcrumb a,
.about-page .about-breadcrumb span,
.about-page .about-hero-copy h1,
.about-page .about-hero-copy p,
.about-page .about-who-copy h2,
.about-page .about-rich-copy,
.about-page .about-rich-copy p,
.about-page .about-why h2,
.about-page .about-why-copy h3,
.about-page .about-why-copy p,
.about-page .about-mission h2,
.about-page .about-mission-card h3,
.about-page .about-mission-card p,
.about-page .about-faq h2,
.about-page .about-faq-question,
.about-page .about-faq-answer p,
.about-page .about-cta-copy h2,
.about-page .about-cta-copy p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

.about-page .about-hero-copy p,
.about-page .about-rich-copy,
.about-page .about-rich-copy p,
.about-page .about-why-copy p,
.about-page .about-mission-card p,
.about-page .about-faq-answer p,
.about-page .about-cta-copy p {
  color: #c8c8c8 !important;
  -webkit-text-fill-color: #c8c8c8 !important;
}

.about-page .about-breadcrumb,
.about-page .about-breadcrumb a,
.about-page .about-breadcrumb span,
.about-page .about-hero-copy p,
.about-page .about-rich-copy,
.about-page .about-rich-copy p,
.about-page .about-why-copy p,
.about-page .about-mission-card p {
  font-weight: 400 !important;
}

.about-page .about-hero-copy h1,
.about-page .about-who-copy h2,
.about-page .about-why h2,
.about-page .about-why-copy h3,
.about-page .about-mission h2,
.about-page .about-mission-card h3,
.about-page .about-faq h2,
.about-page .about-faq-question,
.about-page .about-cta-copy h2 {
  font-weight: 700 !important;
}

.about-page .about-faq-answer p {
  font-weight: 400 !important;
}

.about-page .about-cta-copy p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.about-page .about-cta-copy p {
  font-weight: 600 !important;
}

.about-page .btn-about-header,
.about-page .about-mini-btn,
.about-page .about-cta-btn {
  color: #151524 !important;
  -webkit-text-fill-color: #151524 !important;
  font-weight: 500 !important;
}

.about-page .about-footer .copyright,
.about-page .about-footer .footer-link,
.about-page .about-footer .footer-link:link,
.about-page .about-footer .footer-link:visited {
  color: #999999 !important;
  -webkit-text-fill-color: #999999 !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}

.legal-page .page {
  overflow: visible;
}

.legal-page .page-content,
.legal-content {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 140px 20px 0;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 0, rgba(76, 226, 243, 0.16), transparent 420px),
    #040404;
  font-family: "Montserrat", "Lato", "Noto Sans SC", sans-serif;
}

.legal-section {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.legal-heading {
  margin-bottom: 28px;
}

.legal-kicker,
.legal-kicker:visited {
  display: inline-flex;
  margin-bottom: 16px;
  color: #4ce2f3;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.legal-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: clamp(24px, 4vw, 48px);
}

.legal-doc-body {
  color: #d5d5d5;
  font-family: "Lato", "Noto Sans SC", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}

.legal-doc-body h2,
.legal-doc-body h3,
.legal-doc-body h4,
.legal-doc-body p,
.legal-doc-body ul {
  margin: 0;
}

.legal-doc-body h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-doc-body h2:first-child {
  margin-top: 0;
}

.legal-doc-body h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.legal-doc-body h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.legal-doc-body p {
  margin-top: 12px;
}

.legal-doc-body ul {
  margin-top: 10px;
  padding-left: 24px;
  list-style: disc;
}

.legal-doc-body li {
  margin-top: 8px;
  padding-left: 4px;
}

.legal-doc-body .legal-list-level-1 {
  margin-left: 24px;
  list-style-type: circle;
}

.legal-doc-body .legal-list-level-2,
.legal-doc-body .legal-list-level-3 {
  margin-left: 48px;
  list-style-type: square;
}

.legal-doc-body strong {
  color: #ffffff;
  font-weight: 700;
}

.legal-doc-body em {
  font-style: italic;
}

.legal-doc-body u {
  text-underline-offset: 3px;
}

.legal-page .legal-footer {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .legal-page .page-content,
  .legal-content {
    padding: 104px 16px 0;
  }

  .legal-heading {
    margin-bottom: 20px;
  }

  .legal-card {
    border-radius: 18px;
  }

  .legal-doc-body {
    font-size: 13px;
    line-height: 1.7;
  }

  .legal-doc-body h2 {
    margin-top: 28px;
    font-size: 22px;
  }

  .legal-doc-body h3 {
    margin-top: 22px;
    font-size: 17px;
  }

  .legal-doc-body h4 {
    font-size: 15px;
  }

  .legal-page .legal-footer {
    margin-top: 48px;
  }
}

/* Pricing mobile layout fixes */
@media (max-width: 768px) {
  .pricing-page .page-content {
    width: 100%;
    max-width: none;
    padding: calc(84px + var(--promo-header-offset)) 16px 28px;
    overflow: visible;
  }

  .pricing-page .pricing-section {
    width: 100%;
    max-width: 375px;
    margin: 0 auto 24px;
  }

  .pricing-page .pricing-title-wrap,
  .pricing-page .pricing-plans-title,
  .pricing-page .pricing-title-wrap .sec-subtitle,
  .pricing-page .pricing-plans-title .sec-subtitle,
  .pricing-page .credit-cards,
  .pricing-page .pricing-tabs,
  .pricing-page .pricing-table-wrap,
  .pricing-page .pricing-view-more,
  .pricing-page .pricing-promo,
  .pricing-page .pricing-about-cta {
    width: 100%;
    max-width: 335px;
  }

  .pricing-page .credit-card {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .pricing-page .pricing-table-wrap {
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-page .pricing-about-cta {
    height: 300px;
    margin-top: 70px;
  }

  .pricing-page .pricing-about-cta-copy {
    width: 90%;
    gap: 14px;
  }

  .pricing-page .pricing-about-cta-copy h2 {
    font-size: 30px;
    line-height: 1.2;
    white-space: normal;
  }

  .pricing-page .pricing-about-cta-copy p {
    width: 100%;
    font-size: 14px;
    line-height: 1.35;
  }

  .pricing-page .pricing-about-cta-btn {
    height: 36px;
    min-width: 0;
    padding: 0 24px;
    font-size: 13px;
  }

  .pricing-page .pricing-table th:first-child,
  .pricing-page .pricing-table .model-cell {
    min-width: 150px;
    text-align: left;
  }

  .pricing-page .pricing-table td:first-child:not(.model-cell) {
    text-align: center;
  }

  .pricing-page .pricing-promo {
    box-sizing: border-box;
  }

  .pricing-page .footer {
    width: 100%;
    max-width: 375px;
  }
}

@media (max-width: 768px) {
  html[lang="en"] .header {
    top: var(--promo-header-offset);
    height: 60px;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    overflow: visible;
    z-index: 100;
  }

  html[lang="en"] .header-inner {
    position: relative;
    width: min(100%, 375px);
    max-width: 375px;
    height: 60px;
    padding: 0 15px;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.8);
    box-shadow: none;
    backdrop-filter: blur(10px);
  }

  html[lang="en"] .header-nav,
  html[lang="en"] .header-actions {
    display: none;
  }

  html[lang="en"] .logo {
    width: 108px;
    max-width: 108px;
  }

  html[lang="en"] .logo-image {
    max-width: 108px;
  }

  html[lang="en"] .mobile-nav-toggle {
    display: inline-flex;
  }

  html[lang="en"] .mobile-nav-panel {
    top: 60px;
  }
}

@media (max-width: 768px) {
  html[lang="en"] .about-page .about-hero {
    height: 520px;
    background: #040404;
  }

  html[lang="en"] .about-page .about-hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    width: 100%;
    height: 240px;
    background: linear-gradient(180deg, #040404 0%, rgba(4, 4, 4, 0.94) 68%, rgba(4, 4, 4, 0) 100%);
    pointer-events: none;
  }

  html[lang="en"] .about-page .about-hero::after {
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.5) 0%, rgba(4, 4, 4, 0.34) 42%, rgba(4, 4, 4, 0.08) 100%);
  }

  html[lang="en"] .about-page .about-hero-art {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 260px;
    top: 230px;
    object-position: center;
  }

  html[lang="en"] .about-page .about-hero-copy {
    position: relative;
    z-index: 3;
    left: auto;
    top: auto;
    width: 100%;
    padding: 28px 22px 0;
  }

  html[lang="en"] .about-page .about-hero-copy h1,
  html[lang="en"] .about-page .about-who-copy h2,
  html[lang="en"] .about-page .about-why h2,
  html[lang="en"] .about-page .about-mission h2,
  html[lang="en"] .about-page .about-faq h2,
  html[lang="en"] .about-page .about-cta-copy h2,
  html[lang="en"] .sec-title,
  html[lang="en"] .hero-title-wrap .sec-title,
  html[lang="en"] .p2 .sec-title,
  html[lang="en"] .p3 .sec-title,
  html[lang="en"] .p4 .sec-title,
  html[lang="en"] .home-about-cta-copy h2,
  html[lang="en"] .cta h2,
  html[lang="en"] .pricing-title-wrap .sec-title,
  html[lang="en"] .pricing-plans-title .sec-title,
  html[lang="en"] .pricing-about-cta-copy h2,
  html[lang="en"] .legal-heading h1,
  html[lang="en"] .legal-doc-body h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  html[lang="en"] .home-page .page-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  html[lang="en"] .home-page .section {
    width: 100%;
    max-width: 345px;
  }

  html[lang="en"] .home-page .hero-card-shell {
    width: 345px;
    max-width: 345px;
    height: 176px;
    min-height: 0;
    margin: 24px auto 56px;
    overflow: visible;
  }

  html[lang="en"] .home-page .hero-card {
    position: relative;
    width: 345px;
    height: 176px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  html[lang="en"] .home-page .hero-links,
  html[lang="en"] .home-page .dot {
    display: none;
  }

  html[lang="en"] .home-page .ref-block,
  html[lang="en"] .home-page .video-block {
    gap: 5px;
  }

  html[lang="en"] .home-page .ref-block label,
  html[lang="en"] .home-page .video-block label {
    width: 100%;
    font-size: 9px;
    line-height: 1;
  }

  html[lang="en"] .home-page .ref-a {
    left: 0;
    top: 0;
  }

  html[lang="en"] .home-page .ref-b {
    left: 0;
    top: 88px;
  }

  html[lang="en"] .home-page .ref-a img,
  html[lang="en"] .home-page .ref-b img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }

  html[lang="en"] .home-page .video-block {
    left: 88px;
    top: 0;
    width: 257px;
  }

  html[lang="en"] .home-page .video-block label {
    width: 257px;
    font-size: 9px;
  }

  html[lang="en"] .home-page .video-block video {
    width: 257px;
    height: 145px;
    border-radius: 10px;
  }
}

/* English Seedance page */
.seedance-page,
.seedance-page .page {
  background: #040404;
}

.seedance-page .seedance-content {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  background: #040404;
}

.seedance-page .seedance-breadcrumb,
.seedance-page .seedance-hero,
.seedance-page .seedance-workflow,
.seedance-page .seedance-version,
.seedance-page .seedance-scenes,
.seedance-page .seedance-more,
.seedance-page .seedance-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.seedance-page .seedance-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 12px;
  line-height: 17px;
}

.seedance-page .seedance-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.seedance-page .seedance-breadcrumb strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.seedance-page .seedance-hero {
  position: relative;
  height: 620px;
  margin-top: 43px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.seedance-page .seedance-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.seedance-page .seedance-hero-video {
  opacity: 0;
  z-index: 2;
}

.seedance-page .seedance-hero.is-video-ready .seedance-hero-video {
  opacity: 1;
}

.seedance-page .seedance-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.seedance-page .seedance-hero.is-video-ready .seedance-hero-copy {
  opacity: 1;
}

.seedance-page .seedance-hero-copy h1 {
  position: absolute;
  left: 50%;
  top: 200px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.seedance-page .seedance-hero-copy > p {
  position: absolute;
  left: 50%;
  top: 298px;
  width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.seedance-page .seedance-badge {
  position: absolute;
  left: calc(50% + 230px);
  top: 200px;
  padding: 8px 20px;
  border-radius: 20px;
  background: radial-gradient(80% 80% at 72% 62%, rgba(121, 253, 176, 0.88) 0%, rgba(88, 245, 215, 0) 100%), linear-gradient(110deg, #bffee1 9%, #05cefe 78%);
  color: #040000;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.seedance-page .seedance-hero-prompt {
  position: absolute;
  left: 124px;
  right: 104px;
  bottom: 30px;
  min-height: 66px;
  padding: 9px 9px 9px 10px;
  border: 1px solid #313136;
  border-radius: 12px;
  background: rgba(31, 31, 33, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.seedance-page .seedance-hero-prompt span {
  width: 800px;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 14px;
  line-height: normal;
}

.seedance-page .seedance-hero-prompt button,
.seedance-page .seedance-cta-copy button {
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151524;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.seedance-page .seedance-hero-prompt button {
  flex: 0 0 202px;
}

.seedance-page .seedance-hero-prompt button:hover,
.seedance-page .seedance-hero-prompt button:focus-visible,
.seedance-page .seedance-cta-copy button:hover,
.seedance-page .seedance-cta-copy button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  outline: none;
}

.seedance-page .seedance-workflow {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.seedance-page .seedance-model-intro {
  width: 1000px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.seedance-page .seedance-core {
  width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.seedance-page .seedance-core h2,
.seedance-page .seedance-section-heading h2,
.seedance-page .seedance-scenes h2,
.seedance-page .seedance-more h2,
.seedance-page .seedance-faq h2,
.seedance-page .seedance-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.seedance-page .seedance-core-grid {
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 40px;
}

.seedance-page .seedance-core-card {
  width: 620px;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  color: #aaa;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.seedance-page .seedance-core-card:hover,
.seedance-page .seedance-core-card:focus-within,
.seedance-page .seedance-version-row:hover {
  border-color: transparent;
  background: linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)) padding-box, linear-gradient(135deg, #666 0%, #333 100%) border-box;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
  transform: translateY(-4px);
}

.seedance-page .seedance-core-icon {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.seedance-page .seedance-core-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.seedance-page .seedance-core-card p {
  margin: 0;
  color: #aaa;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.seedance-page .seedance-version,
.seedance-page .seedance-scenes,
.seedance-page .seedance-more,
.seedance-page .seedance-faq,
.seedance-page .seedance-cta {
  margin-top: 120px;
}

.seedance-page .seedance-section-heading {
  width: 892px;
  max-width: 100%;
  margin: 0 auto 60px;
}

.seedance-page .seedance-version-table {
  width: 100%;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.seedance-page .seedance-version-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: -1px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.seedance-page .seedance-version-row > div {
  min-height: 40px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seedance-page .seedance-version-head > div {
  min-height: 62px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.seedance-page .seedance-version-row:not(.seedance-version-head) > div:nth-child(2) {
  opacity: 0.6;
}

.seedance-page .seedance-scenes {
  text-align: center;
}

.seedance-page .seedance-scenes-grid {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.seedance-page .seedance-scene-card {
  position: relative;
  width: 400px;
  height: 580px;
  margin: 0;
  border: 1px solid #333;
  border-radius: 20px;
  background: #111;
  overflow: hidden;
  flex: 0 0 400px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.seedance-page .seedance-scene-card:hover {
  border-color: transparent;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
  transform: translateY(-4px);
}

.seedance-page .seedance-scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform 260ms ease, filter 260ms ease;
}

.seedance-page .seedance-scene-card:hover img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.03);
}

.seedance-page .seedance-scene-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 49%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(0, 0, 0, 0.7) 56%);
  pointer-events: none;
}

.seedance-page .seedance-scene-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 60px;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.seedance-page .seedance-scene-copy h3 {
  width: 320px;
  margin: 0 auto;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.seedance-page .seedance-scene-copy p {
  width: 320px;
  max-width: 100%;
  margin: 10px auto 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.seedance-page .seedance-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.seedance-page .seedance-more-list {
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
}

.seedance-page .seedance-more-pill {
  min-width: 128px;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #666;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.seedance-page .seedance-more-pill.is-highlighted {
  border-color: #fff;
  background: #fff;
  color: #151524;
}

.seedance-page .seedance-more-pill.is-highlighted::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.seedance-page .seedance-faq {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  text-align: center;
}

.seedance-page .seedance-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seedance-page .seedance-faq-item {
  width: 100%;
  min-height: 63px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.4) 100%);
  backdrop-filter: blur(6.674px);
  color: #ffffff;
  overflow: hidden;
  transition: background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.seedance-page .seedance-faq-item.is-open {
  border-color: #222222;
  background: rgba(34, 34, 34, 0.4);
}

.seedance-page .seedance-faq-item:hover {
  border-color: #333333;
  background: rgba(34, 34, 34, 0.5);
}

.seedance-page .seedance-faq-question {
  width: 100%;
  min-height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  pointer-events: none;
}

.seedance-page .seedance-faq-question:focus-visible {
  outline: none;
}

.seedance-page .seedance-faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.seedance-page .seedance-faq-icon::before,
.seedance-page .seedance-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.seedance-page .seedance-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.seedance-page .seedance-faq-item.is-open .seedance-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.seedance-page .seedance-faq-answer {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin-top 220ms ease, opacity 220ms ease;
}

.seedance-page .seedance-faq-item.is-open .seedance-faq-answer {
  margin-top: 10px;
  opacity: 1;
}

.seedance-page .seedance-faq-answer p {
  width: 954px;
  max-width: 100%;
  margin: 0;
  color: #c8c8c8;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.seedance-page .seedance-cta {
  position: relative;
  height: 260px;
  border: 1px solid #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #040608;
}

.seedance-page .seedance-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.seedance-page .seedance-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.seedance-page .seedance-cta-copy {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.seedance-page .seedance-cta-copy p {
  margin: -10px 0 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: normal;
}

.seedance-page .seedance-cta-copy button {
  min-width: 160px;
  padding: 0 40px;
  color: #040000;
}

.seedance-page .seedance-footer {
  position: relative;
  top: auto;
  left: auto;
  width: 1280px;
  max-width: 100%;
  height: 344px;
  margin: 120px auto 0;
}

@media (max-width: 1320px) {
  .seedance-page .seedance-breadcrumb,
  .seedance-page .seedance-hero,
  .seedance-page .seedance-workflow,
  .seedance-page .seedance-version,
  .seedance-page .seedance-scenes,
  .seedance-page .seedance-more,
  .seedance-page .seedance-cta,
  .seedance-page .seedance-footer {
    width: calc(100% - 48px);
  }

  .seedance-page .seedance-core,
  .seedance-page .seedance-core-grid,
  .seedance-page .seedance-more-list {
    width: 100%;
  }

  .seedance-page .seedance-core-card {
    width: calc((100% - 40px) / 2);
  }

  .seedance-page .seedance-hero-prompt {
    left: 9.7%;
    right: 8.1%;
  }

  .seedance-page .seedance-hero-prompt span {
    width: auto;
    flex: 1 1 auto;
  }
}

@media (max-width: 768px) {
  .seedance-page .seedance-content {
    padding-top: 84px;
  }

  .seedance-page .seedance-breadcrumb,
  .seedance-page .seedance-hero,
  .seedance-page .seedance-workflow,
  .seedance-page .seedance-version,
  .seedance-page .seedance-scenes,
  .seedance-page .seedance-more,
  .seedance-page .seedance-cta,
  .seedance-page .seedance-footer {
    width: calc(100% - 30px);
    max-width: 375px;
  }

  .seedance-page .seedance-hero {
    height: 300px;
    margin-top: 56px;
    border-radius: 12px;
  }

  .seedance-page .seedance-hero-copy h1 {
    top: 70px;
    font-size: 34px;
    line-height: 42px;
  }

  .seedance-page .seedance-hero-copy > p {
    top: 120px;
    width: calc(100% - 40px);
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  .seedance-page .seedance-badge {
    left: calc(50% + 96px);
    top: 72px;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 16px;
  }

  .seedance-page .seedance-hero-prompt {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 4px;
    border-radius: 8px;
    gap: 6px;
  }

  .seedance-page .seedance-hero-prompt span {
    font-size: 9px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .seedance-page .seedance-hero-prompt button {
    flex-basis: 116px;
    height: 36px;
    border-radius: 8px;
    font-size: 12px;
  }

  .seedance-page .seedance-workflow {
    margin-top: 70px;
    gap: 40px;
  }

  .seedance-page .seedance-model-intro,
  .seedance-page .seedance-core,
  .seedance-page .seedance-core-grid {
    width: 335px;
  }

  .seedance-page .seedance-model-intro {
    font-size: 13px;
    line-height: 20px;
  }

  .seedance-page .seedance-core {
    gap: 28px;
  }

  .seedance-page .seedance-core h2,
  .seedance-page .seedance-section-heading h2,
  .seedance-page .seedance-scenes h2,
  .seedance-page .seedance-more h2,
  .seedance-page .seedance-faq h2,
  .seedance-page .seedance-cta-copy h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .seedance-page .seedance-core-grid {
    flex-direction: column;
    gap: 16px;
  }

  .seedance-page .seedance-core-card {
    width: 335px;
    min-height: 0;
    padding: 20px;
    border-radius: 14px;
    gap: 8px;
  }

  .seedance-page .seedance-core-icon {
    width: 36px;
    height: 36px;
  }

  .seedance-page .seedance-core-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .seedance-page .seedance-core-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .seedance-page .seedance-version,
  .seedance-page .seedance-scenes,
  .seedance-page .seedance-more,
  .seedance-page .seedance-faq,
  .seedance-page .seedance-cta,
  .seedance-page .seedance-footer {
    margin-top: 70px;
  }

  .seedance-page .seedance-section-heading {
    width: 335px;
    margin-bottom: 28px;
  }

  .seedance-page .seedance-version-table {
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
    line-height: 18px;
  }

  .seedance-page .seedance-version-row {
    width: 600px;
    grid-template-columns: 180px 180px 240px;
  }

  .seedance-page .seedance-scenes-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .seedance-page .seedance-scene-card {
    width: 335px;
    height: 486px;
    border-radius: 16px;
    flex-basis: 335px;
  }

  .seedance-page .seedance-scene-copy {
    left: 24px;
    right: 24px;
    bottom: 44px;
  }

  .seedance-page .seedance-scene-copy h3,
  .seedance-page .seedance-scene-copy p {
    width: 260px;
  }

  .seedance-page .seedance-scene-copy h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .seedance-page .seedance-scene-copy p {
    font-size: 13px;
    line-height: 20px;
  }

  .seedance-page .seedance-more {
    gap: 28px;
  }

  .seedance-page .seedance-more-list {
    width: 335px;
    gap: 12px;
  }

  .seedance-page .seedance-more-pill {
    min-width: 0;
    height: 34px;
    padding: 0 16px;
    font-size: 12px;
  }

  .seedance-page .seedance-faq {
    width: 335px;
    height: auto;
  }

  .seedance-page .seedance-faq-list {
    margin-top: 28px;
    gap: 12px;
  }

  .seedance-page .seedance-faq-question {
    padding: 0;
    font-size: 13px;
    line-height: 18px;
  }

  .seedance-page .seedance-faq-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .seedance-page .seedance-faq-answer {
    padding: 0;
  }

  .seedance-page .seedance-faq-answer p {
    margin: 0;
    font-size: 13px;
    line-height: 19px;
  }

  .seedance-page .seedance-cta {
    height: 300px;
    border-radius: 16px;
  }

  .seedance-page .seedance-cta-copy {
    width: 90%;
    gap: 14px;
  }

  .seedance-page .seedance-cta-copy p {
    width: 100%;
    margin-top: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .seedance-page .seedance-cta-copy button {
    height: 36px;
    min-width: 0;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .seedance-page .seedance-footer {
    height: auto;
    min-height: 260px;
  }
}

/* English GPT Image page */
.gpt-image-page,
.gpt-image-page .page {
  background: #040404;
}

.gpt-image-page .gpt-image-content {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  background: #040404;
}

.gpt-image-page .gpt-image-breadcrumb,
.gpt-image-page .gpt-image-intro,
.gpt-image-page .gpt-image-version,
.gpt-image-page .gpt-image-scenes,
.gpt-image-page .gpt-image-more,
.gpt-image-page .gpt-image-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.gpt-image-page .gpt-image-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 12px;
  line-height: 17px;
}

.gpt-image-page .gpt-image-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.gpt-image-page .gpt-image-breadcrumb strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.gpt-image-page .gpt-image-hero {
  position: relative;
  width: 100vw;
  max-width: none;
  height: 620px;
  margin: 43px calc(50% - 50vw) 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.gpt-image-page .gpt-image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(4, 4, 4, 0.12) 0%, rgba(4, 4, 4, 0.68) 100%);
  pointer-events: none;
}

.gpt-image-page .gpt-hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  overflow: hidden;
  pointer-events: none;
}

.gpt-image-page .gpt-hero-gallery-track {
  height: 100%;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: gptImageGalleryScroll 46s linear infinite;
}

.gpt-image-page .gpt-gallery-set {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.gpt-image-page .gpt-hero-gallery img {
  width: 440px;
  border: 1px solid #666;
  border-radius: 30px;
  display: block;
  object-fit: cover;
}

.gpt-image-page .gpt-hero-gallery img.is-tall {
  height: 620px;
}

.gpt-image-page .gpt-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 440px;
}

.gpt-image-page .gpt-gallery-stack img {
  width: 440px;
  height: 300px;
}

.gpt-image-page .gpt-image-badge {
  position: absolute;
  left: 100%;
  top: -18px;
  z-index: 1;
  margin-left: 12px;
  padding: 8px 20px;
  border-radius: 20px;
  background: radial-gradient(80% 80% at 72% 62%, rgba(121, 253, 176, 0.88) 0%, rgba(88, 245, 215, 0) 100%), linear-gradient(110deg, #bffee1 9%, #05cefe 78%);
  color: #040000;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.gpt-image-page .gpt-image-title-line {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.gpt-image-page .gpt-image-hero-copy {
  position: absolute;
  left: 50%;
  top: 232px;
  z-index: 2;
  width: 760px;
  padding: 0 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: translateX(-50%);
}

.gpt-image-page .gpt-image-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.gpt-image-page .gpt-image-hero-copy p {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.gpt-image-page .gpt-image-primary-btn,
.gpt-image-page .gpt-image-scene-copy button,
.gpt-image-page .gpt-image-cta-copy button {
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151524;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gpt-image-page .gpt-image-primary-btn,
.gpt-image-page .gpt-image-cta-copy button {
  padding: 0 40px;
}

.gpt-image-page .gpt-image-primary-btn:hover,
.gpt-image-page .gpt-image-primary-btn:focus-visible,
.gpt-image-page .gpt-image-scene-copy button:hover,
.gpt-image-page .gpt-image-scene-copy button:focus-visible,
.gpt-image-page .gpt-image-cta-copy button:hover,
.gpt-image-page .gpt-image-cta-copy button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  outline: none;
}

.gpt-image-page .gpt-image-intro {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.gpt-image-page .gpt-image-intro-copy {
  width: 1000px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.gpt-image-page .gpt-image-core {
  width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.gpt-image-page .gpt-image-core h2,
.gpt-image-page .gpt-image-section-heading h2,
.gpt-image-page .gpt-image-scenes h2,
.gpt-image-page .gpt-image-more h2,
.gpt-image-page .gpt-image-faq h2,
.gpt-image-page .gpt-image-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.gpt-image-page .gpt-image-core-grid {
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px 40px;
}

.gpt-image-page .gpt-image-core-card {
  width: 620px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  color: #aaa;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.gpt-image-page .gpt-image-core-card:hover,
.gpt-image-page .gpt-image-core-card:focus-within,
.gpt-image-page .gpt-image-version-row:hover {
  border-color: transparent;
  background: linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)) padding-box, linear-gradient(135deg, #666 0%, #333 100%) border-box;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
  transform: translateY(-4px);
}

.gpt-image-page .gpt-image-core-icon {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.gpt-image-page .gpt-image-core-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.gpt-image-page .gpt-image-core-card p {
  margin: 0;
  color: #aaa;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.gpt-image-page .gpt-image-version,
.gpt-image-page .gpt-image-scenes,
.gpt-image-page .gpt-image-more,
.gpt-image-page .gpt-image-faq,
.gpt-image-page .gpt-image-cta {
  margin-top: 120px;
}

.gpt-image-page .gpt-image-section-heading {
  width: 892px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.gpt-image-page .gpt-image-version-table {
  width: 100%;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.gpt-image-page .gpt-image-version-row {
  display: grid;
  grid-template-columns: 360px 400px 1fr;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: -1px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.gpt-image-page .gpt-image-version-row > div {
  min-height: 40px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpt-image-page .gpt-image-version-head > div {
  min-height: 62px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.gpt-image-page .gpt-image-version-row:not(.gpt-image-version-head) > div:nth-child(2) {
  opacity: 0.6;
}

.gpt-image-page .gpt-image-scenes {
  text-align: center;
}

.gpt-image-page .gpt-image-scene-grid {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
}

.gpt-image-page .gpt-image-scene-card {
  position: relative;
  width: 300px;
  height: 530px;
  border: 1px solid #333;
  border-radius: 20px;
  background: #111;
  overflow: hidden;
  flex: 0 0 300px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.gpt-image-page .gpt-image-scene-card:hover,
.gpt-image-page .gpt-image-scene-card:focus-within {
  border-color: transparent;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
  transform: translateY(-4px);
}

.gpt-image-page .gpt-image-scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform 260ms ease, filter 260ms ease;
}

.gpt-image-page .gpt-image-scene-card:hover img,
.gpt-image-page .gpt-image-scene-card:focus-within img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.03);
}

.gpt-image-page .gpt-image-scene-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 49%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(0, 0, 0, 0.7) 56%);
  pointer-events: none;
}

.gpt-image-page .gpt-image-scene-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #fff;
  text-align: center;
}

.gpt-image-page .gpt-image-scene-copy h3 {
  width: 260px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.gpt-image-page .gpt-image-scene-copy button {
  padding: 0 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.gpt-image-page .gpt-image-scene-card:hover .gpt-image-scene-copy button,
.gpt-image-page .gpt-image-scene-card:focus-within .gpt-image-scene-copy button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gpt-image-page .gpt-image-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.gpt-image-page .gpt-image-more-list {
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
}

.gpt-image-page .gpt-image-more-pill {
  min-width: 128px;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #666;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.gpt-image-page .gpt-image-more-pill.is-highlighted {
  border-color: #fff;
  background: #fff;
  color: #151524;
}

.gpt-image-page .gpt-image-more-pill.is-highlighted::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.gpt-image-page .gpt-image-faq {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 560px;
  text-align: center;
}

.gpt-image-page .gpt-image-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gpt-image-page .gpt-image-faq-item {
  width: 100%;
  min-height: 63px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.4) 100%);
  backdrop-filter: blur(6.674px);
  color: #ffffff;
  overflow: hidden;
  transition: background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.gpt-image-page .gpt-image-faq-item.is-open {
  border-color: #222222;
  background: rgba(34, 34, 34, 0.4);
}

.gpt-image-page .gpt-image-faq-item:hover {
  border-color: #333333;
  background: rgba(34, 34, 34, 0.5);
}

.gpt-image-page .gpt-image-faq-question {
  width: 100%;
  min-height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  pointer-events: none;
}

.gpt-image-page .gpt-image-faq-question:focus-visible {
  outline: none;
}

.gpt-image-page .gpt-image-faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.gpt-image-page .gpt-image-faq-icon::before,
.gpt-image-page .gpt-image-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.gpt-image-page .gpt-image-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.gpt-image-page .gpt-image-faq-item.is-open .gpt-image-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.gpt-image-page .gpt-image-faq-answer {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin-top 220ms ease, opacity 220ms ease;
}

.gpt-image-page .gpt-image-faq-item.is-open .gpt-image-faq-answer {
  margin-top: 10px;
  opacity: 1;
}

.gpt-image-page .gpt-image-faq-answer p {
  width: 954px;
  max-width: 100%;
  margin: 0;
  color: #c8c8c8;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.gpt-image-page .gpt-image-cta {
  position: relative;
  height: 260px;
  border: 1px solid #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #040608;
}

.gpt-image-page .gpt-image-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gpt-image-page .gpt-image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.gpt-image-page .gpt-image-cta-copy {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.gpt-image-page .gpt-image-cta-copy p {
  margin: -10px 0 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: normal;
}

.gpt-image-page .gpt-image-cta-copy button {
  min-width: 160px;
  padding: 0 40px;
  color: #040000;
}

.gpt-image-page .gpt-image-footer {
  position: relative;
  top: auto;
  left: auto;
  width: 1280px;
  max-width: 100%;
  height: 344px;
  margin: 120px auto 0;
}

@keyframes gptImageGalleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (max-width: 1320px) {
  .gpt-image-page .gpt-image-breadcrumb,
  .gpt-image-page .gpt-image-intro,
  .gpt-image-page .gpt-image-version,
  .gpt-image-page .gpt-image-scenes,
  .gpt-image-page .gpt-image-more,
  .gpt-image-page .gpt-image-cta,
  .gpt-image-page .gpt-image-footer {
    width: calc(100% - 48px);
  }

  .gpt-image-page .gpt-image-core,
  .gpt-image-page .gpt-image-core-grid,
  .gpt-image-page .gpt-image-more-list {
    width: 100%;
  }

  .gpt-image-page .gpt-image-core-card {
    width: calc((100% - 40px) / 2);
  }

  .gpt-image-page .gpt-image-scene-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gpt-image-page .gpt-image-content {
    padding-top: 84px;
  }

  .gpt-image-page .gpt-image-breadcrumb,
  .gpt-image-page .gpt-image-intro,
  .gpt-image-page .gpt-image-version,
  .gpt-image-page .gpt-image-scenes,
  .gpt-image-page .gpt-image-more,
  .gpt-image-page .gpt-image-cta,
  .gpt-image-page .gpt-image-footer {
    width: calc(100% - 30px);
    max-width: 375px;
  }

  .gpt-image-page .gpt-image-hero {
    height: 300px;
    margin-top: 44px;
  }

  .gpt-image-page .gpt-hero-gallery-track,
  .gpt-image-page .gpt-gallery-set {
    gap: 12px;
  }

  .gpt-image-page .gpt-hero-gallery img {
    width: 129px;
    border-radius: 14px;
  }

  .gpt-image-page .gpt-hero-gallery img.is-tall {
    height: 300px;
  }

  .gpt-image-page .gpt-gallery-stack {
    gap: 12px;
    flex-basis: 129px;
  }

  .gpt-image-page .gpt-gallery-stack img {
    width: 129px;
    height: 144px;
  }

  .gpt-image-page .gpt-image-badge {
    left: 100%;
    top: -12px;
    margin-left: 8px;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 16px;
  }

  .gpt-image-page .gpt-image-hero-copy {
    top: 70px;
    width: calc(100% - 30px);
    padding: 0 16px;
    gap: 12px;
  }

  .gpt-image-page .gpt-image-hero-copy h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .gpt-image-page .gpt-image-hero-copy p {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  .gpt-image-page .gpt-image-primary-btn {
    height: 36px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .gpt-image-page .gpt-image-intro {
    margin-top: 70px;
    gap: 40px;
  }

  .gpt-image-page .gpt-image-intro-copy,
  .gpt-image-page .gpt-image-core,
  .gpt-image-page .gpt-image-core-grid {
    width: 335px;
  }

  .gpt-image-page .gpt-image-intro-copy {
    font-size: 13px;
    line-height: 20px;
  }

  .gpt-image-page .gpt-image-core {
    gap: 28px;
  }

  .gpt-image-page .gpt-image-core h2,
  .gpt-image-page .gpt-image-section-heading h2,
  .gpt-image-page .gpt-image-scenes h2,
  .gpt-image-page .gpt-image-more h2,
  .gpt-image-page .gpt-image-faq h2,
  .gpt-image-page .gpt-image-cta-copy h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .gpt-image-page .gpt-image-core-grid {
    flex-direction: column;
    gap: 16px;
  }

  .gpt-image-page .gpt-image-core-card {
    width: 335px;
    min-height: 0;
    padding: 20px;
    border-radius: 14px;
    gap: 8px;
  }

  .gpt-image-page .gpt-image-core-icon {
    width: 36px;
    height: 36px;
  }

  .gpt-image-page .gpt-image-core-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .gpt-image-page .gpt-image-core-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .gpt-image-page .gpt-image-version,
  .gpt-image-page .gpt-image-scenes,
  .gpt-image-page .gpt-image-more,
  .gpt-image-page .gpt-image-faq,
  .gpt-image-page .gpt-image-cta,
  .gpt-image-page .gpt-image-footer {
    margin-top: 70px;
  }

  .gpt-image-page .gpt-image-section-heading {
    width: 335px;
    margin-bottom: 28px;
  }

  .gpt-image-page .gpt-image-version-table {
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
    line-height: 18px;
  }

  .gpt-image-page .gpt-image-version-row {
    width: 720px;
    grid-template-columns: 160px 280px 280px;
  }

  .gpt-image-page .gpt-image-version-row > div {
    min-height: 38px;
    padding: 9px 10px;
  }

  .gpt-image-page .gpt-image-scenes {
    text-align: center;
  }

  .gpt-image-page .gpt-image-scene-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .gpt-image-page .gpt-image-scene-card {
    width: 335px;
    height: 486px;
    border-radius: 16px;
    flex-basis: 335px;
  }

  .gpt-image-page .gpt-image-scene-copy {
    left: 24px;
    right: 24px;
    bottom: 44px;
  }

  .gpt-image-page .gpt-image-scene-copy h3 {
    width: 260px;
    font-size: 20px;
    line-height: 26px;
  }

  .gpt-image-page .gpt-image-scene-copy button {
    height: 36px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .gpt-image-page .gpt-image-more {
    gap: 28px;
  }

  .gpt-image-page .gpt-image-more-list {
    width: 335px;
    gap: 12px;
  }

  .gpt-image-page .gpt-image-more-pill {
    min-width: 0;
    height: 34px;
    padding: 0 16px;
    font-size: 12px;
  }

  .gpt-image-page .gpt-image-faq {
    width: 335px;
    height: 520px;
  }

  .gpt-image-page .gpt-image-faq-list {
    margin-top: 28px;
    gap: 12px;
  }

  .gpt-image-page .gpt-image-faq-question {
    padding: 0;
    font-size: 13px;
    line-height: 18px;
  }

  .gpt-image-page .gpt-image-faq-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .gpt-image-page .gpt-image-faq-answer {
    padding: 0;
  }

  .gpt-image-page .gpt-image-faq-answer p {
    margin: 0;
    font-size: 13px;
    line-height: 19px;
  }

  .gpt-image-page .gpt-image-cta {
    height: 300px;
    border-radius: 16px;
  }

  .gpt-image-page .gpt-image-cta-copy {
    width: 90%;
    gap: 14px;
  }

  .gpt-image-page .gpt-image-cta-copy p {
    width: 100%;
    margin-top: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .gpt-image-page .gpt-image-cta-copy button {
    height: 36px;
    min-width: 0;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .gpt-image-page .gpt-image-footer {
    height: auto;
    min-height: 260px;
  }
}

/* English Gemini page */
.gemini-page,
.gemini-page .page {
  background: #040404;
}

.gemini-page .gemini-content {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  background: #040404;
}

.gemini-page .gemini-breadcrumb,
.gemini-page .gemini-hero,
.gemini-page .gemini-stats,
.gemini-page .gemini-intro,
.gemini-page .gemini-core,
.gemini-page .gemini-scenes,
.gemini-page .gemini-more,
.gemini-page .gemini-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.gemini-page .gemini-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 12px;
  line-height: 17px;
}

.gemini-page .gemini-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.gemini-page .gemini-breadcrumb strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.gemini-page .gemini-hero {
  margin-top: 130px;
  color: #fff;
  text-align: center;
}

.gemini-page .gemini-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.gemini-page .gemini-hero p {
  margin: 20px 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.gemini-page .gemini-primary-btn,
.gemini-page .gemini-cta-copy button {
  height: 48px;
  padding: 0 40px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151524;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gemini-page .gemini-primary-btn:hover,
.gemini-page .gemini-primary-btn:focus-visible,
.gemini-page .gemini-cta-copy button:hover,
.gemini-page .gemini-cta-copy button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  outline: none;
}

.gemini-page .gemini-stats {
  margin-top: 80px;
  padding: 40px 80px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #fff;
}

.gemini-page .gemini-stat {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.gemini-page .gemini-stat + .gemini-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.gemini-page .gemini-stat strong {
  background: radial-gradient(80% 80% at 72% 62%, rgba(121, 253, 176, 0.9) 0%, rgba(88, 245, 215, 0) 100%), linear-gradient(110deg, #bffee1 9%, #05cefe 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.gemini-page .gemini-stat strong em {
  font-style: normal;
  margin-left: 8px;
}

.gemini-page .gemini-stat span {
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  line-height: normal;
}

.gemini-page .gemini-intro {
  width: 1000px;
  margin-top: 120px;
  text-align: center;
}

.gemini-page .gemini-intro p {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.gemini-page .gemini-core,
.gemini-page .gemini-scenes,
.gemini-page .gemini-more,
.gemini-page .gemini-faq,
.gemini-page .gemini-cta {
  margin-top: 120px;
}

.gemini-page .gemini-core h2,
.gemini-page .gemini-scenes h2,
.gemini-page .gemini-more h2,
.gemini-page .gemini-faq h2,
.gemini-page .gemini-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.gemini-page .gemini-core-grid {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.gemini-page .gemini-core-card {
  width: 620px;
  min-height: 206px;
  padding: 30px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.gemini-page .gemini-core-card:hover,
.gemini-page .gemini-core-card:focus-within {
  border-color: transparent;
  background: linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)) padding-box, linear-gradient(135deg, #666 0%, #333 100%) border-box;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
  transform: translateY(-4px);
}

.gemini-page .gemini-core-card img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.gemini-page .gemini-core-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.gemini-page .gemini-core-card p {
  margin: 0;
  color: #aaa;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.gemini-page .gemini-scene-grid {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.gemini-page .gemini-scene-card {
  position: relative;
  border: 1px solid #333;
  border-radius: 20px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.gemini-page .gemini-scene-card.is-tall {
  width: 400px;
  height: 580px;
}

.gemini-page .gemini-scene-card.is-wide {
  width: 620px;
  height: 320px;
}

.gemini-page .gemini-scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gemini-page .gemini-scene-card:hover img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.03);
}

.gemini-page .gemini-scene-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 49%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(0, 0, 0, 0.7) 56%);
}

.gemini-page .gemini-scene-card > div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 60px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.gemini-page .gemini-scene-card h3 {
  width: 320px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.gemini-page .gemini-scene-card p {
  width: min(500px, 100%);
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.gemini-page .gemini-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.gemini-page .gemini-more-list {
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
}

.gemini-page .gemini-more-pill {
  min-width: 128px;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #666;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.gemini-page .gemini-more-pill.is-highlighted {
  border-color: #fff;
  background: #fff;
  color: #151524;
}

.gemini-page .gemini-more-pill.is-highlighted::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.gemini-page .gemini-faq {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 640px;
  text-align: center;
}

.gemini-page .gemini-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gemini-page .gemini-faq-item {
  width: 100%;
  min-height: 63px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.4) 100%);
  backdrop-filter: blur(6.674px);
  color: #ffffff;
  overflow: hidden;
  transition: background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.gemini-page .gemini-faq-item.is-open {
  border-color: #222222;
  background: rgba(34, 34, 34, 0.4);
}

.gemini-page .gemini-faq-item:hover {
  border-color: #333333;
  background: rgba(34, 34, 34, 0.5);
}

.gemini-page .gemini-faq-question {
  width: 100%;
  min-height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  pointer-events: none;
}

.gemini-page .gemini-faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.gemini-page .gemini-faq-icon::before,
.gemini-page .gemini-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.gemini-page .gemini-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.gemini-page .gemini-faq-item.is-open .gemini-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.gemini-page .gemini-faq-answer {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin-top 220ms ease, opacity 220ms ease;
}

.gemini-page .gemini-faq-item.is-open .gemini-faq-answer {
  margin-top: 10px;
  opacity: 1;
}

.gemini-page .gemini-faq-answer p {
  width: 954px;
  max-width: 100%;
  margin: 0;
  color: #c8c8c8;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.gemini-page .gemini-cta {
  position: relative;
  height: 260px;
  border: 1px solid #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gemini-page .gemini-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gemini-page .gemini-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.gemini-page .gemini-cta-copy {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  color: #fff;
}

.gemini-page .gemini-cta-copy p {
  margin: 10px 0 20px;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: normal;
}

.gemini-page .gemini-footer {
  position: relative;
  top: auto;
  left: auto;
  width: 1280px;
  max-width: 100%;
  height: 344px;
  margin: 120px auto 0;
}

.gemini-page .reveal-section {
  opacity: 1;
  transform: none;
}

@media (max-width: 1320px) {
  .gemini-page .gemini-breadcrumb,
  .gemini-page .gemini-hero,
  .gemini-page .gemini-stats,
  .gemini-page .gemini-intro,
  .gemini-page .gemini-core,
  .gemini-page .gemini-scenes,
  .gemini-page .gemini-more,
  .gemini-page .gemini-cta,
  .gemini-page .gemini-footer {
    width: calc(100% - 48px);
  }

  .gemini-page .gemini-core-card {
    width: calc((100% - 30px) / 2);
  }

  .gemini-page .gemini-more-list {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .gemini-page .gemini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .gemini-page .gemini-stat:nth-child(3) {
    border-left: 0;
  }

  .gemini-page .gemini-scene-grid {
    justify-content: center;
  }

  .gemini-page .gemini-faq {
    width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .gemini-page .gemini-content {
    padding: 84px 0 28px;
  }

  .gemini-page .gemini-breadcrumb,
  .gemini-page .gemini-hero,
  .gemini-page .gemini-stats,
  .gemini-page .gemini-intro,
  .gemini-page .gemini-core,
  .gemini-page .gemini-scenes,
  .gemini-page .gemini-more,
  .gemini-page .gemini-faq,
  .gemini-page .gemini-cta,
  .gemini-page .gemini-footer {
    width: calc(100% - 30px);
    max-width: 375px;
  }

  .gemini-page .gemini-hero {
    margin-top: 70px;
  }

  .gemini-page .gemini-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .gemini-page .gemini-hero p,
  .gemini-page .gemini-intro p {
    font-size: 14px;
    line-height: 22px;
  }

  .gemini-page .gemini-primary-btn {
    height: 36px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .gemini-page .gemini-stats {
    margin-top: 64px;
    padding: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .gemini-page .gemini-stat {
    min-height: 74px;
  }

  .gemini-page .gemini-stat strong {
    font-size: 30px;
  }

  .gemini-page .gemini-stat span {
    font-size: 12px;
  }

  .gemini-page .gemini-intro,
  .gemini-page .gemini-core,
  .gemini-page .gemini-scenes,
  .gemini-page .gemini-more,
  .gemini-page .gemini-faq,
  .gemini-page .gemini-cta,
  .gemini-page .gemini-footer {
    margin-top: 70px;
  }

  .gemini-page .gemini-core h2,
  .gemini-page .gemini-scenes h2,
  .gemini-page .gemini-more h2,
  .gemini-page .gemini-faq h2,
  .gemini-page .gemini-cta-copy h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .gemini-page .gemini-core-grid,
  .gemini-page .gemini-scene-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .gemini-page .gemini-core-card {
    width: 335px;
    min-height: 0;
    padding: 20px;
    border-radius: 14px;
  }

  .gemini-page .gemini-core-card img {
    width: 36px;
    height: 36px;
  }

  .gemini-page .gemini-core-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .gemini-page .gemini-core-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .gemini-page .gemini-scene-card.is-tall,
  .gemini-page .gemini-scene-card.is-wide {
    width: 335px;
    height: 420px;
  }

  .gemini-page .gemini-scene-card > div {
    left: 24px;
    right: 24px;
    bottom: 36px;
  }

  .gemini-page .gemini-scene-card h3 {
    width: 260px;
    font-size: 20px;
    line-height: 26px;
  }

  .gemini-page .gemini-scene-card p {
    width: 280px;
    font-size: 13px;
    line-height: 20px;
  }

  .gemini-page .gemini-more {
    gap: 28px;
  }

  .gemini-page .gemini-more-list {
    width: 335px;
    gap: 12px;
  }

  .gemini-page .gemini-more-pill {
    min-width: 0;
    height: 34px;
    padding: 0 16px;
    font-size: 12px;
  }

  .gemini-page .gemini-faq {
    height: 600px;
  }

  .gemini-page .gemini-faq-list {
    margin-top: 28px;
    gap: 12px;
  }

  .gemini-page .gemini-faq-item {
    min-height: 58px;
    padding: 16px;
  }

  .gemini-page .gemini-faq-question {
    font-size: 13px;
    line-height: 18px;
  }

  .gemini-page .gemini-faq-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .gemini-page .gemini-faq-answer p {
    font-size: 13px;
    line-height: 19px;
  }

  .gemini-page .gemini-cta {
    height: 300px;
    border-radius: 16px;
  }

  .gemini-page .gemini-cta-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .gemini-page .gemini-cta-copy button {
    height: 36px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .gemini-page .gemini-footer {
    height: auto;
    min-height: 260px;
  }
}

/* English Eleven page */
.eleven-page,
.eleven-page .page {
  background: #040404;
}

.seedance-page .seedance-more[hidden],
.gpt-image-page .gpt-image-more[hidden],
.gemini-page .gemini-more[hidden],
.eleven-page .eleven-more[hidden] {
  display: none !important;
}

.eleven-page .eleven-content {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  background: #040404;
}

.eleven-page .eleven-breadcrumb,
.eleven-page .eleven-hero,
.eleven-page .eleven-stats,
.eleven-page .eleven-demo,
.eleven-page .eleven-core,
.eleven-page .eleven-scenes,
.eleven-page .eleven-more,
.eleven-page .eleven-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.eleven-page .eleven-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 12px;
  line-height: 17px;
}

.eleven-page .eleven-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.eleven-page .eleven-breadcrumb strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.eleven-page .eleven-hero {
  margin-top: 130px;
  color: #fff;
  text-align: center;
}

.eleven-page .eleven-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.eleven-page .eleven-hero p {
  width: 900px;
  max-width: 100%;
  margin: 20px auto;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.eleven-page .eleven-primary-btn,
.eleven-page .eleven-cta-copy button {
  height: 48px;
  padding: 0 40px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151524;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.eleven-page .eleven-primary-btn:hover,
.eleven-page .eleven-primary-btn:focus-visible,
.eleven-page .eleven-cta-copy button:hover,
.eleven-page .eleven-cta-copy button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  outline: none;
}

.eleven-page .eleven-stats {
  margin-top: 80px;
  padding: 40px 80px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  color: #fff;
}

.eleven-page .eleven-stat {
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.eleven-page .eleven-stat + .eleven-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.eleven-page .eleven-stat strong {
  background: radial-gradient(78% 78% at 68% 62%, rgba(121, 253, 176, 0.92) 0%, rgba(88, 245, 215, 0) 100%), linear-gradient(108deg, #bffee1 9%, #05cefe 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "HarmonyOS Sans SC", "Montserrat", "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.eleven-page .eleven-stat span {
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  line-height: normal;
}

.eleven-page .eleven-stat span:first-child {
  font-weight: 700;
}

.eleven-page .eleven-stat span:last-child {
  font-weight: 400;
}

.eleven-page .eleven-demo {
  margin-top: 120px;
  color: #fff;
  text-align: center;
}

.eleven-page .eleven-intro {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 60px;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.eleven-page .eleven-player {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.eleven-page .eleven-disc-wrap {
  position: relative;
  width: 341px;
  height: 340px;
  flex: 0 0 341px;
}

.eleven-page .eleven-disc-wrap::after {
  content: "";
  position: absolute;
  inset: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 206, 254, 0.38) 0%, rgba(88, 245, 215, 0) 68%);
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.eleven-page .eleven-disc {
  width: 341px;
  height: 340px;
  display: block;
  transition: opacity 0.22s ease;
}

.eleven-page .eleven-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.eleven-page .eleven-player.is-playing .eleven-video {
  opacity: 1;
}

.eleven-page .eleven-player.is-playing .eleven-disc {
  opacity: 0;
}

.eleven-page .eleven-player.is-playing .eleven-disc-wrap::after {
  animation: elevenPulse 1.5s ease-in-out infinite;
  opacity: 1;
}

.eleven-page .eleven-copy-card {
  width: 600px;
  padding: 20px;
  border: 1px solid #313136;
  border-radius: 12px;
  background: #141416;
  color: #aaa;
  text-align: left;
}

.eleven-page .eleven-copy-card p {
  margin: 0 0 10px;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.eleven-page .eleven-player-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.eleven-page .eleven-player-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.eleven-page .eleven-player-footer img {
  width: 20px;
  height: 20px;
}

.eleven-page .eleven-player-footer button {
  height: 34px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #151524;
  cursor: pointer;
  font-family: "Montserrat", "Lato", sans-serif;
}

.eleven-page .eleven-player.is-playing .eleven-player-footer button {
  background: #151524;
  color: #fff;
}

.eleven-page .eleven-core,
.eleven-page .eleven-scenes,
.eleven-page .eleven-more,
.eleven-page .eleven-faq,
.eleven-page .eleven-cta {
  margin-top: 120px;
}

.eleven-page .eleven-core h2,
.eleven-page .eleven-scenes h2,
.eleven-page .eleven-more h2,
.eleven-page .eleven-faq h2,
.eleven-page .eleven-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.eleven-page .eleven-core-grid {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.eleven-page .eleven-core-card {
  width: 620px;
  min-height: 206px;
  padding: 30px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.eleven-page .eleven-core-card:hover,
.eleven-page .eleven-core-card:focus-within {
  border-color: transparent;
  background: linear-gradient(rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.78)) padding-box, linear-gradient(135deg, #666 0%, #333 100%) border-box;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.16);
  transform: translateY(-4px);
}

.eleven-page .eleven-core-card img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.eleven-page .eleven-core-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.eleven-page .eleven-core-card p {
  margin: 0;
  color: #aaa;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.eleven-page .eleven-scene-grid {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.eleven-page .eleven-scene-card {
  position: relative;
  border: 1px solid #333;
  border-radius: 20px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.eleven-page .eleven-scene-card.is-tall {
  width: 400px;
  height: 580px;
}

.eleven-page .eleven-scene-card.is-wide {
  width: 620px;
  height: 320px;
}

.eleven-page .eleven-scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.eleven-page .eleven-scene-card:hover img {
  filter: saturate(1.08) brightness(1.05);
  transform: scale(1.03);
}

.eleven-page .eleven-scene-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 49%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(0, 0, 0, 0.7) 56%);
}

.eleven-page .eleven-scene-card > div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 60px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.eleven-page .eleven-scene-card h3 {
  width: 320px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.eleven-page .eleven-scene-card p {
  width: min(500px, 100%);
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.eleven-page .eleven-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.eleven-page .eleven-more-list {
  width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
}

.eleven-page .eleven-more-pill {
  min-width: 128px;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #666;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.eleven-page .eleven-more-pill.is-highlighted {
  border-color: #fff;
  background: #fff;
  color: #151524;
}

.eleven-page .eleven-more-pill.is-highlighted::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.eleven-page .eleven-faq {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 640px;
  text-align: center;
}

.eleven-page .eleven-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eleven-page .eleven-faq-item {
  width: 100%;
  min-height: 63px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.4) 100%);
  backdrop-filter: blur(6.674px);
  color: #ffffff;
  overflow: hidden;
  transition: background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.eleven-page .eleven-faq-item.is-open {
  border-color: #222222;
  background: rgba(34, 34, 34, 0.4);
}

.eleven-page .eleven-faq-item:hover {
  border-color: #333333;
  background: rgba(34, 34, 34, 0.5);
}

.eleven-page .eleven-faq-question {
  width: 100%;
  min-height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  pointer-events: none;
}

.eleven-page .eleven-faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.eleven-page .eleven-faq-icon::before,
.eleven-page .eleven-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.eleven-page .eleven-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.eleven-page .eleven-faq-item.is-open .eleven-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.eleven-page .eleven-faq-answer {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin-top 220ms ease, opacity 220ms ease;
}

.eleven-page .eleven-faq-item.is-open .eleven-faq-answer {
  margin-top: 10px;
  opacity: 1;
}

.eleven-page .eleven-faq-answer p {
  width: 954px;
  max-width: 100%;
  margin: 0;
  color: #c8c8c8;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.eleven-page .eleven-cta {
  position: relative;
  height: 260px;
  border: 1px solid #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eleven-page .eleven-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.eleven-page .eleven-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.eleven-page .eleven-cta-copy {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  color: #fff;
}

.eleven-page .eleven-cta-copy p {
  margin: 10px 0 20px;
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 20px;
  line-height: normal;
}

.eleven-page .eleven-footer {
  position: relative;
  top: auto;
  left: auto;
  width: 1280px;
  max-width: 100%;
  height: 344px;
  margin: 120px auto 0;
}

.eleven-page .reveal-section {
  opacity: 1;
  transform: none;
}

@keyframes elevenPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@media (max-width: 1320px) {
  .eleven-page .eleven-breadcrumb,
  .eleven-page .eleven-hero,
  .eleven-page .eleven-stats,
  .eleven-page .eleven-demo,
  .eleven-page .eleven-core,
  .eleven-page .eleven-scenes,
  .eleven-page .eleven-more,
  .eleven-page .eleven-cta,
  .eleven-page .eleven-footer {
    width: calc(100% - 48px);
  }

  .eleven-page .eleven-core-card {
    width: calc((100% - 30px) / 2);
  }

  .eleven-page .eleven-more-list {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .eleven-page .eleven-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }

  .eleven-page .eleven-stat:nth-child(3)::before {
    display: none;
  }

  .eleven-page .eleven-player {
    flex-direction: column;
  }

  .eleven-page .eleven-scene-grid {
    justify-content: center;
  }

  .eleven-page .eleven-faq {
    width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .eleven-page .eleven-content {
    padding: 84px 0 28px;
  }

  .eleven-page .eleven-breadcrumb,
  .eleven-page .eleven-hero,
  .eleven-page .eleven-stats,
  .eleven-page .eleven-demo,
  .eleven-page .eleven-core,
  .eleven-page .eleven-scenes,
  .eleven-page .eleven-more,
  .eleven-page .eleven-faq,
  .eleven-page .eleven-cta,
  .eleven-page .eleven-footer {
    width: calc(100% - 30px);
    max-width: 375px;
  }

  .eleven-page .eleven-hero {
    margin-top: 70px;
  }

  .eleven-page .eleven-hero h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .eleven-page .eleven-hero p,
  .eleven-page .eleven-intro {
    font-size: 14px;
    line-height: 22px;
  }

  .eleven-page .eleven-primary-btn {
    height: 36px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .eleven-page .eleven-stats {
    margin-top: 64px;
    padding: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .eleven-page .eleven-stat:nth-child(3)::before {
    display: none;
  }

  .eleven-page .eleven-stat {
    min-height: 94px;
  }

  .eleven-page .eleven-stat strong {
    font-size: 30px;
  }

  .eleven-page .eleven-stat span {
    font-size: 12px;
  }

  .eleven-page .eleven-demo,
  .eleven-page .eleven-core,
  .eleven-page .eleven-scenes,
  .eleven-page .eleven-more,
  .eleven-page .eleven-faq,
  .eleven-page .eleven-cta,
  .eleven-page .eleven-footer {
    margin-top: 70px;
  }

  .eleven-page .eleven-intro {
    margin-bottom: 28px;
  }

  .eleven-page .eleven-player {
    gap: 24px;
  }

  .eleven-page .eleven-disc-wrap,
  .eleven-page .eleven-disc {
    width: 260px;
    height: 259px;
    flex-basis: 260px;
  }

  .eleven-page .eleven-copy-card {
    width: 335px;
  }

  .eleven-page .eleven-copy-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .eleven-page .eleven-core h2,
  .eleven-page .eleven-scenes h2,
  .eleven-page .eleven-more h2,
  .eleven-page .eleven-faq h2,
  .eleven-page .eleven-cta-copy h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .eleven-page .eleven-core-grid,
  .eleven-page .eleven-scene-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .eleven-page .eleven-core-card {
    width: 335px;
    min-height: 0;
    padding: 20px;
    border-radius: 14px;
  }

  .eleven-page .eleven-core-card img {
    width: 36px;
    height: 36px;
  }

  .eleven-page .eleven-core-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .eleven-page .eleven-core-card p {
    font-size: 13px;
    line-height: 20px;
  }

  .eleven-page .eleven-scene-card.is-tall,
  .eleven-page .eleven-scene-card.is-wide {
    width: 335px;
    height: 420px;
  }

  .eleven-page .eleven-scene-card > div {
    left: 24px;
    right: 24px;
    bottom: 36px;
  }

  .eleven-page .eleven-scene-card h3 {
    width: 260px;
    font-size: 20px;
    line-height: 26px;
  }

  .eleven-page .eleven-scene-card p {
    width: 280px;
    font-size: 13px;
    line-height: 20px;
  }

  .eleven-page .eleven-more {
    gap: 28px;
  }

  .eleven-page .eleven-more-list {
    width: 335px;
    gap: 12px;
  }

  .eleven-page .eleven-more-pill {
    min-width: 0;
    height: 34px;
    padding: 0 16px;
    font-size: 12px;
  }

  .eleven-page .eleven-faq {
    height: 600px;
  }

  .eleven-page .eleven-faq-list {
    margin-top: 28px;
    gap: 12px;
  }

  .eleven-page .eleven-faq-item {
    min-height: 58px;
    padding: 16px;
  }

  .eleven-page .eleven-faq-question {
    font-size: 13px;
    line-height: 18px;
  }

  .eleven-page .eleven-faq-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .eleven-page .eleven-faq-answer p {
    font-size: 13px;
    line-height: 19px;
  }

  .eleven-page .eleven-cta {
    height: 300px;
    border-radius: 16px;
  }

  .eleven-page .eleven-cta-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .eleven-page .eleven-cta-copy button {
    height: 36px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 13px;
  }

  .eleven-page .eleven-footer {
    height: auto;
    min-height: 260px;
  }
}

/* AI Cinematic Control */
.ai-cinematic-page {
  background: #000;
  color: #fff;
}

.sr-only,
.ai-cinematic-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-cinematic-page .page-content {
  padding-top: 80px;
}

.ai-cinematic-breadcrumb,
.ai-cinematic-hero,
.ai-cinematic-capabilities,
.ai-cinematic-compare,
.ai-cinematic-scenes,
.ai-cinematic-faq {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.ai-cinematic-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.ai-cinematic-breadcrumb a,
.ai-cinematic-breadcrumb strong {
  color: #aaa;
  font-weight: 400;
  text-decoration: none;
}

.ai-cinematic-hero {
  margin-top: 60px;
  text-align: center;
}

.ai-cinematic-hero-copy h1,
.ai-cinematic-section-heading h2,
.ai-cinematic-compare h2,
.ai-cinematic-faq h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ai-cinematic-hero-copy h1 {
  font-size: 48px;
  line-height: 1.18;
}

.ai-cinematic-hero-copy p {
  width: 880px;
  margin: 20px auto 18px;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.ai-cinematic-primary-btn {
  height: 48px;
  padding: 0 40px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #040000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.ai-cinematic-hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 413px 187px 680px;
  align-items: center;
  gap: 0;
  min-height: 395px;
  margin-top: 60px;
}

.ai-cinematic-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #282a2f;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.ai-cinematic-hero-card video,
.ai-cinematic-video-side video,
.ai-cinematic-scene-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-cinematic-hero-card-before {
  width: 300px;
  height: 169px;
  align-self: start;
  justify-self: start;
  margin-left: 56px;
}

.ai-cinematic-hero-card-after {
  width: 680px;
  height: 387px;
  grid-column: 3;
  justify-self: end;
}

.ai-cinematic-hero-card span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 12px;
}

.ai-cinematic-control-dock {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 413px;
  height: 225px;
  z-index: 2;
}

.ai-cinematic-control-dock img {
  display: block;
  width: 100%;
  height: 100%;
}

.ai-cinematic-hero-links {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.ai-cinematic-hero-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.18));
}

.ai-cinematic-hero-line-flow {
  fill: none;
  stroke: url(#ai-cinematic-flow-grad);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.22));
}

.ai-cinematic-capabilities {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 120px;
}

.ai-cinematic-capability-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 440px;
  padding: 30px 40px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
}

.ai-cinematic-capability-card:first-of-type {
  min-height: 480px;
}

.ai-cinematic-capability-copy {
  width: 520px;
}

.ai-cinematic-capability-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
}

.ai-cinematic-capability-copy p {
  margin: 20px 0;
  color: #999;
  font-size: 16px;
  line-height: 24px;
}

.ai-cinematic-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-cinematic-chip-list span {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #313136;
  border-radius: 11px;
  background: #141416;
  color: #fff;
  font-size: 14px;
}

.ai-cinematic-chip-list img {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.ai-cinematic-capability-card > img {
  display: block;
  width: auto;
  max-width: 600px;
  max-height: 384px;
  object-fit: contain;
}

.ai-cinematic-compare {
  margin-top: 120px;
  text-align: center;
}

.ai-cinematic-compare h2,
.ai-cinematic-section-heading h2 {
  font-size: 36px;
  line-height: 50px;
}

.ai-cinematic-video-compare {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  height: 360px;
  margin-top: 40px;
  border-radius: 20px;
  background: #111;
}

.ai-cinematic-video-compare::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.ai-cinematic-video-side {
  position: relative;
  overflow: hidden;
}

.ai-cinematic-video-card {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 237px;
  min-height: 166px;
  padding: 24px 30px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.68);
  color: #ddd;
  text-align: center;
}

.ai-cinematic-video-card strong {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.ai-cinematic-video-card p {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
}

.ai-cinematic-video-card-pixmax {
  left: auto;
  right: 0;
  background: linear-gradient(120deg, #bffee1 8%, #05cefe 78%);
  color: #222;
}

.ai-cinematic-video-card-pixmax strong {
  color: #040000;
}

.ai-cinematic-scenes {
  margin-top: 120px;
  text-align: center;
}

.ai-cinematic-section-heading p {
  width: 760px;
  margin: 12px auto 40px;
  color: #999;
  font-size: 16px;
  line-height: 26px;
}

.ai-cinematic-scene-shell {
  position: relative;
  width: min(1920px, calc(100vw - 12px));
  height: 520px;
  margin-left: 50%;
  transform: translateX(-50%);
  perspective: 1200px;
}

.ai-cinematic-scene-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ai-cinematic-scene-card {
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 640px;
  height: 364px;
  overflow: hidden;
  border: 1px solid #222;
  border-radius: 12px;
  background: #111;
  opacity: 0;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(0.66);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), width 420ms cubic-bezier(0.22, 1, 0.36, 1), height 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.ai-cinematic-scene-card.is-active {
  z-index: 3;
  width: 844px;
  height: 480px;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.ai-cinematic-scene-card.is-prev {
  z-index: 2;
  opacity: 0.45;
  transform: translate(calc(-50% - 638px), -50%) scale(1);
  pointer-events: auto;
}

.ai-cinematic-scene-card.is-next {
  z-index: 2;
  opacity: 0.45;
  transform: translate(calc(-50% + 638px), -50%) scale(1);
  pointer-events: auto;
}

.ai-cinematic-scene-card.is-offstage {
  transform: translate(-50%, -50%) scale(0.58);
}

.ai-cinematic-scene-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(4, 0, 0, 0), #040000);
}

.ai-cinematic-scene-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 30px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}

.ai-cinematic-scene-card.is-active h3 {
  bottom: 38px;
  font-size: 26px;
}

.ai-cinematic-scene-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(0,0,0,0.42);
  cursor: pointer;
  transform: translateY(-50%);
}

.ai-cinematic-scene-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.ai-cinematic-scene-arrow-prev {
  left: 280px;
}

.ai-cinematic-scene-arrow-prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.ai-cinematic-scene-arrow-next {
  right: 280px;
}

.ai-cinematic-scene-arrow-next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.ai-cinematic-faq {
  width: 1000px;
  margin-top: 120px;
  height: 560px;
  text-align: center;
}

@media (max-width: 1320px) {
  .ai-cinematic-breadcrumb,
  .ai-cinematic-hero,
  .ai-cinematic-capabilities,
  .ai-cinematic-compare,
  .ai-cinematic-scenes,
  .ai-cinematic-faq {
    width: calc(100% - 48px);
  }

  .ai-cinematic-hero-stage,
  .ai-cinematic-capability-card {
    transform: scale(0.92);
    transform-origin: top center;
  }

  .ai-cinematic-hero {
    margin-bottom: -32px;
  }

  .ai-cinematic-capability-card {
    margin-bottom: -36px;
  }
}

@media (max-width: 768px) {
  .ai-cinematic-page .page-content {
    padding-top: 84px;
  }

  .ai-cinematic-breadcrumb,
  .ai-cinematic-hero,
  .ai-cinematic-capabilities,
  .ai-cinematic-compare,
  .ai-cinematic-scenes,
  .ai-cinematic-faq {
    width: min(100% - 30px, 375px);
  }

  .ai-cinematic-breadcrumb {
    font-size: 12px;
  }

  .ai-cinematic-hero {
    margin-top: 42px;
  }

  .ai-cinematic-hero-copy h1,
  .ai-cinematic-section-heading h2,
  .ai-cinematic-compare h2,
  .ai-cinematic-faq h2 {
    font-size: 24px;
    line-height: 32px;
    white-space: normal;
  }

  .ai-cinematic-hero-copy p {
    width: 100%;
    margin: 14px auto 18px;
    font-size: 14px;
    line-height: 22px;
  }

  .ai-cinematic-primary-btn {
    height: 42px;
    padding: 0 28px;
  }

  .ai-cinematic-hero-stage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    margin-top: 36px;
    transform: none;
  }

  .ai-cinematic-hero-card-before,
  .ai-cinematic-hero-card-after {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    justify-self: auto;
    margin-left: 0;
  }

  .ai-cinematic-control-dock,
  .ai-cinematic-hero-links {
    display: none;
  }

  .ai-cinematic-capabilities {
    gap: 24px;
    margin-top: 70px;
  }

  .ai-cinematic-capability-card,
  .ai-cinematic-capability-card:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    padding: 20px;
    transform: none;
    margin-bottom: 0;
  }

  .ai-cinematic-capability-copy {
    width: 100%;
  }

  .ai-cinematic-capability-copy h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .ai-cinematic-capability-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .ai-cinematic-chip-list span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .ai-cinematic-capability-card > img {
    width: 100%;
    max-height: none;
  }

  .ai-cinematic-compare,
  .ai-cinematic-scenes,
  .ai-cinematic-faq {
    margin-top: 70px;
  }

  .ai-cinematic-video-compare {
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 28px;
  }

  .ai-cinematic-video-compare::before {
    display: none;
  }

  .ai-cinematic-video-side {
    height: 210px;
  }

  .ai-cinematic-video-card {
    width: 170px;
    min-height: 0;
    padding: 14px;
    border-radius: 14px;
  }

  .ai-cinematic-video-card strong {
    font-size: 14px;
    line-height: 20px;
  }

  .ai-cinematic-video-card p {
    font-size: 10px;
    line-height: 16px;
  }

  .ai-cinematic-section-heading p {
    width: 100%;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22px;
  }

  .ai-cinematic-scene-shell {
    height: 230px;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    perspective: 900px;
  }

  .ai-cinematic-scene-track {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    scroll-snap-type: none;
    padding: 0;
  }

  .ai-cinematic-scene-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 230px;
    height: 132px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62);
    pointer-events: none;
    scroll-snap-align: none;
  }

  .ai-cinematic-scene-card.is-active {
    z-index: 3;
    width: 305px;
    height: 174px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }

  .ai-cinematic-scene-card.is-prev {
    z-index: 2;
    opacity: 0.42;
    transform: translate(calc(-50% - 205px), -50%) scale(0.82);
    pointer-events: auto;
  }

  .ai-cinematic-scene-card.is-next {
    z-index: 2;
    opacity: 0.42;
    transform: translate(calc(-50% + 205px), -50%) scale(0.82);
    pointer-events: auto;
  }

  .ai-cinematic-scene-card.is-offstage {
    transform: translate(-50%, -50%) scale(0.52);
  }

  .ai-cinematic-scene-card h3 {
    bottom: 16px;
    font-size: 13px;
  }

  .ai-cinematic-scene-card.is-active h3 {
    bottom: 20px;
    font-size: 15px;
  }

  .ai-cinematic-scene-arrow {
    display: none;
  }

}

.workflow-templates-page {
  background: #000;
  color: #fff;
}

.workflow-templates-content {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 20px 0 0;
  background: #000;
  overflow: hidden;
}

.workflow-templates-breadcrumb,
.workflow-templates-hero,
.workflow-templates-inspect,
.workflow-templates-steps,
.workflow-templates-creators,
.workflow-templates-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-templates-breadcrumb {
  margin-top: 0;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.workflow-templates-breadcrumb a,
.workflow-templates-breadcrumb strong {
  color: #aaa;
  font-weight: 400;
  text-decoration: none;
}

.workflow-templates-breadcrumb span {
  margin: 0 4px;
}

.workflow-templates-hero {
  margin-top: 36px;
  text-align: center;
}

.workflow-templates-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.workflow-templates-hero h1,
.workflow-templates-inspect h2,
.workflow-templates-steps h2,
.workflow-templates-creators h2,
.workflow-templates-cta h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.workflow-templates-hero h1 {
  font-size: 48px;
  line-height: 58px;
}

.workflow-templates-hero-copy p {
  width: min(880px, 100%);
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.workflow-templates-primary-btn,
.workflow-templates-secondary-btn {
  height: 48px;
  padding: 0 40px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151524;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.workflow-templates-primary-btn:hover,
.workflow-templates-primary-btn:focus-visible,
.workflow-templates-secondary-btn:hover,
.workflow-templates-secondary-btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.14);
}

.workflow-templates-hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 356px 301px 620px;
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: 460px;
  margin-top: 60px;
}

.workflow-templates-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.workflow-templates-video-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #222;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.workflow-templates-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-templates-video-card-original {
  width: 356px;
  height: 200px;
}

.workflow-templates-video-card-original span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 12px;
}

.workflow-templates-source-card {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.workflow-templates-source-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 10px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.32));
}

.workflow-templates-hero-links {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.workflow-templates-hero-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.32));
}

.workflow-templates-hero-line-flow {
  fill: none;
  stroke: url(#workflow-templates-flow-grad);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.72));
}

.workflow-templates-video-card-clone {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  z-index: 2;
  width: 620px;
  height: 348px;
}

.workflow-templates-prompt-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 10px 20px;
  border-top: 1px solid #313136;
  background: rgba(31, 31, 33, 0.82);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.workflow-templates-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  padding: 40px 0;
  border: 1px solid #333;
  border-radius: 20px;
  background: rgba(4, 4, 4, 0.42);
}

.workflow-templates-stats div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.workflow-templates-stats div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 50px;
  background: #333;
  transform: translateY(-50%);
}

.workflow-templates-stats strong {
  color: #fff;
  font-size: 48px;
  line-height: 1;
}

.workflow-templates-stats span {
  color: #fff;
  font-size: 16px;
}

.workflow-templates-inspect {
  display: grid;
  grid-template-columns: 520px 600px;
  align-items: center;
  justify-content: space-between;
  min-height: 360px;
  margin-top: 120px;
  padding: 30px 40px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
}

.workflow-templates-inspect h2 {
  font-size: 36px;
  line-height: 46px;
}

.workflow-templates-inspect p {
  margin: 18px 0 0;
  color: #999;
  font-size: 16px;
  line-height: 24px;
}

.workflow-templates-inspect img {
  display: block;
  width: 600px;
  height: 291px;
  object-fit: cover;
  border: 1px solid #333;
  border-radius: 10px;
}

.workflow-templates-steps,
.workflow-templates-creators {
  margin-top: 120px;
  text-align: center;
}

.workflow-templates-steps h2,
.workflow-templates-creators h2 {
  font-size: 36px;
  line-height: 44px;
}

.workflow-templates-step-grid,
.workflow-templates-creator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.workflow-templates-step-card,
.workflow-templates-creator-card {
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
  color: #fff;
  text-align: left;
}

.workflow-templates-step-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 20px;
}

.workflow-templates-step-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
}

.workflow-templates-step-card p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.workflow-templates-step-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.workflow-templates-creator-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-templates-creator-card {
  min-height: 160px;
  padding: 20px;
}

.workflow-templates-creator-profile {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.workflow-templates-creator-profile img {
  width: 60px;
  height: 60px;
  border: 1px solid #666;
  border-radius: 50%;
  object-fit: cover;
}

.workflow-templates-creator-profile h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}

.workflow-templates-creator-profile p {
  margin: 0;
  color: #aaa;
  font-size: 10px;
  line-height: 14px;
}

.workflow-templates-creator-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  color: #aaa;
  font-size: 10px;
  text-align: center;
}

.workflow-templates-creator-stats span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.workflow-templates-creator-stats strong {
  color: #58f5d7;
  font-size: 16px;
  line-height: 18px;
}

.workflow-templates-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
  padding: 60px;
  border-radius: 20px;
}

.workflow-templates-cta h2 {
  font-size: 40px;
  line-height: 60px;
}

.workflow-templates-scenes {
  margin-top: 120px;
  padding-top: 0;
}

.workflow-templates-page .footer {
  margin-top: 120px;
}

@media (max-width: 1320px) {
  .workflow-templates-breadcrumb,
  .workflow-templates-hero,
  .workflow-templates-inspect,
  .workflow-templates-steps,
  .workflow-templates-creators,
  .workflow-templates-cta {
    width: calc(100% - 48px);
  }

  .workflow-templates-hero-stage {
    grid-template-columns: 28% 23.5% 48.5%;
  }

  .workflow-templates-video-card-original,
  .workflow-templates-video-card-clone,
  .workflow-templates-inspect img {
    width: 100%;
  }

  .workflow-templates-video-card-original {
    height: auto;
    aspect-ratio: 356 / 200;
  }

  .workflow-templates-video-card-clone {
    height: auto;
    aspect-ratio: 620 / 348;
  }

  .workflow-templates-inspect {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .workflow-templates-content {
    padding-top: 18px;
  }

  .workflow-templates-breadcrumb,
  .workflow-templates-hero,
  .workflow-templates-inspect,
  .workflow-templates-steps,
  .workflow-templates-creators,
  .workflow-templates-cta {
    width: min(100% - 30px, 375px);
  }

  .workflow-templates-breadcrumb {
    font-size: 12px;
  }

  .workflow-templates-hero {
    margin-top: 34px;
  }

  .workflow-templates-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .workflow-templates-hero-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .workflow-templates-primary-btn,
  .workflow-templates-secondary-btn {
    height: 42px;
    padding: 0 28px;
    font-size: 14px;
  }

  .workflow-templates-hero-stage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    margin-top: 36px;
  }

  .workflow-templates-hero-left {
    width: 100%;
    align-items: stretch;
    gap: 16px;
  }

  .workflow-templates-video-card-original,
  .workflow-templates-video-card-clone {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .workflow-templates-source-card,
  .workflow-templates-hero-links {
    display: none;
  }

  .workflow-templates-prompt-card {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 11px;
    line-height: 16px;
  }

  .workflow-templates-stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 18px;
    gap: 18px;
  }

  .workflow-templates-stats div + div::before {
    display: none;
  }

  .workflow-templates-stats strong {
    font-size: 30px;
  }

  .workflow-templates-stats span {
    font-size: 13px;
  }

  .workflow-templates-inspect,
  .workflow-templates-steps,
  .workflow-templates-creators,
  .workflow-templates-cta {
    margin-top: 70px;
  }

  .workflow-templates-inspect {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 20px;
  }

  .workflow-templates-inspect h2,
  .workflow-templates-steps h2,
  .workflow-templates-creators h2,
  .workflow-templates-cta h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .workflow-templates-inspect p {
    font-size: 14px;
    line-height: 22px;
  }

  .workflow-templates-inspect img {
    width: 100%;
    height: auto;
  }

  .workflow-templates-step-grid,
  .workflow-templates-creator-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .workflow-templates-step-card {
    min-height: 0;
    padding: 20px;
  }

  .workflow-templates-step-card img {
    height: auto;
  }

  .workflow-templates-cta {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .workflow-templates-scenes {
    margin-top: 70px;
  }

  .workflow-templates-page .footer {
    margin-top: 70px;
  }
}

.asset-library-page {
  background: #040404;
  color: #fff;
}

.asset-library-content {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 20px 0 0;
  background: #040404;
  overflow: hidden;
}

.asset-library-hero,
.asset-library-feature,
.asset-library-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.asset-library-hero {
  margin-top: 36px;
  text-align: center;
}

.asset-library-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.asset-library-hero h1,
.asset-library-feature h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.asset-library-hero h1 {
  font-size: 48px;
  line-height: 58px;
}

.asset-library-hero-copy p {
  width: min(922px, 100%);
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.asset-library-hero-image {
  display: block;
  width: 1280px;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0;
}

.asset-library-feature {
  display: grid;
  grid-template-columns: 520px 560px;
  align-items: center;
  justify-content: space-between;
  min-height: 440px;
  margin-top: 80px;
  padding: 30px 40px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
}

.asset-library-feature h2 {
  font-size: 36px;
  line-height: 46px;
}

.asset-library-feature p,
.asset-library-cta p {
  margin: 18px 0 0;
  color: #999;
  font-size: 16px;
  line-height: 24px;
}

.asset-library-feature img {
  display: block;
  width: 560px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.asset-library-cta {
  margin-top: 120px;
}

.asset-library-page .workflow-templates-scenes {
  margin-top: 100px;
}

.asset-library-page .footer {
  margin-top: 120px;
}

.ai-video-enhancer-page {
  background: #040404;
  color: #fff;
}

.ai-video-enhancer-content {
  width: min(100%, 1920px);
  height: auto;
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px 0 0;
  background: #040404;
  overflow: hidden;
}

.ai-video-enhancer-hero,
.ai-video-enhancer-p2,
.ai-video-enhancer-use-cases {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.ai-video-enhancer-hero {
  margin-top: 36px;
  text-align: center;
}

.ai-video-enhancer-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ai-video-enhancer-hero h1,
.ai-video-enhancer-p2 h2,
.ai-video-enhancer-use-cases h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.ai-video-enhancer-hero h1 {
  font-size: 48px;
  line-height: 58px;
}

.ai-video-enhancer-hero-copy p {
  width: min(880px, 100%);
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.ai-video-enhancer-hero-stage {
  position: relative;
  width: 1280px;
  height: 452px;
  margin: 60px auto 0;
}

.ai-video-enhancer-hero-before,
.ai-video-enhancer-hero-after {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ai-video-enhancer-hero-before {
  left: 0;
  top: 166px;
  width: 300px;
}

.ai-video-enhancer-hero-after {
  right: 0;
  top: 0;
  width: 720px;
  gap: 6px;
}

.ai-video-enhancer-hero-before[data-ai-enhancer-draggable] {
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.ai-video-enhancer-hero-before.is-dragging {
  z-index: 6;
  cursor: grabbing;
}

.ai-video-enhancer-hero-before span,
.ai-video-enhancer-toolbar {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.ai-video-enhancer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 718px;
  min-height: 45px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(40, 40, 43, 0.92);
  color: #aeb6c5;
}

.ai-video-enhancer-toolbar span,
.ai-video-enhancer-toolbar strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.ai-video-enhancer-toolbar strong {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 500;
}

.ai-video-enhancer-toolbar-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: currentColor;
  opacity: 0.92;
}

.ai-video-enhancer-toolbar-icon::before,
.ai-video-enhancer-toolbar-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.ai-video-enhancer-toolbar-icon.icon-compliance::before {
  inset: 1px 3px 2px;
  border: 1.5px solid currentColor;
  border-radius: 8px 8px 9px 9px;
  clip-path: polygon(50% 0, 100% 18%, 100% 58%, 50% 100%, 0 58%, 0 18%);
}

.ai-video-enhancer-toolbar-icon.icon-compliance::after {
  left: 5px;
  top: 6px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.ai-video-enhancer-toolbar-icon.icon-subtitle::before {
  inset: 3px 1px 4px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.ai-video-enhancer-toolbar-icon.icon-subtitle::after {
  left: 4px;
  right: 4px;
  bottom: 6px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 -3px 0 currentColor;
}

.ai-video-enhancer-toolbar-icon.icon-upscale::before,
.ai-video-enhancer-toolbar-icon.icon-upscale::after {
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
}

.ai-video-enhancer-toolbar-icon.icon-upscale::before {
  left: 1px;
  top: 1px;
  border-right: 0;
  border-bottom: 0;
  box-shadow: 8px 8px 0 -1.5px #28282b, 8px 8px 0 0 currentColor;
}

.ai-video-enhancer-toolbar-icon.icon-upscale::after {
  right: 1px;
  top: 1px;
  border-left: 0;
  border-bottom: 0;
  box-shadow: -8px 8px 0 -1.5px #28282b, -8px 8px 0 0 currentColor;
}

.ai-video-enhancer-toolbar-icon.icon-download::before {
  left: 7px;
  top: 1px;
  width: 2px;
  height: 9px;
  background: currentColor;
}

.ai-video-enhancer-toolbar-icon.icon-download::after {
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.ai-video-enhancer-toolbar-icon.icon-history::before {
  inset: 2px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.ai-video-enhancer-toolbar-icon.icon-history::after {
  left: 7px;
  top: 4px;
  width: 4px;
  height: 5px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.ai-video-enhancer-toolbar-icon.icon-fullscreen::before {
  inset: 2px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  clip-path: polygon(0 0, 38% 0, 38% 14%, 14% 14%, 14% 38%, 0 38%, 0 0, 62% 0, 100% 0, 100% 38%, 86% 38%, 86% 14%, 62% 14%, 62% 0, 100% 62%, 100% 100%, 62% 100%, 62% 86%, 86% 86%, 86% 62%, 100% 62%, 38% 100%, 0 100%, 0 62%, 14% 62%, 14% 86%, 38% 86%, 38% 100%);
}

.ai-video-enhancer-hero-before video,
.ai-video-enhancer-hero-after video {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: #111;
  object-fit: cover;
}

.ai-video-enhancer-hero-before video {
  aspect-ratio: 300 / 169;
}

.ai-video-enhancer-hero-after video {
  aspect-ratio: 720 / 400;
}

.ai-video-enhancer-hero-line {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ai-video-enhancer-hero-line path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.ai-video-enhancer-hero-line .flow {
  stroke: url(#ai-video-enhancer-flow-grad);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.65));
}

.ai-video-enhancer-p2,
.ai-video-enhancer-use-cases {
  margin-top: 120px;
  text-align: center;
}

.ai-video-enhancer-p2 h2,
.ai-video-enhancer-use-cases h2 {
  font-size: 40px;
  line-height: 50px;
}

.ai-video-enhancer-p2 > p,
.ai-video-enhancer-use-cases > p {
  width: min(860px, 100%);
  margin: 12px auto 40px;
  color: #999;
  font-size: 16px;
  line-height: 24px;
}

.ai-video-enhancer-comparison {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1280 / 620;
  border: 1px solid #222;
  border-radius: 20px;
  background: #111;
  cursor: ew-resize;
  touch-action: none;
}

.ai-video-enhancer-p2-stack {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 120px;
}

.ai-video-enhancer-p2-stack article {
  text-align: center;
}

.ai-video-enhancer-p2-stack h3 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 50px;
}

.ai-video-enhancer-p2-stack p {
  width: min(772px, 100%);
  margin: 10px auto 30px;
  color: #999;
  font-size: 16px;
  line-height: 24px;
}

.ai-video-enhancer-p2-stack .ai-video-enhancer-comparison {
  aspect-ratio: 1280 / 620;
}

.ai-video-enhancer-layer,
.ai-video-enhancer-layer-before,
.ai-video-enhancer-layer-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-video-enhancer-layer {
  display: block;
  object-fit: cover;
}

.ai-video-enhancer-layer-before {
  z-index: 2;
  overflow: hidden;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--ai-video-split, 50%)) 0 0);
}

.ai-video-enhancer-compare-label {
  position: absolute;
  top: 24px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.ai-video-enhancer-compare-label-before {
  left: 24px;
}

.ai-video-enhancer-compare-label-after {
  right: 24px;
}

.ai-video-enhancer-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ai-video-split, 50%);
  z-index: 5;
  width: 60px;
  margin: 0 0 0 -30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
}

.ai-video-enhancer-compare-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.ai-video-enhancer-compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.ai-video-enhancer-compare-handle span::before,
.ai-video-enhancer-compare-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #151524;
  border-left: 2px solid #151524;
}

.ai-video-enhancer-compare-handle span::before {
  left: 17px;
  transform: translateY(-50%) rotate(-45deg);
}

.ai-video-enhancer-compare-handle span::after {
  right: 17px;
  transform: translateY(-50%) rotate(135deg);
}

.ai-video-enhancer-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ai-video-enhancer-card-grid article {
  position: relative;
  overflow: hidden;
  height: 350px;
  border: 1px solid #222;
  border-radius: 12px;
  background: #111;
}

.ai-video-enhancer-card-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-video-enhancer-card-grid div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: linear-gradient(180deg, rgba(4, 0, 0, 0) 25%, rgba(4, 0, 0, 0.9) 100%);
}

.ai-video-enhancer-card-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}

.ai-video-enhancer-card-grid p {
  margin: 10px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.ai-video-enhancer-page .workflow-templates-scenes {
  margin-top: 120px;
}

.ai-video-enhancer-page .footer {
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  width: 1920px;
  max-width: 100%;
  height: 160px;
  margin-top: 120px;
}

.team-collaboration-page {
  background: #040404;
  color: #fff;
}

.team-collaboration-content {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 20px 0 0;
  background: #040404;
  overflow: hidden;
}

.team-collaboration-hero,
.team-collaboration-features,
.team-collaboration-cta {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.team-collaboration-hero {
  margin-top: 36px;
  text-align: center;
}

.team-collaboration-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.team-collaboration-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.team-collaboration-hero-copy p {
  width: min(880px, 100%);
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.team-collaboration-hero-stage {
  position: relative;
  width: 1280px;
  height: 360px;
  margin: 60px auto 0;
}

.team-collaboration-hero-image-card,
.team-collaboration-hero-video-card,
.team-collaboration-script-card,
.team-collaboration-comment-card {
  position: absolute;
  z-index: 3;
}

.team-collaboration-hero-image-card,
.team-collaboration-hero-video-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.team-collaboration-hero-image-card {
  left: 194px;
  top: 170px;
  width: 280px;
}

.team-collaboration-hero-video-card {
  right: 0;
  top: 0;
  width: 480px;
}

.team-collaboration-hero-stage [data-draggable-flow] {
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.team-collaboration-hero-stage [data-draggable-flow].is-dragging {
  z-index: 8;
  cursor: grabbing;
}

.team-collaboration-hero-image-card span,
.team-collaboration-hero-video-card span,
.team-collaboration-script-card span {
  color: #8f9bb2;
  font-size: 12px;
  line-height: 16px;
}

.team-collaboration-hero-image-card img,
.team-collaboration-hero-video-card video {
  display: block;
  width: 100%;
  border: 1px solid #313136;
  border-radius: 12px;
  background: #141416;
  object-fit: cover;
}

.team-collaboration-hero-image-card img {
  aspect-ratio: 280 / 158;
}

.team-collaboration-hero-video-card video {
  aspect-ratio: 480 / 287;
}

.team-collaboration-script-card {
  left: 37px;
  top: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 388px;
  text-align: left;
}

.team-collaboration-script-card p {
  display: -webkit-box;
  height: 122px;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #1f1f21;
  border-radius: 10px;
  background: #141416;
  color: #fafafa;
  font-size: 12px;
  line-height: 17px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.team-collaboration-comment-card {
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid #1f1f21;
  border-radius: 10px;
  background: rgba(20, 20, 22, 0.9);
  color: #fafafa;
  text-align: left;
}

.team-collaboration-comment-card div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-collaboration-comment-card img,
.team-collaboration-role-strip img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  overflow: hidden;
  border: 1px solid #222;
  border-radius: 50%;
  object-fit: cover;
}

.team-collaboration-comment-card strong,
.team-collaboration-role-strip span {
  color: #fafafa;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.team-collaboration-comment-card p {
  margin: 0;
  color: #fafafa;
  font-size: 12px;
  line-height: 17px;
}

.team-collaboration-comment-editor {
  left: 0;
  top: 128px;
  width: 192px;
}

.team-collaboration-comment-designer {
  left: 98px;
  top: 269px;
  width: 248px;
}

.team-collaboration-comment-post {
  left: 749px;
  top: 288px;
  width: 230px;
}

.team-collaboration-comment-director {
  left: 959px;
  top: 279px;
  width: 239px;
}

.team-collaboration-hero-links {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.team-collaboration-hero-line,
.team-collaboration-hero-line-flow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-collaboration-hero-line {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1.4;
}

.team-collaboration-hero-line-flow {
  stroke: url(#team-collaboration-flow-grad);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.team-collaboration-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
}

.team-collaboration-feature-card {
  display: grid;
  grid-template-columns: 520px 590px;
  align-items: center;
  justify-content: space-between;
  min-height: 440px;
  padding: 30px 40px;
  border: 1px solid rgba(42, 42, 55, 0.6);
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.4);
}

.team-collaboration-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.team-collaboration-feature-card p {
  margin: 18px 0 0;
  color: #999;
  font-size: 16px;
  line-height: 24px;
}

.team-collaboration-feature-card > video,
.team-collaboration-feature-card > img {
  display: block;
  width: 590px;
  max-height: 360px;
  border-radius: 10px;
  object-fit: cover;
}

.team-collaboration-feature-card > video {
  aspect-ratio: 590 / 360;
  background: #111;
}

.team-collaboration-roles-visual {
  position: relative;
  width: 599px;
  max-width: 100%;
  aspect-ratio: 599 / 365;
  height: auto;
}

.team-collaboration-role-strip {
  position: absolute;
  left: 20.03%;
  top: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 79.97%;
  padding: 10px;
  border: 1px solid #1f1f21;
  border-radius: 10px;
  background: rgba(20, 20, 22, 0.8);
}

.team-collaboration-role-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.team-collaboration-roles-prompt,
.team-collaboration-roles-comment {
  position: absolute;
  z-index: 2;
  padding: 10px;
  border: 1px solid #1f1f21;
  border-radius: 10px;
  background: #141416;
  color: #fafafa;
  font-size: 12px;
  line-height: 17px;
  text-align: left;
}

.team-collaboration-roles-prompt {
  left: 0;
  top: 7.69%;
  box-sizing: border-box;
  width: 41.57%;
}

.team-collaboration-roles-board {
  position: absolute;
  left: 0;
  top: 34.52%;
  width: 41.57%;
  height: 38.36%;
  border: 1px solid #1f1f21;
  border-radius: 10px;
  object-fit: cover;
}

.team-collaboration-roles-visual video {
  position: absolute;
  left: 44.07%;
  top: 16.16%;
  display: block;
  width: 55.93%;
  height: 54.79%;
  border: 1px solid #313136;
  border-radius: 12px;
  background: #111;
  object-fit: cover;
}

.team-collaboration-roles-comment-left {
  left: 0;
  top: 73.97%;
  box-sizing: border-box;
  width: 41.74%;
}

.team-collaboration-roles-comment-right {
  left: 44.07%;
  top: 72.6%;
  box-sizing: border-box;
  width: 55.93%;
}

.team-collaboration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.team-collaboration-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid #1f1f21;
  border-radius: 10px;
  background: #141416;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.team-collaboration-tags img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.team-collaboration-cta {
  margin-top: 120px;
}

.team-collaboration-page .workflow-templates-scenes {
  margin-top: 100px;
}

.team-collaboration-page .footer {
  margin-top: 120px;
}

@media (max-width: 1320px) {
  .asset-library-hero,
  .asset-library-feature,
  .asset-library-cta {
    width: calc(100% - 48px);
  }

  .asset-library-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 36px;
  }

  .asset-library-feature img {
    width: 100%;
  }

  .ai-video-enhancer-hero,
  .ai-video-enhancer-p2,
  .ai-video-enhancer-use-cases {
    width: calc(100% - 48px);
  }

  .ai-video-enhancer-hero-stage {
    width: 100%;
    height: clamp(340px, 35.3125vw, 452px);
  }

  .ai-video-enhancer-hero-before {
    top: 36.6%;
    width: 23.4%;
  }

  .ai-video-enhancer-hero-after {
    width: 56.25%;
  }

  .team-collaboration-hero,
  .team-collaboration-features,
  .team-collaboration-cta {
    width: calc(100% - 48px);
  }

  .team-collaboration-hero-stage {
    width: 100%;
    height: clamp(270px, 28.125vw, 360px);
  }

  .team-collaboration-hero-image-card {
    left: 15.1%;
    top: 47%;
    width: 21.875%;
  }

  .team-collaboration-hero-video-card {
    right: 0;
    width: 37.5%;
  }

  .team-collaboration-script-card {
    left: 2.9%;
    top: 2.8%;
    width: 30.3%;
  }

  .team-collaboration-comment-editor {
    left: 0;
    top: 35.6%;
    width: 15%;
  }

  .team-collaboration-comment-designer {
    left: 7.7%;
    top: 74.7%;
    width: 19.4%;
  }

  .team-collaboration-comment-post {
    left: 58.5%;
    top: 80%;
    width: 18%;
  }

  .team-collaboration-comment-director {
    left: 74.9%;
    top: 77.5%;
    width: 18.7%;
  }

  .team-collaboration-feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 36px;
  }

  .team-collaboration-feature-card > video,
  .team-collaboration-feature-card > img {
    width: 100%;
  }

  .team-collaboration-roles-visual {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .asset-library-content {
    padding-top: 18px;
  }

  .asset-library-hero,
  .asset-library-feature,
  .asset-library-cta {
    width: min(100% - 30px, 375px);
  }

  .asset-library-hero {
    margin-top: 34px;
  }

  .asset-library-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .asset-library-hero-copy p,
  .asset-library-feature p,
  .asset-library-cta p {
    font-size: 14px;
    line-height: 22px;
  }

  .asset-library-hero-image {
    margin-top: 36px;
  }

  .asset-library-feature {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 70px;
    padding: 20px;
  }

  .asset-library-feature h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .asset-library-feature img {
    width: 100%;
    max-height: none;
  }

  .asset-library-cta {
    margin-top: 70px;
  }

  .asset-library-page .workflow-templates-scenes {
    margin-top: 70px;
  }

  .asset-library-page .footer {
    margin-top: 70px;
  }

  .ai-video-enhancer-hero,
  .ai-video-enhancer-p2,
  .ai-video-enhancer-use-cases {
    width: min(100% - 30px, 375px);
  }

  .ai-video-enhancer-hero {
    margin-top: 34px;
  }

  .ai-video-enhancer-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .ai-video-enhancer-hero-copy p,
  .ai-video-enhancer-p2 > p,
  .ai-video-enhancer-use-cases > p {
    font-size: 14px;
    line-height: 22px;
  }

  .ai-video-enhancer-hero-stage {
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: auto;
    margin-top: 42px;
  }

  .ai-video-enhancer-hero-before,
  .ai-video-enhancer-hero-after {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .ai-video-enhancer-hero-line {
    display: none;
  }

  .ai-video-enhancer-toolbar {
    display: none;
  }

  .ai-video-enhancer-p2,
  .ai-video-enhancer-use-cases {
    margin-top: 70px;
  }

  .ai-video-enhancer-p2 h2,
  .ai-video-enhancer-use-cases h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .ai-video-enhancer-comparison {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .ai-video-enhancer-p2-stack,
  .ai-video-enhancer-card-grid {
    gap: 60px;
    margin-top: 50px;
  }

  .ai-video-enhancer-p2-stack h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .ai-video-enhancer-p2-stack p {
    font-size: 14px;
    line-height: 22px;
  }

  .ai-video-enhancer-card-grid {
    grid-template-columns: 1fr;
  }

  .ai-video-enhancer-card-grid article {
    height: 280px;
  }

  .ai-video-enhancer-compare-label {
    top: 12px;
    padding: 4px 9px;
    font-size: 12px;
  }

  .ai-video-enhancer-compare-label-before {
    left: 12px;
  }

  .ai-video-enhancer-compare-label-after {
    right: 12px;
  }

  .ai-video-enhancer-compare-handle span {
    width: 42px;
    height: 42px;
  }

  .ai-video-enhancer-page .workflow-templates-scenes,
  .ai-video-enhancer-page .footer {
    margin-top: 70px;
  }

  .team-collaboration-content {
    padding-top: 18px;
  }

  .team-collaboration-hero,
  .team-collaboration-features,
  .team-collaboration-cta {
    width: min(100% - 30px, 375px);
  }

  .team-collaboration-hero {
    margin-top: 34px;
  }

  .team-collaboration-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .team-collaboration-hero-copy p,
  .team-collaboration-feature-card p,
  .team-collaboration-cta p {
    font-size: 14px;
    line-height: 22px;
  }

  .team-collaboration-hero-stage {
    display: block;
    position: relative;
    height: auto;
    aspect-ratio: 1280 / 360;
    margin-top: 42px;
    overflow: visible;
    transform: none;
  }

  .team-collaboration-hero-image-card,
  .team-collaboration-hero-video-card,
  .team-collaboration-script-card,
  .team-collaboration-comment-card {
    position: absolute;
  }

  .team-collaboration-script-card p {
    height: clamp(28px, 9.5vw, 122px);
    padding: clamp(2px, 0.8vw, 10px);
    border-radius: clamp(3px, 0.8vw, 10px);
    font-size: clamp(5px, 1.55vw, 12px);
    line-height: 1.25;
    -webkit-line-clamp: 4;
  }

  .team-collaboration-script-card,
  .team-collaboration-comment-card,
  .team-collaboration-hero-image-card,
  .team-collaboration-hero-video-card {
    gap: clamp(2px, 0.7vw, 10px);
  }

  .team-collaboration-comment-card {
    padding: clamp(3px, 0.8vw, 10px);
    border-radius: clamp(3px, 0.8vw, 10px);
  }

  .team-collaboration-comment-card div {
    gap: clamp(2px, 0.8vw, 10px);
  }

  .team-collaboration-comment-card img {
    width: clamp(8px, 2.1vw, 24px);
    height: clamp(8px, 2.1vw, 24px);
    flex-basis: clamp(8px, 2.1vw, 24px);
  }

  .team-collaboration-hero-image-card span,
  .team-collaboration-hero-video-card span,
  .team-collaboration-script-card span,
  .team-collaboration-comment-card strong,
  .team-collaboration-comment-card p {
    font-size: clamp(5px, 1.55vw, 12px);
    line-height: 1.25;
  }

  .team-collaboration-hero-image-card img,
  .team-collaboration-hero-video-card video {
    border-radius: clamp(3px, 0.8vw, 10px);
  }

  .team-collaboration-hero-links {
    display: block;
  }

  .team-collaboration-features {
    gap: 40px;
    margin-top: 70px;
  }

  .team-collaboration-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 20px;
  }

  .team-collaboration-feature-card h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .team-collaboration-feature-card > video,
  .team-collaboration-feature-card > img {
    width: 100%;
    max-height: none;
  }

  .team-collaboration-roles-visual {
    width: 100%;
    margin-top: 4px;
  }

  .team-collaboration-role-strip {
    gap: 5px;
    padding: 6px;
  }

  .team-collaboration-role-strip span,
  .team-collaboration-roles-prompt,
  .team-collaboration-roles-comment {
    font-size: 8px;
    line-height: 11px;
  }

  .team-collaboration-role-strip img {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .team-collaboration-tags span {
    min-height: 32px;
    font-size: 11px;
  }

  .team-collaboration-cta {
    margin-top: 70px;
  }

  .team-collaboration-page .workflow-templates-scenes {
    margin-top: 70px;
  }

  .team-collaboration-page .footer {
    margin-top: 70px;
  }
}

.pricing-page .footer,
.about-page .footer,
.legal-page .footer,
.seedance-page .footer,
.gpt-image-page .footer,
.gemini-page .footer,
.eleven-page .footer,
.ai-cinematic-page .footer,
.workflow-templates-page .footer,
.asset-library-page .footer,
.ai-video-enhancer-page .footer,
.team-collaboration-page .footer {
  min-height: 344px;
  height: auto;
  padding: 40px 0;
  gap: 60px;
  background: #040404;
}

@media (max-width: 768px) {
  .footer,
  .pricing-page .footer,
  .about-page .footer,
  .legal-page .footer,
  .seedance-page .footer,
  .gpt-image-page .footer,
  .gemini-page .footer,
  .eleven-page .footer,
  .ai-cinematic-page .footer,
  .workflow-templates-page .footer,
  .asset-library-page .footer,
  .ai-video-enhancer-page .footer,
  .team-collaboration-page .footer {
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: 36px 20px;
    gap: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 14px;
    align-items: start;
    width: min(100%, 375px);
    max-width: 100%;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
    flex: 0 0 auto;
  }

  .footer-column,
  .footer-column:first-of-type {
    width: 100%;
    min-width: 0;
    flex: 0 1 auto;
  }

  .footer-logo,
  .footer-logo img {
    width: 180px;
    max-width: 180px;
  }

  .footer-brand-copy p,
  .footer-column h2,
  .footer-column a,
  .footer-column a:link,
  .footer-column a:visited {
    font-size: 12px;
    white-space: normal;
  }

  .footer-brand-copy .footer-brand-title {
    font-size: 14px;
  }

  .footer-column {
    gap: 14px;
  }

  .copyright {
    font-size: 11px;
  }
}

.ai-cinematic-page .page-content,
.workflow-templates-content,
.asset-library-content,
.ai-video-enhancer-content,
.team-collaboration-content {
  height: auto;
  min-height: 100vh;
  padding-top: 100px;
  box-sizing: border-box;
}

.ai-cinematic-breadcrumb,
.workflow-templates-breadcrumb,
.seedance-page .seedance-breadcrumb,
.gpt-image-page .gpt-image-breadcrumb,
.gemini-page .gemini-breadcrumb,
.eleven-page .eleven-breadcrumb {
  margin-top: 0;
}

@media (max-width: 768px) {
  .ai-cinematic-page .page-content,
  .workflow-templates-content,
  .asset-library-content,
  .ai-video-enhancer-content,
  .team-collaboration-content {
    padding-top: 84px;
  }
}

.privacy-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 108px;
  padding: 30px 120px;
  box-sizing: border-box;
  color: #fff;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(6.674px);
  -webkit-backdrop-filter: blur(6.674px);
  box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.privacy-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-consent.is-hiding {
  opacity: 0;
  transform: translateY(100%);
}

.privacy-consent__copy {
  width: auto;
  max-width: calc(100% - 360px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  word-break: break-word;
}

.privacy-consent__copy p {
  margin: 0;
}

.privacy-consent__copy a,
.privacy-consent__copy a:link,
.privacy-consent__copy a:visited {
  color: #fff;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.privacy-consent__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 0 0 auto;
}

.privacy-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 40px;
  padding: 10px 30px;
  border: 0;
  border-radius: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.privacy-consent__button:hover,
.privacy-consent__button:focus-visible {
  transform: translateY(-1px);
}

.privacy-consent__button--decline {
  color: #fff;
  background: #000;
}

.privacy-consent__button--accept {
  color: #040000;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1440px) {
  .privacy-consent {
    min-height: 96px;
    padding-right: 64px;
    padding-left: 64px;
  }

  .privacy-consent__copy {
    max-width: calc(100% - 328px);
  }
}

@media (max-width: 768px) {
  .privacy-consent {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    max-height: calc(100dvh - 24px);
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .privacy-consent__copy {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    font-size: 11px;
    line-height: 18px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .privacy-consent__actions {
    width: 100%;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 12px;
  }

  .privacy-consent__button {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    min-height: 38px;
    padding: 9px 18px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .privacy-consent {
    padding-right: 12px;
    padding-left: 12px;
  }

  .privacy-consent__actions {
    flex-direction: column;
  }

  .privacy-consent__button {
    width: 100%;
    flex-basis: auto;
  }
}


/* English resources center */
.resources-page .page {
  overflow: visible;
}

.resources-page .resource-content {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 80px 0 0;
  overflow: visible;
  background: #000;
}

.resources-page .reveal-section {
  opacity: 1;
  transform: none;
}

.resource-breadcrumb,
.resource-hero,
.resource-updates,
.resource-news,
.resource-cta,
.resource-detail-layout,
.news-list-hero,
.news-list-grid,
.news-post,
.news-related {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.resource-breadcrumb {
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

.resource-breadcrumb a,
.resource-breadcrumb strong {
  color: #aaa;
  font-weight: 400;
  text-decoration: none;
}

.resource-breadcrumb span {
  margin: 0 8px;
}

.resource-hero {
  padding: 72px 0 40px;
  text-align: center;
}

.resource-hero h1,
.news-list-hero h1,
.news-post h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

.resource-hero p,
.news-list-hero p {
  margin: 12px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}

.resource-updates,
.resource-news,
.resource-cta,
.news-list-grid,
.news-post,
.news-related {
  margin-top: 110px;
}

.resource-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.resource-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1.25;
}

.resource-section-head a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.resources-page .resource-updates .resource-section-head {
  align-items: flex-end;
}

.resources-page .resource-updates .resource-section-head a {
  line-height: 24px;
}

.resource-timeline {
  --timeline-gap: 70px;
  position: relative;
  min-height: 1240px;
  margin-top: 60px;
}

.resource-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #1d1d25;
}

.resource-update-card {
  position: absolute;
  width: min(480px, calc(50% - var(--timeline-gap)));
  min-height: 220px;
  padding: 20px;
  border: 1px solid #222;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(90deg, #040404 0%, rgba(4, 4, 4, 0) 100%);
  color: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.resource-update-card::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 18px;
  height: 18px;
  border: 1px solid #dbe6ff;
  border-radius: 50%;
  background: radial-gradient(circle, #111827 0 42%, #040404 44% 100%);
  box-shadow: 0 0 0 3px rgba(219, 230, 255, 0.08), 0 0 16px rgba(219, 230, 255, 0.32);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.resource-update-card:hover,
.resource-update-card:focus-visible {
  border-color: #333;
  background: linear-gradient(90deg, #040404 0%, rgba(4, 4, 4, 0) 100%);
  box-shadow: 0 0 28px rgba(76, 226, 243, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.resource-update-card:hover::after,
.resource-update-card:focus-visible::after {
  border-color: #f3f7ff;
  background: radial-gradient(circle, #4ce2f3 0 28%, #101827 31% 42%, #040404 44% 100%);
  box-shadow: 0 0 0 4px rgba(76, 226, 243, 0.14), 0 0 22px rgba(76, 226, 243, 0.45);
}

.resource-update-card.is-left {
  right: calc(50% + var(--timeline-gap));
}

.resource-update-card.is-left::after {
  right: calc((var(--timeline-gap) + 9px) * -1);
}

.resource-update-card.is-right {
  left: calc(50% + var(--timeline-gap));
}

.resource-update-card.is-right::after {
  left: calc((var(--timeline-gap) + 9px) * -1);
}

.resource-update-card:nth-child(1) {
  top: 0;
}

.resource-update-card:nth-child(2) {
  top: 250px;
}

.resource-update-card:nth-child(3) {
  top: 500px;
}

.resource-update-card:nth-child(4) {
  top: 750px;
}

.resource-update-card:nth-child(5) {
  top: 1020px;
}

.resource-updates-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  height: 260px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.resource-updates-more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/figma/resource-updates-more-mask-figma.png") center / 100% 100% no-repeat;
  pointer-events: none;
}

.resource-updates-more span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.resource-updates-more span::after {
  content: "";
  width: 18px;
  height: 14.728px;
  background: url("assets/figma/resource-updates-more-arrow.svg") center / contain no-repeat;
  transform: rotate(-45deg);
  transform-origin: center;
}

.resource-update-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 30px;
}

.resource-update-card p {
  margin: 0;
  color: #d6d9df;
  font-size: 16px;
  line-height: 24px;
}

.resource-update-card time {
  margin-top: auto;
  color: #aaa;
  font-size: 16px;
  line-height: 24px;
}

.resource-pill {
  width: max-content;
  margin-bottom: 30px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(110deg, #bffee1 8.98%, #05cefe 78.37%);
  color: #151524;
  font-size: 14px;
  font-weight: 700;
}

.resource-news-grid,
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.resource-news-grid {
  margin-top: 60px;
}

.resource-news-card,
.news-list-card {
  color: #fff;
  text-decoration: none;
}

.resource-news-card img,
.news-list-card img {
  width: 100%;
  height: 220px;
  display: block;
  border: 1px solid rgba(25, 25, 33, 0.6);
  border-radius: 20px;
  object-fit: cover;
}

.resource-news-card h3,
.news-list-card h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
}

.resource-news-card time {
  display: block;
  margin-top: 8px;
  color: #aaa;
  font-size: 14px;
  line-height: 20px;
}

.news-list-card time {
  display: block;
  margin-top: 8px;
  color: #aaa;
  font-size: 14px;
  line-height: 20px;
}

.news-pagination {
  width: min(1180px, calc(100% - 48px));
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.news-pagination[hidden] {
  display: none;
}

.news-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #d6d9df;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.news-pagination button.is-active {
  border-color: #58f5d7;
  color: #111;
  background: #58f5d7;
}

.resource-cta {
  position: relative;
  min-height: 261px;
  border: 1px solid #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.resource-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 59%;
}

.resource-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.resource-cta > div {
  position: relative;
  z-index: 1;
  color: #fff;
}

.resource-cta h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.resource-cta p {
  margin: 10px 0 20px;
  font-size: 20px;
  line-height: 28px;
}

.resource-cta button {
  height: 48px;
  padding: 0 40px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151524;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
}

.resource-detail-layout {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 340px minmax(0, 660px);
  justify-content: center;
  gap: 36px;
}

.resource-update-stream {
  display: block;
  width: min(1036px, calc(100% - 48px));
}

.resource-updates-heading {
  margin-bottom: 52px;
  color: #fff;
}

.resource-updates-heading h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.25;
}

.resource-updates-heading p {
  margin: 10px 0 0;
  color: #aaa;
  font-size: 16px;
  line-height: 24px;
}

.resource-update-entry {
  display: grid;
  grid-template-columns: 340px minmax(0, 660px);
  align-items: start;
  gap: 36px;
  scroll-margin-top: 96px;
}

.resource-update-entry + .resource-update-entry {
  margin-top: 80px;
}

.resource-flow-nav {
  display: grid;
  grid-template-columns: 340px minmax(0, 660px);
  gap: 36px;
}

.resource-flow-nav + .resource-update-entry,
.resource-update-entry + .resource-flow-nav {
  margin-top: 44px;
}

.resource-flow-nav a {
  grid-column: 2;
  padding: 24px 0 24px 60px;
  border-left: 1px solid #1d1d25;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.resource-flow-nav a:hover,
.resource-flow-nav a:focus-visible {
  border-color: rgba(94, 141, 255, 0.8);
  transform: translateX(4px);
}

.resource-detail-nav-side .resource-flow-nav a:hover,
.resource-detail-nav-side .resource-flow-nav a:focus-visible {
  border-color: #dddddd;
}

.resource-flow-nav a span {
  display: block;
  color: #999999;
  font-size: 14px;
  line-height: 20px;
}

.resource-flow-nav a strong {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.resource-flow-nav a small,
.resource-flow-nav a em {
  display: block;
  margin-top: 8px;
  color: #aaa;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.resource-flow-home {
  margin-top: 60px;
  text-align: center;
}

.resource-flow-home a {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.resource-detail-side {
  position: sticky;
  top: 90px;
  align-self: start;
  color: #aaa;
}

.resource-detail-side h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

.resource-detail-side p,
.resource-detail-side time,
.resource-detail-side .resource-detail-meta {
  display: block;
  margin: 16px 0 0;
  color: #aaa;
  font-size: 14px;
  line-height: 20px;
}

.resource-detail-nav-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.resource-detail-nav-side .resource-flow-nav {
  display: block;
}

.resource-detail-nav-side .resource-flow-nav a {
  display: block;
  grid-column: auto;
  padding: 0 0 0 20px;
}

.resource-detail-main {
  grid-column: 2;
  min-width: 0;
  padding-left: 60px;
  border-left: 1px solid #1d1d25;
}

.resource-detail-block + .resource-detail-block {
  margin-top: 56px;
}

.resource-detail-block h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

.resource-detail-block p {
  margin: 14px 0 20px;
  color: #d6d9df;
  font-size: 16px;
  line-height: 24px;
}

.resource-detail-media {
  display: grid;
  gap: 12px;
}

.resource-detail-media.is-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-detail-media.is-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-detail-media img {
  width: 100%;
  height: auto;
  border: 1px solid #1d1d25;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.news-list-hero {
  margin-top: 64px;
}

.news-list-hero p {
  margin-top: 10px;
}

.news-list-grid {
  margin-top: 30px;
}

.news-list-card img {
  border-radius: 12px;
}

.news-list-card h2 {
  margin-top: 30px;
}

.news-tabs {
  margin-top: 60px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1d1d25;
  display: flex;
  gap: 40px;
}

.news-tabs a {
  color: #aaa;
  font-size: 18px;
  line-height: 27px;
  text-decoration: none;
}

.news-tabs a.is-active {
  color: #fff;
}

.news-post {
  width: min(880px, calc(100% - 48px));
  color: #d6d9df;
}

.news-post header h1 {
  font-size: 36px;
}

.news-post header p {
  display: flex;
  gap: 20px;
  margin: 14px 0 28px;
  color: #aaa;
  font-size: 14px;
  line-height: 20px;
}

.news-post header img,
.news-post-body img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #1d1d25;
  border-radius: 16px;
  object-fit: cover;
}

.news-post header img {
  aspect-ratio: 880 / 496;
}

.news-source-note {
  margin: 10px 0 0;
  color: #8d94a3;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.news-post-body .news-source-note {
  margin: 6px 0 18px;
  text-align: left;
}

.news-post-body {
  margin-top: 34px;
}

.news-post-body h2 {
  margin: 44px 0 16px;
  color: #fff;
  font-size: 24px;
  line-height: 34px;
}

.news-post-body h3 {
  margin: 30px 0 14px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

.news-post-body p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 28px;
}

.news-post-body img {
  max-width: 800px;
  margin: 24px 0 34px;
  margin-left: auto;
  margin-right: auto;
}

.news-post-pager {
  width: min(880px, calc(100% - 48px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: space-between;
  gap: 40px;
}

.news-post-pager-card {
  color: #fff;
  text-decoration: none;
}

.news-post-pager-card:only-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(400px, 100%);
}

.news-post-pager-card span {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-post-pager-card img {
  width: 100%;
  height: 220px;
  margin-top: 30px;
  display: block;
  border: 1px solid rgba(25, 25, 33, 0.6);
  border-radius: 12px;
  object-fit: cover;
}

.news-post-pager-card strong {
  display: block;
  margin-top: 30px;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
}

.resource-article-cta {
  width: min(1280px, calc(100% - 48px));
}

.news-related > div:last-child {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.news-related a {
  color: #fff;
  text-decoration: none;
}

.news-related img {
  width: 100%;
  height: 220px;
  display: block;
  border: 1px solid rgba(25, 25, 33, 0.6);
  border-radius: 20px;
  object-fit: cover;
}

.news-related span {
  display: block;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

@media (max-width: 992px) {
  .resource-news-grid,
  .news-list-grid,
  .news-related > div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-detail-layout {
    grid-template-columns: 1fr;
  }

  .resource-update-entry {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .resource-flow-nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .resource-flow-nav + .resource-update-entry,
  .resource-update-entry + .resource-flow-nav {
    margin-top: 34px;
  }

  .resource-flow-nav a {
    grid-column: 1;
    padding: 18px 0 18px 20px;
  }

  .resource-update-entry + .resource-update-entry {
    margin-top: 64px;
  }

  .resource-detail-side {
    position: static;
  }

  .resource-detail-main {
    grid-column: 1;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .resources-page .resource-content {
    padding-top: 80px;
  }

  .resource-breadcrumb,
  .resource-hero,
  .resource-updates,
  .resource-news,
  .resource-cta,
  .resource-detail-layout,
  .news-list-hero,
  .news-list-grid,
  .news-post,
  .news-related {
    width: calc(100% - 30px);
    max-width: 375px;
  }

  .resource-hero {
    padding-top: 48px;
  }

  .resource-hero h1,
  .news-list-hero h1,
  .resource-detail-side h2,
  .news-post h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .resource-hero p,
  .news-list-hero p {
    font-size: 14px;
    line-height: 22px;
  }

  .resource-updates,
  .resource-news,
  .resource-cta,
  .news-list-grid,
  .news-post,
  .news-related {
    margin-top: 70px;
  }

  .resource-section-head h2 {
    font-size: 28px;
  }

  .resource-timeline {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 34px;
  }

  .resource-timeline::before {
    display: block;
    left: 9px;
  }

  .resource-update-card::after {
    display: block;
    top: 22px;
    left: -34px;
    right: auto;
  }

  .resource-update-card.is-left::after,
  .resource-update-card.is-right::after {
    left: -34px;
    right: auto;
  }

  .resource-update-card.is-left,
  .resource-update-card.is-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-column: auto;
    justify-self: stretch;
    margin-top: 0;
    width: 100%;
  }

  .resource-updates-more {
    position: relative;
    z-index: 20;
    height: 160px;
    padding-bottom: 20px;
    margin-top: -110px;
    margin-left: -34px;
  }

  .resource-news-grid,
  .news-list-grid,
  .news-related > div:last-child {
    grid-template-columns: 1fr;
  }

  .resource-news-grid {
    margin-top: 40px;
  }

  .resource-detail-media.is-gallery,
  .resource-detail-media.is-gallery-two {
    grid-template-columns: 1fr;
  }

  .news-post-pager {
    width: calc(100% - 30px);
    max-width: 375px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-post-pager-card img {
    height: 190px;
  }

  .news-post-pager-card strong,
  .news-related span {
    font-size: 18px;
    line-height: 28px;
  }

  .resource-news-card img,
  .news-list-card img {
    height: 190px;
  }

  .resource-cta {
    min-height: 240px;
    padding: 32px 20px;
  }

  .resource-cta h2 {
    font-size: 26px;
  }

  .resource-cta p {
    font-size: 14px;
    line-height: 22px;
  }

  .resource-detail-layout,
  .news-list-hero {
    margin-top: 48px;
  }

  .news-tabs {
    gap: 24px;
    overflow-x: auto;
  }

  .news-tabs a {
    font-size: 15px;
    white-space: nowrap;
  }

  .news-post header h1 {
    font-size: 28px;
    line-height: 36px;
  }
}


.header-resources-menu {
  width: 220px;
}

.header-resources-menu a.is-active,
.header-resources-menu a.is-active:link,
.header-resources-menu a.is-active:visited {
  color: #4ce2f3;
  background: rgba(255, 255, 255, 0.06);
}

.resources-page .footer {
  position: relative;
  top: auto;
  left: auto;
  width: 1920px;
  max-width: 100%;
  min-height: 344px;
  height: auto;
  margin: 120px auto 0;
}

@media (max-width: 768px) {
  .resources-page .footer {
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: 36px 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header-models-menu a.is-active,
.header-models-menu a.is-active:link,
.header-models-menu a.is-active:visited {
  color: #4ce2f3;
  background: rgba(255, 255, 255, 0.06);
}

.product-updates-page .resource-detail-nav-side .resource-flow-nav a + a {
  margin-top: 34px;
}

.product-updates-page .resource-detail-nav-side .resource-flow-nav a:hover,
.product-updates-page .resource-detail-nav-side .resource-flow-nav a:focus-visible {
  border-left-color: #999999;
}

/* English Blog redesign */
.news-page .resource-breadcrumb {
  font-size: 14px;
  line-height: 20px;
}

.news-page .news-list-hero {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news-page .news-list-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.news-page .news-list-hero h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.news-page .news-list-hero p {
  max-width: 900px;
  margin: 0;
  color: #ddd;
  font-size: 16px;
  line-height: 24px;
}

.news-page .news-tabs {
  width: 100%;
  margin-top: 80px;
  padding: 10px 0;
  border-bottom: 1px solid #1d1d25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.news-page .news-tabs a {
  color: #aaa;
  font-size: 18px;
  line-height: 27px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-page .news-tabs a:hover,
.news-page .news-tabs a:focus-visible,
.news-page .news-tabs a.is-active {
  color: #fff;
}

.news-page .news-list-grid {
  margin-top: 80px;
  gap: 40px;
}

.news-page .news-list-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s ease;
}

.news-page .news-list-card[hidden] {
  display: none !important;
}

.news-page .news-list-card:hover,
.news-page .news-list-card:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.news-page .news-list-card img {
  height: 220px;
  border-radius: 12px;
}

.news-page .news-list-card h2 {
  display: -webkit-box;
  margin-top: 20px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-page .news-list-card time {
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  line-height: 20px;
}

.news-page .news-list-card time::after {
  content: " \2022  Pixmax Update";
}

.news-page .news-pagination {
  margin-top: 40px;
  gap: 12px;
}

.news-page .news-pagination button {
  min-width: 40px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  color: #777;
  background: #080808;
}

.news-page .news-pagination button.is-active {
  color: #111;
  background: #fff;
}

.news-page .news-post {
  width: min(1000px, calc(100% - 48px));
  margin-top: 72px;
}

.news-page .news-post header {
  text-align: center;
}

.news-page .news-post header h1 {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.news-page .news-post header p {
  width: 100%;
  margin: 20px auto 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1d1d25;
  justify-content: center;
  gap: 40px;
  color: #999;
  font-size: 14px;
  line-height: 20px;
}

.news-page .news-post header p span {
  color: #aaa;
  font-size: 16px;
  line-height: 24px;
}

.news-page .news-post header time::after {
  content: " \2022  Pixmax Update";
}

.news-page .news-post header img {
  width: min(880px, 100%);
  margin: 0 auto;
  border-radius: 10px;
}

.news-page .news-post-body {
  width: min(880px, 100%);
  margin: 30px auto 0;
  color: #d6d9df;
}

.news-page .news-post-body h2 {
  margin: 50px 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.news-page .news-post-body h3 {
  margin: 36px 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.news-page .news-post-body p,
.news-page .news-post-body li {
  color: #d6d9df;
  font-size: 16px;
  line-height: 24px;
}

.news-page .news-post-body p {
  margin-bottom: 10px;
}

.news-page .news-post-body ul,
.news-page .news-post-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.news-page .news-workflow-line {
  margin: 24px 0 30px;
  padding: 22px;
  border: 1px solid #1d1d25;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.news-page .news-workflow-line span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d6d9df;
  font-size: 14px;
  line-height: 20px;
}

.news-page .news-workflow-line span:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
}

.news-page .news-post-body img {
  width: 100%;
  max-width: 880px;
  margin: 30px 0;
  border-radius: 10px;
}

.news-page .news-post-pager {
  display: none;
}

.news-page .news-related {
  margin-top: 110px;
}

.news-page .news-related .resource-section-head h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
}

.news-page .news-related .resource-section-head a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.news-page .news-related .resource-section-head a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.news-page .news-related > div:last-child {
  margin-top: 60px;
  gap: 40px;
}

.news-page .news-related img {
  height: 220px;
  border-radius: 12px;
}

.news-page .news-related span {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.news-page .news-related time {
  display: block;
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  line-height: 20px;
}

.news-page .news-related time::after {
  content: " \2022  Pixmax Update";
}

.news-page .resource-article-cta {
  min-height: 128px;
  margin-top: 60px;
  padding: 40px;
  justify-content: space-between;
  text-align: left;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.news-page .resource-article-cta img,
.news-page .resource-article-cta::after {
  display: none;
}

.news-page .resource-article-cta > div {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 682px) auto;
  align-items: center;
  column-gap: 40px;
}

.news-page .resource-article-cta h2 {
  grid-column: 1;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.news-page .resource-article-cta p {
  grid-column: 1;
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.news-page .resource-article-cta button {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
}

@media (max-width: 992px) {
  .news-page .news-list-grid,
  .news-page .news-related > div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page .resource-article-cta > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-page .resource-article-cta button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .news-page .news-list-hero {
    margin-top: 48px;
  }

  .news-page .news-list-hero h1 {
    font-size: 36px;
  }

  .news-page .news-tabs {
    margin-top: 42px;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-page .news-tabs a {
    flex: 0 0 auto;
    font-size: 15px;
    line-height: 22px;
  }

  .news-page .news-list-grid,
  .news-page .news-related > div:last-child {
    grid-template-columns: 1fr;
  }

  .news-page .news-list-card img,
  .news-page .news-related img {
    height: 190px;
  }

  .news-page .news-post {
    margin-top: 48px;
  }

  .news-page .news-post header h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .news-page .news-post header p {
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 30px;
  }

  .news-page .news-post-body h2 {
    margin-top: 38px;
  }

  .news-page .news-related {
    margin-top: 70px;
  }

  .news-page .news-related .resource-section-head h2,
  .news-page .resource-article-cta h2 {
    font-size: 28px;
  }

  .news-page .resource-article-cta {
    min-height: 0;
    padding: 28px 20px;
  }
}

/* Resources page Blog preview */
.resources-page .resource-news {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 160px;
}

.resources-page .resource-news .resource-section-head h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
}

.resources-page .resource-news .resource-section-head a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.resources-page .resource-news .resource-section-head a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.resources-page .resource-news-grid {
  margin-top: 0;
  gap: 40px;
}

.resources-page .resource-news-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.resources-page .resource-news-card:hover,
.resources-page .resource-news-card:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.resources-page .resource-news-card img {
  height: 220px;
  border-radius: 12px;
}

.resources-page .resource-news-card h3 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.resources-page .resource-news-card time {
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  line-height: 20px;
}

.resources-page .resource-news-card time::after {
  content: " \2022  Pixmax Update";
}

@media (max-width: 768px) {
  .resources-page .resource-news {
    gap: 40px;
  }

  .resources-page .resource-news .resource-section-head h2 {
    font-size: 28px;
  }
}

/* Product updates index uses the same structured navigation as the CN site. */
.header-model-menu,
.header-feature-menu,
.header-resource-menu {
  position: relative;
  height: 60px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.header-feature-tab,
.header-model-tab,
.header-resource-tab {
  gap: 10px;
}

.header-model-tab {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header-tab-arrow {
  width: 12px;
  height: 7px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.header-tab-arrow::before,
.header-tab-arrow::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.header-tab-arrow::before {
  left: 0;
  transform: rotate(45deg);
}

.header-tab-arrow::after {
  right: 0;
  transform: rotate(-45deg);
}

.header-model-menu:hover .header-model-tab,
.header-model-menu:focus-within .header-model-tab,
.header-model-menu.is-open .header-model-tab,
.header-feature-menu:hover .header-feature-tab,
.header-feature-menu:focus-within .header-feature-tab,
.header-feature-menu.is-open .header-feature-tab,
.header-resource-menu:hover .header-resource-tab,
.header-resource-menu:focus-within .header-resource-tab {
  color: #4ce2f3;
}

.header-model-menu:hover .header-tab-arrow,
.header-model-menu:focus-within .header-tab-arrow,
.header-model-menu.is-open .header-tab-arrow,
.header-feature-menu:hover .header-tab-arrow,
.header-feature-menu:focus-within .header-tab-arrow,
.header-feature-menu.is-open .header-tab-arrow,
.header-resource-menu:hover .header-tab-arrow,
.header-resource-menu:focus-within .header-tab-arrow {
  transform: rotate(180deg);
}

.feature-dropdown,
.model-dropdown,
.resource-dropdown {
  background: #121212;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  z-index: 80;
}

.feature-dropdown {
  position: absolute;
  top: 60px;
  left: -139px;
  width: 730px;
  height: 420px;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  transform: translateY(8px);
}

.model-dropdown {
  position: fixed;
  top: calc(var(--promo-header-offset) + 60px);
  left: 50%;
  width: min(680px, calc(100vw - 48px));
  padding: 30px;
  border-radius: 12px;
  transform: translate(-50%, 8px);
}

.resource-dropdown {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 240px;
  padding: 20px;
  border-radius: 12px;
  transform: translate(-50%, 8px);
}

.feature-dropdown::before,
.resource-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.header-feature-menu:hover .feature-dropdown,
.header-feature-menu:focus-within .feature-dropdown,
.header-feature-menu.is-open .feature-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-model-menu:hover .model-dropdown,
.header-model-menu:focus-within .model-dropdown,
.header-model-menu.is-open .model-dropdown,
.header-resource-menu:hover .resource-dropdown,
.header-resource-menu:focus-within .resource-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.feature-dropdown-panel,
.resource-dropdown-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-dropdown-panel {
  width: 180px;
  flex: 0 0 180px;
}

.feature-option,
.feature-option:link,
.feature-option:visited,
.resource-option,
.resource-option:link,
.resource-option:visited,
.model-option,
.model-option:link,
.model-option:visited {
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.feature-option,
.feature-option:link,
.feature-option:visited {
  width: 180px;
  white-space: nowrap;
}

.resource-option,
.resource-option:link,
.resource-option:visited {
  width: 200px;
}

.model-option,
.model-option:link,
.model-option:visited {
  display: inline-flex;
  width: auto;
}

.feature-option:hover,
.feature-option:focus-visible,
.resource-option:hover,
.resource-option:focus-visible,
.resource-option.is-resource-active,
.model-option:hover,
.model-option:focus-visible {
  outline: none;
  color: #4ce2f3;
  background: #040000;
}

.feature-option-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.feature-option-icon img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.feature-option:hover .feature-option-icon img,
.feature-option:focus-visible .feature-option-icon img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(71%) saturate(1346%) hue-rotate(149deg) brightness(98%) contrast(94%);
}

.feature-preview-card {
  width: 460px;
  height: 360px;
  padding: 20px 30px;
  border-radius: 10px;
  background: #040000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 460px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.feature-preview-card-cinematic,
.feature-preview-card-workflow,
.feature-preview-card-assets,
.feature-preview-card-enterprise,
.feature-preview-card-ai {
  display: none;
}

.feature-dropdown:has(.feature-option-cinematic.is-feature-active) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-option-workflow.is-feature-active) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-option-assets.is-feature-active) .feature-preview-card-assets,
.feature-dropdown:has(.feature-option-enterprise.is-feature-active) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-option-ai-video.is-feature-active) .feature-preview-card-ai,
.feature-dropdown:has(.feature-option-cinematic:hover) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-option-cinematic:focus-visible) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:hover) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:focus-visible) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-option-workflow:hover) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-option-workflow:focus-visible) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:hover) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:focus-visible) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-option-assets:hover) .feature-preview-card-assets,
.feature-dropdown:has(.feature-option-assets:focus-visible) .feature-preview-card-assets,
.feature-dropdown:has(.feature-preview-card-assets:hover) .feature-preview-card-assets,
.feature-dropdown:has(.feature-preview-card-assets:focus-visible) .feature-preview-card-assets,
.feature-dropdown:has(.feature-option-enterprise:hover) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-option-enterprise:focus-visible) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:hover) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:focus-visible) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-option-ai-video:hover) .feature-preview-card-ai,
.feature-dropdown:has(.feature-option-ai-video:focus-visible) .feature-preview-card-ai,
.feature-dropdown:has(.feature-preview-card-ai:hover) .feature-preview-card-ai,
.feature-dropdown:has(.feature-preview-card-ai:focus-visible) .feature-preview-card-ai {
  display: flex;
}

.feature-dropdown:has(.feature-option-cinematic:hover) .feature-option-cinematic,
.feature-dropdown:has(.feature-option-cinematic:focus-visible) .feature-option-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:hover) .feature-option-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:focus-visible) .feature-option-cinematic,
.feature-dropdown:has(.feature-option-workflow:hover) .feature-option-workflow,
.feature-dropdown:has(.feature-option-workflow:focus-visible) .feature-option-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:hover) .feature-option-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:focus-visible) .feature-option-workflow,
.feature-dropdown:has(.feature-option-assets:hover) .feature-option-assets,
.feature-dropdown:has(.feature-option-assets:focus-visible) .feature-option-assets,
.feature-dropdown:has(.feature-preview-card-assets:hover) .feature-option-assets,
.feature-dropdown:has(.feature-preview-card-assets:focus-visible) .feature-option-assets,
.feature-dropdown:has(.feature-option-enterprise:hover) .feature-option-enterprise,
.feature-dropdown:has(.feature-option-enterprise:focus-visible) .feature-option-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:hover) .feature-option-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:focus-visible) .feature-option-enterprise,
.feature-dropdown:has(.feature-option-ai-video:hover) .feature-option-ai-video,
.feature-dropdown:has(.feature-option-ai-video:focus-visible) .feature-option-ai-video,
.feature-dropdown:has(.feature-preview-card-ai:hover) .feature-option-ai-video,
.feature-dropdown:has(.feature-preview-card-ai:focus-visible) .feature-option-ai-video,
.feature-option.is-feature-active {
  color: #4ce2f3;
  background: #040000;
}

.feature-dropdown:has(.feature-option:hover) .feature-preview-card,
.feature-dropdown:has(.feature-option:focus-visible) .feature-preview-card,
.feature-dropdown:has(.feature-preview-card:hover) .feature-preview-card,
.feature-dropdown:has(.feature-preview-card:focus-visible) .feature-preview-card {
  display: none;
}

.feature-dropdown:has(.feature-option-cinematic:hover) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-option-cinematic:focus-visible) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:hover) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:focus-visible) .feature-preview-card-cinematic,
.feature-dropdown:has(.feature-option-workflow:hover) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-option-workflow:focus-visible) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:hover) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:focus-visible) .feature-preview-card-workflow,
.feature-dropdown:has(.feature-option-assets:hover) .feature-preview-card-assets,
.feature-dropdown:has(.feature-option-assets:focus-visible) .feature-preview-card-assets,
.feature-dropdown:has(.feature-preview-card-assets:hover) .feature-preview-card-assets,
.feature-dropdown:has(.feature-preview-card-assets:focus-visible) .feature-preview-card-assets,
.feature-dropdown:has(.feature-option-enterprise:hover) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-option-enterprise:focus-visible) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:hover) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:focus-visible) .feature-preview-card-enterprise,
.feature-dropdown:has(.feature-option-ai-video:hover) .feature-preview-card-ai,
.feature-dropdown:has(.feature-option-ai-video:focus-visible) .feature-preview-card-ai,
.feature-dropdown:has(.feature-preview-card-ai:hover) .feature-preview-card-ai,
.feature-dropdown:has(.feature-preview-card-ai:focus-visible) .feature-preview-card-ai {
  display: flex;
}

.feature-dropdown:has(.feature-option:hover) .feature-option,
.feature-dropdown:has(.feature-option:focus-visible) .feature-option,
.feature-dropdown:has(.feature-preview-card:hover) .feature-option,
.feature-dropdown:has(.feature-preview-card:focus-visible) .feature-option {
  color: #fff;
  background: transparent;
}

.feature-dropdown:has(.feature-option-cinematic:hover) .feature-option-cinematic,
.feature-dropdown:has(.feature-option-cinematic:focus-visible) .feature-option-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:hover) .feature-option-cinematic,
.feature-dropdown:has(.feature-preview-card-cinematic:focus-visible) .feature-option-cinematic,
.feature-dropdown:has(.feature-option-workflow:hover) .feature-option-workflow,
.feature-dropdown:has(.feature-option-workflow:focus-visible) .feature-option-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:hover) .feature-option-workflow,
.feature-dropdown:has(.feature-preview-card-workflow:focus-visible) .feature-option-workflow,
.feature-dropdown:has(.feature-option-assets:hover) .feature-option-assets,
.feature-dropdown:has(.feature-option-assets:focus-visible) .feature-option-assets,
.feature-dropdown:has(.feature-preview-card-assets:hover) .feature-option-assets,
.feature-dropdown:has(.feature-preview-card-assets:focus-visible) .feature-option-assets,
.feature-dropdown:has(.feature-option-enterprise:hover) .feature-option-enterprise,
.feature-dropdown:has(.feature-option-enterprise:focus-visible) .feature-option-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:hover) .feature-option-enterprise,
.feature-dropdown:has(.feature-preview-card-enterprise:focus-visible) .feature-option-enterprise,
.feature-dropdown:has(.feature-option-ai-video:hover) .feature-option-ai-video,
.feature-dropdown:has(.feature-option-ai-video:focus-visible) .feature-option-ai-video,
.feature-dropdown:has(.feature-preview-card-ai:hover) .feature-option-ai-video,
.feature-dropdown:has(.feature-preview-card-ai:focus-visible) .feature-option-ai-video {
  color: #4ce2f3;
  background: #040000;
}

.feature-preview-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.feature-preview-title {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
}

.feature-preview-title span {
  color: transparent;
  background:
    radial-gradient(circle at 80% 75%, rgba(121, 253, 176, 1) 0, rgba(88, 245, 215, 0) 62%),
    linear-gradient(108deg, #bffee1 8.98%, #05cefe 78.37%);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-preview-copy p {
  margin: 0;
  color: #d4dbe7;
  font-size: 16px;
  line-height: 1.35;
}

.feature-preview-media {
  width: 400px;
  aspect-ratio: 400 / 218;
  border-radius: 12px;
  overflow: hidden;
}

.feature-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.model-dropdown-panel {
  width: 100%;
}

.model-panel-flat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.model-panel-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.model-option-badge,
.footer-link-badge,
.mobile-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(76, 226, 243, 0.14);
  color: #4ce2f3;
  font-size: 12px;
  line-height: 1;
}

.model-option-badge {
  min-width: 34px;
  height: 18px;
  padding: 0 8px;
}

.site-footer .footer-main {
  align-items: flex-start;
}

.footer-column-title {
  margin: 0 0 14px;
  color: #999;
  font-size: 14px;
  line-height: 20px;
}

.footer-model-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-badge {
  min-width: 34px;
  height: 18px;
  padding: 0 8px;
}

.resource-detail-block > strong {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

.resource-detail-block > strong:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .header-model-menu,
  .header-feature-menu,
  .header-resource-menu {
    display: none;
  }

  .mobile-nav-link,
  .mobile-nav-link:link,
  .mobile-nav-link:visited,
  .mobile-nav-group-toggle {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-nav-arrow {
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.22s ease;
  }

  .mobile-nav-group.is-open .mobile-nav-arrow {
    transform: rotate(45deg);
  }

  .mobile-nav-submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mobile-nav-submenu[hidden] {
    display: none;
  }

  .mobile-nav-feature-list,
  .mobile-nav-resource-list {
    background: #111;
  }

  .mobile-nav-subitem,
  .mobile-nav-subitem:link,
  .mobile-nav-subitem:visited {
    display: flex;
    width: 100%;
    height: 38px;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-nav-subitem-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .mobile-nav-subitem-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    object-fit: contain;
  }

  .mobile-nav-model-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    padding: 12px 30px;
    background: #121212;
  }

  .mobile-nav-model-item,
  .mobile-nav-model-item:link,
  .mobile-nav-model-item:visited {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 27px;
    align-items: center;
    gap: 7.5px;
    padding: 0 7.5px;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-nav-badge {
    min-width: 42px;
    height: 18px;
    padding: 0 8px;
  }
}

/* English footer redesign from Figma */
.footer,
.page .site-footer {
  width: 100%;
  max-width: none;
  min-height: 344px;
  padding: 40px max(24px, calc((100vw - 1280px) / 2));
  gap: 60px;
  background: #040404;
}

.footer-main,
.site-footer .footer-main {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto;
}

.footer-brand {
  width: 322px;
  flex: 0 0 322px;
  gap: 20px;
}

.footer-brand-copy {
  gap: 10px;
}

.footer-brand-copy p,
.footer-brand-copy .footer-brand-subtitle {
  width: 300px;
  max-width: 100%;
  margin: 0;
  color: #999;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.footer-brand-copy .footer-brand-title {
  width: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-column,
.footer-column:first-of-type {
  width: 115px;
  flex: 0 0 115px;
  gap: 20px;
}

.footer-column:first-of-type {
  width: 173px;
  flex-basis: 173px;
}

.footer-column h2,
.footer-column-title {
  margin: 0;
  color: #999;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.footer-column a,
.footer-column a:link,
.footer-column a:visited,
.footer-column .footer-link,
.footer-column .footer-link:link,
.footer-column .footer-link:visited {
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column .footer-link:hover,
.footer-column .footer-link:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
  filter: brightness(0.72);
  outline: none;
}

.footer-link::after {
  display: none;
}

.footer-bottom {
  width: 100%;
  max-width: 1280px;
  padding-top: 10px;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: nowrap;
}

.footer-legal-link,
.footer-legal-link:link,
.footer-legal-link:visited {
  color: #999;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
  filter: brightness(0.72);
  outline: none;
}

.footer-bottom .copyright,
.copyright {
  margin: 0;
  color: #999;
  font-family: "Lato", "Montserrat", sans-serif;
  font-size: 12px;
  line-height: normal;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer,
  .page .site-footer {
    min-height: 0;
    padding: 36px 20px;
    gap: 28px;
  }

  .footer-main,
  .site-footer .footer-main {
    display: grid;
    width: min(100%, 375px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
    flex: 0 0 auto;
    align-items: center;
    text-align: center;
  }

  .footer-brand-copy {
    align-items: center;
  }

  .footer-brand-copy p,
  .footer-brand-copy .footer-brand-subtitle {
    width: min(100%, 300px);
    font-size: 12px;
    text-align: center;
  }

  .footer-brand-copy .footer-brand-title {
    font-size: 14px;
  }

  .footer-column,
  .footer-column:first-of-type {
    width: 100%;
    min-width: 0;
    flex: 0 1 auto;
    gap: 14px;
  }

  .footer-column h2,
  .footer-column-title,
  .footer-column a,
  .footer-column a:link,
  .footer-column a:visited,
  .footer-column .footer-link,
  .footer-column .footer-link:link,
  .footer-column .footer-link:visited {
    font-size: 12px;
    white-space: normal;
  }

  .footer-bottom {
    width: min(100%, 375px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom .copyright,
  .copyright {
    font-size: 11px;
    text-align: center;
    white-space: normal;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
  }

  .footer-legal-link,
  .footer-legal-link:link,
  .footer-legal-link:visited {
    font-size: 11px;
  }
}

