:root {
  --ink: #050706;
  --graphite: #111715;
  --panel: #141c19;
  --panel-2: #f5f7f2;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: #d9ded7;
  --text: #f7fff9;
  --muted: rgba(247, 255, 249, 0.68);
  --muted-dark: #5d6861;
  --green: #a3ff12;
  --teal: #23d6c8;
  --amber: #f5c14d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 6, 0.86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(163, 255, 18, 0.48);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(163, 255, 18, 0.22), rgba(35, 214, 200, 0.12));
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.nav a,
.header-cta,
.language-menu summary,
.language-menu-panel a,
.btn,
.solution-card a {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav a:hover,
.solution-card a:hover {
  color: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.header-tools {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-menu {
  position: relative;
  width: 144px;
}

.language-menu summary {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(163, 255, 18, 0.32);
  border-radius: 999px;
  padding: 0 13px 0 17px;
  background: rgba(255, 255, 255, 0.94);
  color: #13210f;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.language-menu summary::after {
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid #183115;
  border-bottom: 2px solid #183115;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform 160ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  border-color: rgba(163, 255, 18, 0.76);
  background: #fff;
}

.language-menu[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.language-menu-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  display: grid;
  width: 144px;
  padding: 5px 0;
  border: 1px solid rgba(163, 255, 18, 0.28);
  border-radius: 0 0 10px 10px;
  background: rgba(9, 14, 9, 0.98);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.language-menu-panel a {
  display: flex;
  min-height: 30px;
  align-items: center;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.language-menu-panel a:hover,
.language-menu-panel a.is-active {
  background: rgba(163, 255, 18, 0.14);
  color: var(--green);
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.98) 0%, rgba(5, 7, 6, 0.86) 42%, rgba(5, 7, 6, 0.32) 78%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.45), rgba(5, 7, 6, 0.92));
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(163, 255, 18, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 255, 18, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 138px 0 56px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(820px, 100%);
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.hero-lead {
  width: min(690px, 100%);
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--green);
  color: #0b1208;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn.dark {
  border-color: rgba(5, 7, 6, 0.16);
  background: #0b0e0c;
  color: var(--white);
}

.partner-strip {
  display: flex;
  width: min(900px, 100%);
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080b09;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-grid article {
  min-height: 254px;
  padding: 34px;
  background: linear-gradient(180deg, #111713, #0b0f0d);
}

.metric-value {
  color: var(--green);
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 950;
  line-height: 1;
}

.metric-grid small {
  color: var(--green);
  font-size: 38px;
  font-weight: 950;
}

.metric-grid h2 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.solutions {
  background: #f5f7f2;
  color: var(--ink);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 243, 235, 0.84)),
    radial-gradient(circle at top right, rgba(163, 255, 18, 0.24), transparent 34%);
  box-shadow: 0 20px 54px rgba(5, 7, 6, 0.08);
}

.solution-card.featured {
  background:
    linear-gradient(135deg, rgba(6, 10, 7, 0.92), rgba(19, 31, 23, 0.94)),
    url("assets/images/compute-hero.webp") center / cover;
  color: var(--white);
}

.solution-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-number {
  margin-bottom: 84px;
  color: var(--green);
  font-weight: 950;
}

.solution-card h3 {
  font-size: clamp(32px, 4vw, 52px);
}

.solution-card .subhead {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.solution-card p {
  color: var(--muted-dark);
}

.solution-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 950;
}

.web3 {
  background: var(--ink);
}

.web3-grid,
.provider-panel,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.web3 p,
.provider p,
.resources p,
.contact p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article,
.provider-features article,
.resource-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.service-list article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 24px;
}

.service-list strong {
  color: var(--green);
  font-size: 18px;
}

.service-list span {
  color: var(--muted);
}

.provider {
  background: #a3ff12;
  color: #071006;
}

.provider .eyebrow {
  color: #244400;
}

.provider p {
  color: rgba(7, 16, 6, 0.7);
}

.provider-panel {
  align-items: center;
}

.provider-features {
  display: grid;
  gap: 14px;
}

.provider-features article {
  border-color: rgba(7, 16, 6, 0.14);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  padding: 24px;
}

.provider-features p {
  margin-bottom: 0;
}

.resources {
  background: #f5f7f2;
  color: var(--ink);
}

.resources .eyebrow {
  color: #457a00;
}

.resources .section-heading p,
.resources p {
  color: var(--muted-dark);
}

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

.resource-grid article {
  min-height: 232px;
  padding: 28px;
  border-color: var(--line-dark);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(5, 7, 6, 0.08);
}

.contact {
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0.92), rgba(5, 7, 6, 0.98)),
    url("assets/images/compute-hero.webp") center / cover;
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-link {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #050706;
  color: var(--muted);
}

.footer-grid {
  align-items: center;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-language {
    justify-self: end;
  }

  .nav {
    display: none;
  }

  .metric-grid,
  .solution-grid,
  .web3-grid,
  .provider-panel,
  .contact-grid,
  .footer-grid,
  .resource-grid,
  .asia-country-grid,
  .asia-cluster-grid,
  .seo-copy-grid,
  .core-seo-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    width: 100%;
    max-width: 100vw;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
    padding: 14px 16px;
  }

  .brand small,
  .header-tools {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand strong {
    overflow: hidden;
    max-width: 170px;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu {
    flex: 0 0 88px;
    width: 88px;
  }

  .language-menu summary {
    height: 42px;
    padding-inline: 11px 9px;
    font-size: 11px;
  }

  .language-menu summary::after {
    width: 7px;
    height: 7px;
    margin-left: 6px;
  }

  .language-menu-panel {
    right: 0;
    left: auto;
    width: 132px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-top: 108px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .metric-grid article,
  .solution-card,
  .resource-grid article {
    padding: 24px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 18px; border-radius: 8px; background: #25d366; color: #071006; font-weight: 950; box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.whatsapp-float:hover { transform: translateY(-1px); }

.language-section { background: #0b100d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compact-heading { margin-bottom: 24px; }
.language-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.language-strip a { padding: 10px 13px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.82); font-weight: 850; }
.language-strip a:hover { color: var(--green); border-color: rgba(163,255,18,.4); }
.markets { background: #0f1512; }
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.market-card { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); box-shadow: 0 12px 34px rgba(0,0,0,.16); }
.market-card span { color: var(--green); font-weight: 950; }
.market-card p { color: var(--muted); }
.market-card a { color: var(--green); font-weight: 900; }
.seo-keyword-section { background: #f5f7f2; color: var(--ink); }
.seo-keyword-panel { padding: 34px; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; box-shadow: 0 16px 42px rgba(5,7,6,.08); }
.seo-keyword-section .eyebrow { color: #457a00; }
.seo-keyword-section p { color: var(--muted-dark); }
.keyword-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.keyword-chip { display: inline-flex; padding: 9px 12px; border: 1px solid var(--line-dark); border-radius: 8px; background: #f5f7f2; color: #172015; font-size: 13px; font-weight: 850; }
.seo-disclaimer { margin: 22px 0 0; font-size: 14px; }
.asia-seo-layout { display: grid; gap: 18px; }
.asia-country-grid,
.asia-cluster-grid,
.seo-copy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.seo-copy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.asia-country-card,
.asia-cluster-card,
.seo-copy-block { padding: 20px; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; box-shadow: 0 12px 30px rgba(5, 7, 6, .06); }
.asia-country-card span,
.asia-cluster-card span { color: #457a00; font-size: 12px; font-weight: 950; text-transform: uppercase; }
.asia-country-card h3,
.asia-cluster-card h3,
.seo-copy-block h3 { margin: 8px 0; color: var(--ink); }
.asia-country-card p,
.asia-cluster-card p,
.seo-copy-block p { color: var(--muted-dark); }
.asia-country-card a { color: #457a00; font-weight: 900; }
.seo-table { display: grid; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; }
.seo-table-row { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 16px 18px; border-bottom: 1px solid var(--line-dark); }
.seo-table-row:last-child { border-bottom: 0; }
.seo-table-row strong { color: var(--ink); }
.seo-table-row span { color: var(--muted-dark); }
.core-seo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.core-seo-card { padding: 22px; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; box-shadow: 0 12px 30px rgba(5, 7, 6, .06); }
.core-seo-card span { color: #457a00; font-size: 12px; font-weight: 950; text-transform: uppercase; }
.core-seo-card h3 { margin: 8px 0; color: var(--ink); }
.core-seo-card p { color: var(--muted-dark); }
.core-seo-card a { color: #457a00; font-weight: 900; }
.faq-grid { display: grid; gap: 12px; }
.faq-item { padding: 18px; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; }
.faq-item h3 { margin: 0 0 8px; color: var(--ink); font-size: 19px; }
.faq-item p { margin: 0; color: var(--muted-dark); }
.breadcrumb-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 800; }
.breadcrumb-nav a { color: rgba(255,255,255,.78); }
.breadcrumb-nav a:hover { color: var(--green); }
.country-signal-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.country-signal-list article { padding: 18px; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; }
.country-signal-list strong { display: block; margin-bottom: 6px; color: var(--ink); }
.country-signal-list span { color: var(--muted-dark); }
.subpage-main { padding-top: 76px; }
.sub-hero { min-height: 68vh; background: #080b09; }
.sub-hero-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 44px; align-items: center; }
.sub-hero h1 { font-size: clamp(42px, 6vw, 76px); }
.sub-hero p { color: var(--muted); font-size: 18px; }
.sub-visual img { border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.market-facts { display: grid; gap: 14px; }
.market-facts article { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.06); }
.market-facts span { color: var(--green); font-weight: 950; }
.market-facts strong { display:block; margin: 8px 0; font-size: 24px; }
@media (max-width: 980px) { .market-grid, .sub-hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .market-grid { grid-template-columns: 1fr; } .whatsapp-float { right: 14px; bottom: 14px; left: 14px; } }
@media (max-width: 640px) { .seo-table-row { grid-template-columns: 1fr; gap: 6px; } }

.corporate-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.94), rgba(5, 7, 6, 0.62) 58%, rgba(5, 7, 6, 0));
  backdrop-filter: blur(16px);
}

.corporate-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  background: #050706;
}

.corporate-hero::before,
.corporate-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.corporate-hero::before {
  z-index: 0;
  background: url("/assets/images/compute-hero.webp") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}

.corporate-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.98) 0%, rgba(5, 7, 6, 0.9) 36%, rgba(5, 7, 6, 0.42) 72%, rgba(5, 7, 6, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.28) 0%, rgba(5, 7, 6, 0.22) 48%, #07100c 100%);
}

.corporate-hero-bg {
  display: none;
}

.corporate-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 42%, rgba(35, 214, 200, 0.18), transparent 28%),
    radial-gradient(circle at 24% 72%, rgba(163, 255, 18, 0.11), transparent 31%),
    linear-gradient(180deg, transparent 0%, rgba(7, 16, 12, 0.44) 78%, #07100c 100%);
  pointer-events: none;
}

.corporate-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(163, 255, 18, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 255, 18, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}

.corporate-hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1180px, calc(100% - 36px));
  min-height: 88svh;
  margin: 0 auto;
  padding: clamp(132px, 16vh, 174px) 0 clamp(64px, 8vh, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(30px, 5vw, 64px);
  align-items: end;
}

.corporate-hero-copy {
  max-width: 780px;
  padding-bottom: clamp(16px, 5vh, 52px);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.corporate-hero-copy h1 {
  width: min(820px, 100%);
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.98;
}

.corporate-stat-panel {
  display: grid;
  gap: 12px;
  align-self: end;
  padding-bottom: clamp(16px, 4vh, 44px);
}

.corporate-stat-panel article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.78), rgba(8, 18, 14, 0.48));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.corporate-stat-panel strong {
  display: block;
  color: var(--green);
  font-size: 30px;
  line-height: 1.1;
}

.corporate-stat-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 255, 249, 0.72);
  font-weight: 800;
}

.corporate-about {
  margin-top: -1px;
  border-top: 1px solid rgba(163, 255, 18, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(163, 255, 18, 0.09), transparent 30%),
    linear-gradient(180deg, #07100c 0%, #0b1511 54%, #08100d 100%);
  color: var(--text);
}

.corporate-about .eyebrow,
.corporate-journey .eyebrow,
.corporate-strengths .eyebrow {
  color: var(--green);
}

.corporate-about p,
.corporate-journey p,
.corporate-strengths p {
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.about-copy-grid {
  display: grid;
  gap: 14px;
}

.about-copy-grid article,
.value-card,
.timeline-card,
.strength-grid article {
  border-radius: 8px;
}

.about-copy-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.about-copy-grid h3 {
  color: var(--text);
}

.corporate-culture {
  background:
    linear-gradient(180deg, #08100d 0%, #0c1712 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at top right, rgba(35, 214, 200, 0.12), transparent 38%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.value-card span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(163, 255, 18, 0.42);
  border-radius: 8px;
  color: var(--green);
  font-size: 24px;
  font-weight: 950;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.corporate-journey {
  background:
    radial-gradient(circle at 80% 8%, rgba(245, 193, 77, 0.08), transparent 30%),
    linear-gradient(180deg, #0c1712 0%, #09130f 100%);
  color: var(--text);
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
}

.timeline-grid {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-grid::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(163, 255, 18, 0.66), rgba(35, 214, 200, 0.2));
  content: "";
}

.timeline-card {
  position: relative;
  margin-left: 52px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.timeline-card::before {
  position: absolute;
  top: 28px;
  left: -42px;
  width: 18px;
  height: 18px;
  border: 4px solid #09130f;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 1px rgba(163, 255, 18, 0.35), 0 0 22px rgba(163, 255, 18, 0.22);
}

.timeline-card span {
  color: var(--green);
  font-weight: 950;
}

.timeline-card h3 {
  color: var(--text);
}

.corporate-strengths {
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 214, 200, 0.08), transparent 32%),
    linear-gradient(180deg, #09130f 0%, #07100c 100%);
  color: var(--text);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.strength-grid article {
  min-height: 242px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.strength-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.strength-grid h3 {
  margin-top: 18px;
  color: var(--text);
}

.corporate-contact {
  background:
    linear-gradient(180deg, rgba(7, 16, 12, 0.96), rgba(5, 7, 6, 0.98)),
    url("/assets/images/compute-hero.webp") center / cover;
}

[dir="rtl"] .nav,
[dir="rtl"] .hero-actions,
[dir="rtl"] .footer-grid nav {
  direction: rtl;
}

[dir="rtl"] .timeline-grid::before {
  right: 20px;
  left: auto;
}

[dir="rtl"] .timeline-card {
  margin-right: 52px;
  margin-left: 0;
}

[dir="rtl"] .timeline-card::before {
  right: -42px;
  left: auto;
}

@media (max-width: 980px) {
  .corporate-hero-inner,
  .about-layout,
  .journey-layout,
  .value-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .corporate-hero,
  .corporate-hero-inner {
    min-height: auto;
  }

  .corporate-hero-inner {
    padding-bottom: 58px;
  }

  .corporate-hero-copy {
    padding-bottom: 0;
  }

  .corporate-stat-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .corporate-hero {
    max-width: 100vw;
  }

  .corporate-hero-inner {
    display: flex;
    width: min(calc(100% - 28px), 1180px);
    max-width: 1180px;
    min-width: 0;
    padding-top: 118px;
    padding-bottom: 48px;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .corporate-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.97), rgba(5, 7, 6, 0.72)),
      linear-gradient(180deg, rgba(5, 7, 6, 0.38), #07100c 100%);
  }

  .corporate-hero-copy,
  .corporate-hero-copy h1,
  .corporate-hero-copy .hero-lead {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .corporate-hero-copy h1 {
    font-size: clamp(32px, 10vw, 42px);
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .corporate-hero-copy .hero-lead {
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .corporate-stat-panel {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .corporate-stat-panel article {
    min-width: 0;
  }

  .whatsapp-float {
    display: none;
  }

  .corporate-stat-panel article,
  .about-copy-grid article,
  .value-card,
  .timeline-card,
  .strength-grid article {
    padding: 22px;
  }

  .value-card {
    min-height: auto;
  }

  .timeline-grid::before {
    display: none;
  }

  .timeline-card,
  [dir="rtl"] .timeline-card {
    margin-right: 0;
    margin-left: 0;
  }

  .timeline-card::before {
    display: none;
  }
}

/* GpuCP reference theme: applied by Apply-SlyCloudGpuCpTheme.ps1 */
:root {
  --ink: #101218;
  --graphite: #171b23;
  --panel: #1b212a;
  --panel-2: #101218;
  --line: #303946;
  --line-dark: #303946;
  --text: #f2f5f8;
  --muted: #b7c0cb;
  --muted-dark: #a6b1be;
  --green: #00d1ff;
  --teal: #00d1ff;
  --amber: #00fca1;
  --shadow: none;
}

html { background: var(--ink); }
body { background: var(--ink); color: var(--text); font-family: Inter, "Plus Jakarta Sans", "Microsoft YaHei", system-ui, sans-serif; }
.site-header.corporate-header,
.site-header {
  min-height: 80px;
  border-bottom: 1px solid #28313d;
  background: #15171d;
  backdrop-filter: none;
}
.site-header { padding-inline: max(24px, calc((100vw - 1340px) / 2)); }
.brand-mark { border-color: #00d1ff; background: #f7f9fb; color: #00a9d4; }
.brand strong { font-size: 20px; }
.brand small { color: var(--muted); }
.nav { gap: 34px; }
.nav a { color: #d7dde5; font-weight: 750; }
.nav a:hover, .nav a:focus-visible { color: #00d1ff; }
.header-cta { border-color: #00d1ff; background: transparent; color: #00d1ff; }
.header-cta:hover { background: #00d1ff; color: #101218; }
.language-menu summary { border-color: #303946; background: #1b212a; color: #f2f5f8; }
.language-menu-panel { border-color: #303946; background: #1b212a; }
.language-menu-panel a:hover, .language-menu-panel a.is-active { color: #00d1ff; background: #101218; }

.corporate-hero {
  min-height: 590px;
  background: #101218;
}
.corporate-hero::before { background: none; filter: none; transform: none; }
.corporate-hero::after {
  background-image: linear-gradient(rgba(0, 209, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 209, 255, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
}
.corporate-hero-overlay { background: linear-gradient(180deg, #101218 0%, rgba(16, 18, 24, .86) 72%, #101218 100%); }
.corporate-hero-grid { display: none; }
.corporate-hero-inner {
  display: block;
  width: min(1180px, calc(100% - 48px));
  min-height: auto;
  padding: 142px 0 76px;
  text-align: center;
}
.corporate-hero-copy { max-width: 850px; margin: 0 auto; padding: 0; text-shadow: none; }
.eyebrow { color: #00d1ff; font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.corporate-hero-copy h1 { margin: 24px auto 20px; font-size: clamp(44px, 5vw, 72px); line-height: 1.03; letter-spacing: 0; }
.corporate-hero-copy .hero-lead { max-width: 760px; margin-inline: auto; color: #c5cfdb; font-size: 18px; }
.hero-actions { justify-content: center; margin-top: 32px; }
.btn { border-radius: 4px; font-weight: 800; }
.btn.primary { border-color: #00d1ff; background: #00d1ff; color: #101218; }
.btn.secondary { border-color: #3a4654; background: transparent; color: #f2f5f8; }
.corporate-stat-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin: 74px auto 0;
  padding: 0;
  gap: 18px;
}
.corporate-stat-panel article,
.about-copy-grid article,
.value-card,
.timeline-card,
.strength-grid article,
.contact-card,
.market-facts article {
  border: 1px solid #303946;
  border-radius: 8px;
  background: #1b212a;
  box-shadow: none;
}
.corporate-stat-panel article { padding: 22px; text-align: left; }
.corporate-stat-panel strong { color: #00d1ff; font-size: 22px; }
.corporate-stat-panel span { color: #b7c0cb; }

.section { padding: 96px 0; }
.corporate-about, .corporate-culture, .corporate-journey, .corporate-strengths, .corporate-contact { background: #101218; color: var(--text); }
.corporate-culture, .corporate-contact { background: #141923; }
.corporate-about p, .corporate-journey p, .corporate-strengths p, .corporate-culture p { color: #b7c0cb; }
.section-heading { max-width: 720px; }
.section-heading h2 { font-size: clamp(30px, 3vw, 44px); }
.section-heading::after { display: block; width: 74px; height: 3px; margin-top: 20px; background: #00d1ff; content: ""; }
.about-layout, .journey-layout { grid-template-columns: .78fr 1.22fr; gap: 62px; }
.about-copy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.about-copy-grid article { padding: 28px; }
.about-copy-grid h3, .value-card h3, .timeline-card h3, .strength-grid h3 { color: #f2f5f8; }
.value-grid, .strength-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.value-card, .strength-grid article { min-height: 250px; padding: 30px; }
.value-card { background: #1b212a; }
.value-card span { width: auto; height: auto; margin-bottom: 32px; border: 0; border-radius: 0; color: #00d1ff; background: transparent; font-size: 26px; }
.strength-grid article span { color: #00d1ff; }
.timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.timeline-grid::before, .timeline-card::before { display: none; }
.timeline-card { min-height: 208px; margin: 0; padding: 30px; }
.timeline-card span { color: #00d1ff; }
.contact-grid { gap: 48px; align-items: center; }
.contact-card { padding: 32px; }
.contact-link { color: #00d1ff; }
.site-footer { border-top-color: #303946; background: #15171d; }
.site-footer p, .site-footer a { color: #b7c0cb; }
.site-footer a:hover { color: #00d1ff; }
.whatsapp-float { display: inline-flex; right: 26px; bottom: 26px; border-radius: 4px; background: #00fca1; color: #101218; box-shadow: none; }

/* Existing market and SEO routes retain their content and inherit the new visual system. */
.sub-hero, .market-hero, .seo-hero { background: #101218; }
.seo-table, .market-facts article { border-color: #303946; background: #1b212a; }

@media (max-width: 980px) {
  .site-header { padding-inline: 22px; }
  .nav { gap: 16px; }
  .about-layout, .journey-layout, .about-copy-grid, .value-grid, .strength-grid, .timeline-grid { grid-template-columns: 1fr; }
  .corporate-stat-panel { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 640px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .site-header { min-height: 70px; padding-inline: 14px; }
  .brand strong { font-size: 16px; }
  .brand small, .nav, .header-tools { display: none; }
  main, .corporate-hero { width: 100%; max-width: 100%; overflow: hidden; }
  .corporate-hero-inner { width: auto !important; max-width: none; min-width: 0; margin-inline: 14px; padding: 118px 0 52px; }
  .corporate-hero-copy, .corporate-hero-copy h1, .corporate-hero-copy .hero-lead { width: 100% !important; max-width: 100% !important; min-width: 0; }
  .corporate-hero-copy h1 { position: relative; left: 50%; width: calc(100vw - 28px) !important; margin-inline: 0; font-size: 24px !important; line-height: 1.14; white-space: normal; overflow-wrap: anywhere; word-break: break-all; transform: translateX(-50%); }
  .corporate-hero-copy .hero-lead { position: relative; left: 50%; width: calc(100vw - 40px) !important; font-size: 16px; overflow-wrap: anywhere; transform: translateX(-50%); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 68px 0; }
  .about-copy-grid article, .value-card, .timeline-card, .strength-grid article { min-height: auto; padding: 24px; }
  .whatsapp-float { display: inline-flex; right: 14px; bottom: 14px; left: auto; }
}