  :root {
      --brand: #24c7a2;
      --brand-dark: #087e6b;
      --accent: #21e4bc;
      --ink: #071c20;
      --deep: #041314;
      --panel: #0b292b;
      --muted: #65797c;
      --line: #dceae6;
      --soft: #eff9f6;
      --white: #ffffff;
      --shadow: 0 28px 75px rgba(3, 45, 39, 0.15);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #ffffff;
      font-family: "DM Sans", "Noto Sans SC", sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.modal-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      color: inherit;
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote {
      overflow-wrap: break-word;
    }

    .wrap {
      width: min(1200px, calc(100% - 48px));
      margin: 0 auto;
    }

    .announce {
      height: 36px;
      color: #b9ccc7;
      background: #010606;
      font-size: 12px;
    }

    .announce .wrap {
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: space-between;
    }

    .announce b {
      color: var(--accent);
      letter-spacing: 1px;
    }

    .announce a {
      color: #ffffff;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 200;
      height: 78px;
      background: rgba(255, 255, 255, 0.97);
      border-bottom: 1px solid rgba(218, 233, 228, 0.95);
      box-shadow: 0 9px 30px rgba(5, 41, 36, 0.055);
      backdrop-filter: blur(16px);
    }

    .navbar {
      position: relative;
      display: flex;
      height: 100%;
      align-items: center;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      flex: none;
      color: var(--ink);
      font-size: 23px;
      font-weight: 800;
      letter-spacing: -0.8px;
    }

    .logo-mark {
      position: relative;
      width: 27px;
      height: 27px;
      background: linear-gradient(145deg, var(--accent), #0ba88a);
      border-radius: 9px 3px 9px 3px;
      box-shadow: 0 8px 20px rgba(36, 199, 162, 0.3);
      transform: rotate(45deg);
    }

    .logo-mark::after {
      position: absolute;
      inset: 5px;
      content: "";
      border: 3px solid #04251f;
      border-radius: 50%;
    }

    .main-nav {
      display: flex;
      height: 100%;
      align-items: center;
      margin-right: auto;
    }

    .nav-dropdown {
      position: static;
      display: flex;
      height: 100%;
      align-items: center;
    }

    .nav-link {
      display: flex;
      height: 44px;
      align-items: center;
      gap: 7px;
      padding: 0 12px;
      color: var(--ink);
      border-radius: 12px;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-link:hover,
    .nav-dropdown:hover > .nav-link,
    .nav-dropdown:focus-within > .nav-link {
      color: var(--brand-dark);
      background: rgba(36, 199, 162, 0.09);
    }

    .nav-link i {
      font-size: 9px;
      transition: transform 0.22s ease;
    }

    .nav-dropdown:hover > .nav-link i,
    .nav-dropdown:focus-within > .nav-link i {
      transform: rotate(180deg);
    }

    .mega-menu {
      position: absolute;
      top: 70px;
      right: 0;
      left: 0;
      z-index: 230;
      display: grid;
      visibility: hidden;
      overflow: hidden;
      min-height: 292px;
      grid-template-columns: 246px 1fr;
      color: #ffffff;
      background:
        radial-gradient(circle at 88% 10%, rgba(33, 228, 188, 0.12), transparent 28%),
        linear-gradient(135deg, #07191b, #0c2d2c);
      border: 1px solid rgba(117, 190, 177, 0.26);
      border-radius: 22px;
      box-shadow: 0 34px 90px rgba(0, 20, 17, 0.34);
      opacity: 0;
      transform: translateY(12px) scale(0.985);
      transform-origin: top center;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      pointer-events: none;
    }

    .nav-dropdown:hover .mega-menu,
    .nav-dropdown:focus-within .mega-menu {
      visibility: visible;
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .mega-intro {
      position: relative;
      overflow: hidden;
      padding: 34px 28px;
      color: #ffffff;
      background: linear-gradient(155deg, #061719, #103734);
      border-right: 1px solid rgba(140, 200, 189, 0.14);
    }

    .mega-intro::after {
      position: absolute;
      right: -82px;
      bottom: -94px;
      width: 195px;
      height: 195px;
      content: "";
      border: 1px solid rgba(36, 226, 188, 0.22);
      border-radius: 50%;
      box-shadow: 0 0 0 28px rgba(36, 226, 188, 0.025);
    }

    .mega-intro > * {
      position: relative;
      z-index: 1;
    }

    .mega-intro small {
      color: var(--accent);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.6px;
    }

    .mega-intro h3 {
      margin: 12px 0;
      color: #ffffff;
      font-size: 25px;
    }

    .mega-intro p {
      margin: 0;
      color: #9eb5b0;
      font-size: 12px;
      line-height: 1.8;
    }

    .mega-body {
      padding: 20px;
      color: #ffffff;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .mega-item {
      display: flex;
      min-height: 94px;
      align-items: center;
      gap: 13px;
      padding: 15px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.038);
      border: 1px solid rgba(255, 255, 255, 0.065);
      border-radius: 14px;
      transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .mega-item:hover {
      color: #ffffff;
      background: rgba(36, 199, 162, 0.14);
      border-color: rgba(33, 228, 188, 0.38);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    }

    .mega-icon {
      display: grid;
      width: 44px;
      height: 44px;
      flex: none;
      place-items: center;
      color: var(--accent);
      background: linear-gradient(145deg, #173c39, #102d2d);
      border-radius: 12px;
    }

    .mega-item b,
    .mega-item small {
      display: block;
    }

    .mega-item b {
      color: #ffffff;
    }

    .mega-item small {
      margin-top: 5px;
      color: #9db2ae;
      font-size: 11px;
    }

    .mega-note {
      display: flex;
      justify-content: space-between;
      margin-bottom: 14px;
      color: #ffffff;
    }

    .mega-note b {
      color: #ffffff;
    }

    .mega-note span {
      color: #91aaa5;
      font-size: 11px;
    }

    .country-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .country-link {
      display: flex;
      min-height: 66px;
      align-items: center;
      padding: 13px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.075);
      border-radius: 12px;
      font-size: 13px;
      font-weight: 700;
    }

    .country-link:hover {
      color: var(--accent);
      background: rgba(36, 199, 162, 0.13);
      border-color: rgba(33, 228, 188, 0.42);
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .case-column {
      padding: 4px 12px;
    }

    .case-column + .case-column {
      border-left: 1px solid rgba(255, 255, 255, 0.09);
    }

    .case-title {
      margin-bottom: 10px;
      color: var(--accent);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .case-link {
      display: flex;
      gap: 10px;
      padding: 11px 9px;
      color: #ffffff;
      border-radius: 10px;
    }

    .case-link:hover {
      color: #ffffff;
      background: rgba(36, 199, 162, 0.13);
    }

    .case-link i {
      width: 18px;
      color: var(--accent);
      text-align: center;
    }

    .case-link b,
    .case-link small {
      display: block;
    }

    .case-link b {
      color: #ffffff;
    }

    .case-link small {
      margin-top: 4px;
      color: #9db2ae;
      font-size: 11px;
    }

    .nav-tools {
      display: flex;
      align-items: center;
      gap: 11px;
      flex: none;
    }

    .login {
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
    }

    .login:hover {
      color: var(--brand-dark);
    }

    .login i {
      margin-right: 6px;
      color: var(--brand-dark);
    }

    .primary-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 18px;
      color: #ffffff;
      background: var(--panel);
      border: 1px solid var(--panel);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
    }

    .primary-button:hover {
      color: #04251e;
      background: var(--brand);
      border-color: var(--brand);
    }

    .language {
      position: relative;
      order: 99;
    }

    .language-button {
      display: flex;
      height: 40px;
      align-items: center;
      gap: 7px;
      padding: 0 12px;
      color: #31514d;
      background: #f4faf8;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .language-menu {
      position: absolute;
      top: 49px;
      right: 0;
      display: none;
      width: 158px;
      padding: 7px;
      color: var(--ink);
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 13px;
      box-shadow: var(--shadow);
    }

    .language.open .language-menu {
      display: block;
    }

    .language-menu a {
      display: flex;
      justify-content: space-between;
      padding: 10px 11px;
      color: var(--ink);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
    }

    .language-menu a:hover,
    .language-menu a.active {
      color: var(--brand-dark);
      background: var(--soft);
    }

    .language-menu a.active::after {
      content: "✓";
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #020707;
    }

    .hero-slider {
      position: relative;
      min-height: 620px;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      visibility: hidden;
      color: #ffffff;
      opacity: 0;
      background:
        radial-gradient(circle at 82% 32%, rgba(31, 210, 172, 0.18), transparent 28%),
        linear-gradient(115deg, #010606, #071819 62%, #0a2928);
      transition: opacity 0.65s ease, visibility 0.65s ease;
    }

    .hero-slide.active {
      visibility: visible;
      opacity: 1;
    }

    .hero-slide.pbx {
      background:
        radial-gradient(circle at 78% 38%, rgba(51, 220, 192, 0.2), transparent 30%),
        linear-gradient(115deg, #020707, #092023 58%, #10423d);
    }

    .hero-slide .wrap {
      display: grid;
      min-height: 620px;
      grid-template-columns: 1.03fr 0.97fr;
      align-items: center;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--brand-dark);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

    .eyebrow::before {
      width: 25px;
      height: 2px;
      content: "";
      background: currentColor;
    }

    .hero .eyebrow {
      color: var(--accent);
    }

    h1 {
      margin: 21px 0;
      color: #ffffff;
      font-size: clamp(43px, 5vw, 58px);
      line-height: 1.16;
      letter-spacing: -2px;
    }

    .highlight {
      color: var(--accent);
    }

    .hero-copy p {
      max-width: 555px;
      margin: 0 0 30px;
      color: #b6c8c5;
      font-size: 16px;
      line-height: 1.9;
    }

    .hero-actions,
    .trust {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero .primary-button {
      padding: 15px 22px;
      color: #03241d;
      background: var(--brand);
      border-color: var(--brand);
    }

    .hero .primary-button:hover {
      color: #03241d;
      background: var(--accent);
      border-color: var(--accent);
    }

    .ghost-button {
      padding: 15px 22px;
      color: #ffffff;
      border: 1px solid #49645f;
      border-radius: 999px;
      font-weight: 700;
    }

    .ghost-button:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    .trust {
      gap: 22px;
      margin-top: 25px;
      color: #a9bbb7;
      font-size: 12px;
    }

    .trust i {
      margin-right: 6px;
      color: var(--accent);
    }

    .hero-visual {
      position: relative;
      height: 500px;
    }

    .globe {
      position: absolute;
      top: 45px;
      right: 22px;
      width: 410px;
      height: 410px;
      background: radial-gradient(circle, rgba(18, 224, 190, 0.15), transparent 64%);
      border: 1px solid rgba(18, 224, 190, 0.37);
      border-radius: 50%;
    }

    .call-card,
    .pbx-dashboard {
      position: absolute;
      border: 1px solid var(--accent);
      border-radius: 25px;
      box-shadow: 0 26px 65px rgba(0, 0, 0, 0.45);
    }

    .call-card {
      top: 145px;
      right: 120px;
      width: 235px;
      padding: 23px;
      color: var(--ink);
      background: #ffffff;
      text-align: center;
    }

    .call-avatar {
      display: grid;
      width: 58px;
      height: 58px;
      margin: auto;
      place-items: center;
      color: var(--accent);
      background: var(--panel);
      border-radius: 50%;
    }

    .call-card b {
      display: block;
      margin: 14px 0 5px;
      color: var(--ink);
    }

    .call-card small {
      color: #617577;
    }

    .pbx-dashboard {
      top: 65px;
      right: 10px;
      width: 455px;
      padding: 22px;
      color: #ffffff;
      background: rgba(7, 29, 31, 0.94);
    }

    .pbx-top {
      display: flex;
      justify-content: space-between;
      padding-bottom: 15px;
      color: #ffffff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .pbx-top b {
      color: #ffffff;
    }

    .pbx-top small {
      color: #b5c8c4;
    }

    .pbx-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin: 15px 0;
    }

    .pbx-metrics div {
      padding: 14px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.055);
      border-radius: 12px;
    }

    .pbx-metrics small {
      color: #b5c8c4;
    }

    .pbx-metrics b {
      display: block;
      margin-top: 6px;
      color: var(--accent);
      font-size: 19px;
    }

    .pbx-flow {
      display: flex;
      align-items: center;
      padding: 20px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.045);
      border-radius: 15px;
    }

    .flow-node {
      display: grid;
      width: 72px;
      height: 72px;
      flex: none;
      place-items: center;
      color: #ffffff;
      background: #123b38;
      border-radius: 50%;
      font-size: 10px;
      text-align: center;
    }

    .flow-line {
      height: 1px;
      flex: 1;
      background: var(--brand);
    }

    .hero-controls {
      position: absolute;
      right: 0;
      bottom: 25px;
      left: 0;
      z-index: 10;
    }

    .hero-controls .wrap {
      display: flex;
      justify-content: space-between;
    }

    .hero-dots,
    .hero-arrows {
      display: flex;
      gap: 9px;
    }

    .hero-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      background: #50635f;
      border: 0;
      border-radius: 999px;
    }

    .hero-dot.active {
      width: 30px;
      background: var(--accent);
    }

    .hero-arrow {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.19);
      border-radius: 50%;
    }

    section {
      padding: 96px 0;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 46px;
      color: var(--ink);
      text-align: center;
    }

    .section-head .eyebrow {
      justify-content: center;
    }

    .section-head h2 {
      margin: 16px 0 13px;
      color: var(--ink);
      font-size: clamp(31px, 4vw, 40px);
    }

    .section-head p {
      color: var(--muted);
      line-height: 1.85;
    }

    .number-section {
      position: relative;
      overflow: hidden;
      color: var(--ink);
      background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 52%, #f1faf7 100%);
    }

    .number-section::before {
      position: absolute;
      top: 80px;
      left: -170px;
      width: 450px;
      height: 450px;
      content: "";
      background: radial-gradient(circle, rgba(36, 199, 162, 0.12), transparent 68%);
    }

    .number-section::after {
      position: absolute;
      right: -210px;
      bottom: -230px;
      width: 520px;
      height: 520px;
      content: "";
      border: 1px solid rgba(36, 199, 162, 0.11);
      border-radius: 50%;
      box-shadow: 0 0 0 48px rgba(36, 199, 162, 0.025), 0 0 0 96px rgba(36, 199, 162, 0.015);
    }

    .number-section .wrap {
      position: relative;
      z-index: 1;
    }

    .number-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .number-card {
      position: relative;
      display: flex;
      min-height: 300px;
      flex-direction: column;
      padding: 29px 23px;
      color: var(--ink);
      background: linear-gradient(155deg, #ffffff, #edf8f5);
      border: 1px solid var(--line);
      border-radius: 25px;
      box-shadow: 0 12px 35px rgba(7, 52, 45, 0.07);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .number-card:hover {
      color: var(--ink);
      border-color: var(--brand);
      box-shadow: 0 25px 55px rgba(6, 77, 65, 0.14);
      transform: translateY(-6px);
    }

    .number-index {
      position: absolute;
      top: 17px;
      right: 18px;
      color: rgba(6, 92, 77, 0.09);
      font-size: 42px;
      font-weight: 800;
    }

    .number-icon {
      display: grid;
      width: 54px;
      height: 54px;
      margin-bottom: 27px;
      place-items: center;
      color: var(--brand-dark);
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(5, 83, 70, 0.1);
      font-size: 20px;
    }

    .number-card h3 {
      color: var(--ink);
    }

    .number-card p {
      color: #5d7375;
      font-size: 13px;
      line-height: 1.75;
    }

    .number-more {
      margin-top: auto;
      color: var(--brand-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .global-section {
      color: var(--ink);
      background: #eef8f5;
    }

    .global-layout,
    .about-layout {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 65px;
      align-items: center;
    }

    .global-copy,
    .about-copy {
      color: var(--ink);
    }

    .global-copy h2,
    .about-copy h2 {
      margin: 16px 0;
      color: var(--ink);
      font-size: 40px;
      line-height: 1.28;
    }

    .global-copy > p,
    .about-copy > p {
      color: var(--muted);
      line-height: 1.9;
    }

    .point-list {
      display: grid;
      gap: 11px;
      margin-top: 27px;
    }

    .point-list span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #315f57;
      font-size: 13px;
      font-weight: 700;
    }

    .point-list i {
      display: grid;
      width: 25px;
      height: 25px;
      place-items: center;
      color: #ffffff;
      background: #12a98c;
      border-radius: 50%;
      font-size: 10px;
    }

    .directory-board,
    .about-board {
      padding: 29px;
      color: #ffffff;
      background: linear-gradient(145deg, #0d3231, #06191b);
      border: 1px solid rgba(36, 226, 188, 0.3);
      border-radius: 30px;
      box-shadow: 0 28px 65px rgba(5, 54, 47, 0.22);
    }

    .directory-board h3,
    .about-board blockquote {
      color: #ffffff;
    }

    .directory-top {
      display: flex;
      justify-content: space-between;
      margin-bottom: 19px;
      color: #ffffff;
    }

    .directory-top small {
      color: var(--accent);
      font-weight: 800;
    }

    .directory-top i {
      color: var(--accent);
    }

    .market-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .market-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(133, 222, 202, 0.18);
      border-radius: 14px;
    }

    .market-card:hover {
      color: #ffffff;
      background: rgba(36, 199, 162, 0.18);
      border-color: var(--accent);
    }

    .market-card strong,
    .market-card small {
      display: block;
    }

    .market-card strong {
      color: #ffffff;
    }

    .market-card small {
      color: #9fb9b4;
    }

    .country-more {
      width: 100%;
      margin-top: 14px;
      padding: 12px;
      color: var(--accent);
      background: transparent;
      border: 1px solid rgba(33, 228, 188, 0.5);
      border-radius: 10px;
      font-weight: 800;
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .country-more:hover {
      color: #03241d;
      background: var(--accent);
      border-color: var(--accent);
    }

    .journey-section {
      color: var(--ink);
      background: #ffffff;
    }

    .journey-head {
      max-width: 900px;
      margin: 0 auto 44px;
      color: var(--ink);
      text-align: center;
    }

    .journey-head h2 {
      color: var(--ink);
      font-size: clamp(31px, 4vw, 42px);
    }

    .journey-head h2 span {
      color: var(--brand-dark);
    }

    .journey-head p {
      color: #576c70;
      line-height: 1.85;
    }

    .journey-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 35px;
      margin-bottom: 39px;
    }

    .journey-tab {
      display: flex;
      gap: 14px;
      padding: 11px 0 18px;
      color: var(--ink);
      background: none;
      border: 0;
      border-bottom: 2px solid #e8f0ee;
      text-align: left;
    }

    .journey-tab.active {
      color: var(--ink);
      border-color: var(--brand-dark);
    }

    .tab-icon {
      display: grid;
      width: 47px;
      height: 47px;
      flex: none;
      place-items: center;
      color: #ffffff;
      background: linear-gradient(145deg, var(--brand), #087c69);
      border-radius: 50%;
    }

    .journey-tab b,
    .journey-tab small {
      display: block;
    }

    .journey-tab b {
      color: var(--ink);
    }

    .journey-tab small {
      margin-top: 6px;
      color: #5f7476;
    }

    .journey-panel {
      display: none;
      overflow: hidden;
      grid-template-columns: 1.08fr 0.92fr;
      color: var(--ink);
      background: #ffffff;
      border: 1px solid #dfebe8;
      border-radius: 27px;
      box-shadow: var(--shadow);
    }

    .journey-panel.active {
      display: grid;
    }

    .scene-visual {
      display: grid;
      min-height: 440px;
      place-items: center;
      padding: 42px;
      color: #ffffff;
      background: linear-gradient(140deg, #0c2829, #154641);
    }

    .scene-person {
      width: 70%;
      padding: 36px 29px;
      color: #ffffff;
      background: #082124;
      border-radius: 24px;
    }

    .scene-person h3 {
      color: #ffffff;
    }

    .scene-person p {
      color: #b7cbc6;
      line-height: 1.75;
    }

    .person-avatar {
      display: grid;
      width: 82px;
      height: 82px;
      margin-bottom: 26px;
      place-items: center;
      color: var(--accent);
      background: #061719;
      border: 2px solid var(--brand);
      border-radius: 50%;
      font-size: 34px;
    }

    .scene-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 54px;
      color: var(--ink);
      background: #ffffff;
    }

    .scene-copy .mini {
      color: var(--brand-dark);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

    .scene-copy h3 {
      color: #096f5f;
      font-size: 27px;
    }

    .scene-copy p {
      color: #4d6266;
      line-height: 1.9;
    }

    .text-link {
      color: var(--brand-dark);
      font-weight: 800;
    }

    .text-link:hover {
      color: #045c4f;
    }

    .about-section {
      color: var(--ink);
      background: linear-gradient(145deg, #ffffff, #eef9f6);
    }

    .about-board blockquote {
      margin: 0 0 24px;
      color: #ffffff;
      font-size: 25px;
      font-weight: 700;
      line-height: 1.55;
    }

    .about-data {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .about-data div {
      padding: 18px 14px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 14px;
    }

    .about-data b {
      display: block;
      color: var(--accent);
      font-size: 24px;
    }

    .about-data span {
      color: #a8c4bd;
      font-size: 11px;
    }

    .footer-cta {
      padding: 78px 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 18% 20%, rgba(36, 199, 162, 0.13), transparent 28%),
        linear-gradient(135deg, #e8faf5, #d8f5ed);
      text-align: center;
    }

    .footer-cta h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(32px, 4vw, 46px);
      letter-spacing: -1.5px;
    }

    .footer-cta h2 span {
      color: var(--brand-dark);
    }

    .footer-cta p {
      margin: 18px 0 28px;
      color: #53706b;
    }

    .footer-cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }

    .footer-cta .primary-button {
      padding: 14px 23px;
      color: #03241d;
      background: var(--brand);
      border-color: var(--brand);
    }

    .footer-cta .primary-button:hover {
      color: #03241d;
      background: var(--accent);
      border-color: var(--accent);
    }

    .footer-demo-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 8px;
      color: #063c34;
      font-size: 14px;
      font-weight: 800;
    }

    .footer-demo-link:hover {
      color: var(--brand-dark);
    }

    .site-footer {
      padding: 70px 0 0;
      color: #a7b8b5;
      background: #000605;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.45fr 1fr 1fr 1fr 1fr 1.25fr;
      gap: 38px;
      padding-bottom: 55px;
    }

    .footer-brand {
      color: #a7b8b5;
    }

    .footer-brand .logo {
      color: #ffffff;
    }

    .footer-brand p {
      max-width: 260px;
      margin: 22px 0;
      color: #a7b8b5;
      font-size: 13px;
      line-height: 1.85;
    }

    .footer-contact {
      display: grid;
      gap: 9px;
      color: #d6e4e1;
      font-size: 12px;
    }

    .footer-contact i {
      width: 18px;
      color: var(--accent);
    }

    .footer-column {
      color: #a7b8b5;
    }

    .footer-column h4 {
      margin: 0 0 22px;
      color: #ffffff;
      font-size: 16px;
    }

    .footer-column a {
      display: block;
      margin: 11px 0;
      color: #a7b8b5;
      font-size: 13px;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-column a:hover {
      color: var(--accent);
      transform: translateX(3px);
    }

    .footer-socials {
      display: flex;
      gap: 9px;
      margin-bottom: 28px;
    }

    .footer-socials a {
      display: grid;
      width: 36px;
      height: 36px;
      margin: 0;
      place-items: center;
      color: #ffffff;
      background: #10211f;
      border: 1px solid #29413d;
      border-radius: 50%;
    }

    .footer-socials a:hover {
      color: #03241d;
      background: var(--accent);
      transform: none;
    }

    .footer-newsletter {
      margin-top: 25px;
      color: #a7b8b5;
    }

    .footer-newsletter strong {
      display: block;
      margin-bottom: 10px;
      color: #ffffff;
      font-size: 14px;
    }

    .footer-newsletter p {
      margin: 0 0 13px;
      color: #a7b8b5;
      font-size: 12px;
      line-height: 1.7;
    }

    .subscribe-form {
      display: flex;
      overflow: hidden;
      background: #0d1a18;
      border: 1px solid #29413d;
      border-radius: 10px;
    }

    .subscribe-form input {
      width: 100%;
      min-width: 0;
      padding: 12px;
      color: #ffffff;
      background: transparent;
      border: 0;
      outline: 0;
      font-size: 12px;
    }

    .subscribe-form input::placeholder {
      color: #7f9490;
      opacity: 1;
    }

    .subscribe-form button {
      width: 43px;
      flex: none;
      color: #03241d;
      background: var(--accent);
      border: 0;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      padding: 25px 0;
      color: #a7b8b5;
      border-top: 1px solid #1b2a28;
      border-bottom: 1px solid #1b2a28;
      font-size: 12px;
    }

    .footer-legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
    }

    .footer-legal-links a {
      color: #a7b8b5;
    }

    .footer-legal-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 0 30px;
      color: #71817e;
      font-size: 11px;
    }

    .footer-badges {
      display: flex;
      gap: 8px;
    }

    .footer-badges span {
      padding: 7px 10px;
      color: #91aaa5;
      background: #0d1716;
      border: 1px solid #1f302d;
      border-radius: 7px;
    }

    /* 全球 DID 国家弹窗 */
    .countries-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      visibility: hidden;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      pointer-events: none;
    }

    .countries-modal.is-open {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }

    .countries-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 10, 10, 0.82);
      backdrop-filter: blur(8px);
    }

    .countries-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(980px, 100%);
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      padding: 32px;
      color: #ffffff;
      background:
        radial-gradient(circle at 85% 5%, rgba(33, 228, 188, 0.15), transparent 30%),
        linear-gradient(145deg, #0c2929, #061719);
      border: 1px solid rgba(33, 228, 188, 0.45);
      border-radius: 24px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
      outline: none;
      transform: translateY(18px) scale(0.98);
      transition: transform 0.25s ease;
    }

    .countries-modal.is-open .countries-modal__dialog {
      transform: translateY(0) scale(1);
    }

    .countries-modal__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 25px;
    }

    .countries-modal__header h2 {
      margin: 8px 0;
      color: #ffffff;
      font-size: clamp(26px, 4vw, 36px);
    }

    .countries-modal__header p {
      margin: 0;
      color: #a8bbb7;
      line-height: 1.7;
    }

    .countries-modal__eyebrow {
      color: var(--accent);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

    .countries-modal__close {
      display: grid;
      width: 42px;
      height: 42px;
      flex: none;
      place-items: center;
      color: #ffffff;
      background: #143633;
      border: 1px solid #31514d;
      border-radius: 50%;
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .countries-modal__close:hover {
      color: #03241d;
      background: var(--accent);
      border-color: var(--accent);
    }

    .countries-modal__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .countries-modal__grid a {
      display: grid;
      grid-template-columns: 34px 1fr;
      grid-template-areas:
        "flag name"
        "flag english";
      align-items: center;
      column-gap: 10px;
      min-height: 78px;
      padding: 14px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 13px;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .countries-modal__grid a:hover {
      color: #ffffff;
      background: rgba(36, 199, 162, 0.16);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    .countries-modal__grid span {
      grid-area: flag;
      font-size: 24px;
    }

    .countries-modal__grid b {
      grid-area: name;
      align-self: end;
      color: #ffffff;
      font-size: 14px;
    }

    .countries-modal__grid small {
      grid-area: english;
      align-self: start;
      margin-top: 3px;
      color: #a8bbb7;
      font-size: 10px;
    }

    @media (max-width: 1100px) {
      .main-nav {
        display: none;
      }

      .nav-tools {
        margin-left: auto;
      }

      .hero-visual {
        display: none;
      }

      .hero-slide .wrap,
      .global-layout,
      .about-layout,
      .journey-panel {
        grid-template-columns: 1fr;
      }

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

      .footer-main {
        grid-template-columns: repeat(3, 1fr);
      }

      .countries-modal__grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 720px) {
      .announce {
        display: none;
      }

      .wrap {
        width: min(100% - 30px, 1200px);
      }

      header {
        height: 66px;
      }

      .login,
      .language-button span {
        display: none;
      }

      .nav-tools > .primary-button {
        padding: 10px 12px;
        font-size: 11px;
      }

      .hero-slider,
      .hero-slide .wrap {
        min-height: 570px;
      }

      h1 {
        font-size: 39px;
      }

      section {
        padding: 70px 0;
      }

      .number-grid,
      .market-grid,
      .journey-tabs,
      .about-data,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .scene-copy {
        padding: 34px 25px;
      }

      .footer-legal,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .countries-modal {
        padding: 12px;
      }

      .countries-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 22px 18px;
        border-radius: 18px;
      }

      .countries-modal__header {
        gap: 12px;
      }

      .countries-modal__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 430px) {
      .countries-modal__grid {
        grid-template-columns: 1fr;
      }
    }