*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0c2459;
  --ink-soft: #304671;
  --muted: #6d7790;
  --paper: #f6f6f8;
  --white: #ffffff;
  --panel: #0c2459;
  --panel-2: #17376f;
  --line: rgba(12, 36, 89, 0.14);
  --line-dark: rgba(253, 164, 2, 0.18);
  --aqua: #ffd08a;
  --teal: #0c2459;
  --green: #fda402;
  --amber: #d6d8de;
  --violet: #8b96ac;
  --danger: #df614b;
  --focus: #fda402;
  --shadow: 0 22px 70px rgba(12, 36, 89, 0.12);
  --shadow-dark: 0 28px 90px rgba(4, 10, 20, 0.42);
  --max: 1240px;
  --radius: 8px;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.lang-th {
  font-family:
    "IBM Plex Sans Thai", "Noto Sans Thai", "Tahoma", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

h1,
h2,
h3,
.brand-name,
.nav-link,
.mega-summary,
.button,
.badge,
.card-index,
.step-index {
  font-family:
    "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body.lang-th h1,
body.lang-th h2,
body.lang-th h3,
body.lang-th .brand-name,
body.lang-th .nav-link,
body.lang-th .mega-summary,
body.lang-th .button,
body.lang-th .badge,
body.lang-th .card-index,
body.lang-th .step-index {
  font-family:
    "IBM Plex Sans Thai", "Noto Sans Thai", "Tahoma", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #0c2459;
  color: var(--white);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  width: min(86vw, 460px);
  border: 1px solid var(--line-dark);
  background: linear-gradient(135deg, rgba(253, 164, 2, 0.18), rgba(214, 216, 222, 0.1));
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.loader-logo,
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.loader-logo {
  width: 72px;
  height: auto;
}

.brand-logo--nav {
  width: 112px;
  height: auto;
}

.brand-logo--footer {
  width: 116px;
  height: auto;
}

.loader-track {
  position: relative;
  height: 6px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.loader-track::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--aqua));
  animation: loaderMove 1.15s ease-in-out infinite alternate;
}

.announcement {
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.announcement-inner,
.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.announcement-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

.announcement a {
  color: var(--aqua);
  font-weight: 800;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 246, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand--nav {
  gap: 0;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 700;
}

.site-header .brand-text {
  display: none;
}

.site-header .brand-sub {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  margin-top: 5px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-link,
.mega-summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 8px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.mega-summary:hover,
.nav-link.is-active,
.mega[open] .mega-summary {
  background: rgba(253, 164, 2, 0.12);
  color: var(--ink);
}

.mega {
  position: relative;
}

.mega-summary {
  list-style: none;
}

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

.mega-summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  padding: 14px;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.mega-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.mega-item:hover {
  border-color: var(--line);
  background: var(--paper);
}

.mega-item strong {
  font-size: 0.93rem;
}

.mega-item span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
  flex-shrink: 0;
}

.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 38px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch a.is-active {
  background: var(--green);
  color: var(--ink);
}

main {
  background:
    linear-gradient(180deg, #fff6e8 0, var(--paper) 420px),
    var(--paper);
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 60px 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.white {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.split > * {
  min-width: 0;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.stack {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dark .eyebrow {
  color: var(--aqua);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 4.65rem;
  line-height: 0.98;
  font-weight: 900;
  overflow-wrap: break-word;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 900;
}

.lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  overflow-wrap: break-word;
}

.dark .lead,
.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head p {
  max-width: 780px;
  color: var(--muted);
}

.section-head--wide h2 {
  max-width: none;
}

@media (min-width: 1200px) {
  .section-head--wide h2 {
    font-size: 2.35rem;
    white-space: nowrap;
  }
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.dark .button.primary {
  background: var(--aqua);
  color: var(--ink);
}

.dark .button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12, 36, 89, 0.12);
}

.hero {
  position: relative;
  padding: 78px 0 86px;
  background:
    linear-gradient(135deg, rgba(253, 164, 2, 0.18), transparent 38%),
    linear-gradient(180deg, #fff6e8 0%, #f6f6f8 72%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(7, 17, 20, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 20, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0, transparent 88%);
}

.hero .section-inner {
  position: relative;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 850;
}

.hero-network {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 620px;
  min-height: 520px;
  margin: 0 auto;
  color: var(--ink);
}

.network-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.network-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(12, 36, 89, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg) scaleY(0.68);
}

.network-orbit--one {
  width: 92%;
}

.network-orbit--two {
  width: 72%;
  border-color: rgba(253, 164, 2, 0.36);
  transform: translate(-50%, -50%) rotate(24deg) scaleY(0.82);
}

.network-orbit--three {
  width: 54%;
  border-color: rgba(12, 36, 89, 0.12);
  transform: translate(-50%, -50%) rotate(58deg) scaleY(1.08);
}

.network-axis {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(12, 36, 89, 0.2), transparent);
}

.network-axis::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(253, 164, 2, 0.82), transparent);
  animation: networkSweep 5.4s ease-in-out infinite;
}

.network-axis--one {
  transform: rotate(-22deg);
}

.network-axis--two {
  transform: rotate(35deg);
}

.network-axis--two::after {
  animation-delay: 1.8s;
}

.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(253, 164, 2, 0.28);
  transform: rotate(45deg);
}

.network-node--one {
  top: 18%;
  left: 20%;
}

.network-node--two {
  top: 23%;
  right: 16%;
  background: var(--ink);
}

.network-node--three {
  right: 22%;
  bottom: 19%;
}

.network-node--four {
  bottom: 24%;
  left: 14%;
  background: var(--aqua);
}

.network-core {
  display: grid;
  place-items: center;
  width: clamp(220px, 42vw, 314px);
  aspect-ratio: 1;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 232, 0.72)),
    var(--white);
  box-shadow:
    0 34px 90px rgba(12, 36, 89, 0.16),
    inset 0 0 0 10px rgba(253, 164, 2, 0.06);
  text-align: center;
  backdrop-filter: blur(18px);
}

.network-core img {
  width: 118px;
  height: auto;
  margin-bottom: 8px;
}

.network-core span,
.signal-panel span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-core strong {
  display: block;
  max-width: 10ch;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.05;
}

.signal-panel {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 176px;
  padding: 12px 14px;
  border: 1px solid rgba(12, 36, 89, 0.1);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(12, 36, 89, 0.12);
  backdrop-filter: blur(16px);
}

.signal-panel strong {
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.2;
}

.signal-panel--payments {
  top: 10%;
  left: 0;
}

.signal-panel--trade {
  top: 16%;
  right: 1%;
  border-left-color: var(--ink);
}

.signal-panel--automation {
  bottom: 14%;
  left: 7%;
  border-left-color: var(--aqua);
}

.signal-panel--risk {
  right: 8%;
  bottom: 7%;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(253, 164, 2, 0.18), rgba(214, 216, 222, 0.08)),
    var(--panel);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.bar-stack {
  display: grid;
  gap: 10px;
}

.bar {
  --w: 56%;
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.mobile-stack {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.phone {
  min-height: 230px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 14px;
  background: #0c2459;
}

.phone-screen {
  display: grid;
  gap: 10px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(253, 164, 2, 0.18), rgba(255, 255, 255, 0.04));
}

.wallet-chip {
  height: 58px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--aqua));
}

.mini-lines {
  display: grid;
  gap: 7px;
}

.mini-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.mini-lines span:nth-child(2) {
  width: 74%;
}

.mini-lines span:nth-child(3) {
  width: 52%;
}

.network-list {
  display: grid;
  gap: 8px;
}

.network-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--line-dark);
  padding: 8px 0;
  font-size: 0.82rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(253, 164, 2, 0.8);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

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

.card,
.service-card,
.industry-card,
.process-step,
.contact-card,
.detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(7, 17, 20, 0.05);
}

.dark .card,
.dark .service-card,
.dark .process-step,
.dark .detail-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
  box-shadow: none;
}

.card p,
.service-card p,
.industry-card p,
.process-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.dark .card p,
.dark .service-card p,
.dark .process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.card-index,
.step-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(253, 164, 2, 0.14);
  color: var(--teal);
  font-weight: 900;
}

.dark .card-index,
.dark .step-index {
  background: rgba(253, 164, 2, 0.18);
  color: var(--aqua);
}

.chip-list,
.bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.chip-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.dark .chip-list li {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.dark .bullet-list li {
  color: rgba(255, 255, 255, 0.78);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.visual-panel {
  min-height: 430px;
  padding: 18px;
}

.visual-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.api-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  min-height: 320px;
}

.api-node {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.api-node strong,
.api-node span {
  display: block;
}

.api-node span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.api-rail {
  position: relative;
  height: 2px;
  background: rgba(253, 164, 2, 0.32);
}

.api-rail::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  animation: nodeRun 2.4s linear infinite;
}

.workflow-visual {
  display: grid;
  gap: 12px;
}

.workflow-node {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.workflow-node .node-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(253, 164, 2, 0.16);
  color: var(--aqua);
  font-weight: 900;
}

.workflow-node .node-state {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.workflow-node.is-active {
  border-color: rgba(253, 164, 2, 0.58);
}

.workflow-node.is-active .node-state {
  background: var(--green);
  box-shadow: 0 0 18px rgba(253, 164, 2, 0.9);
}

.document-workspace {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.document-stack,
.review-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line-dark);
  padding: 11px 0;
  font-size: 0.84rem;
}

.doc-item:last-child {
  border-bottom: 0;
}

.review-panel {
  display: grid;
  gap: 12px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.risk-tile {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.risk-tile strong {
  display: block;
  margin-top: 12px;
  font-size: 1.45rem;
}

.risk-tile span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.status-ok {
  color: #9df48d;
}

.status-watch {
  color: #ffd276;
}

.status-check {
  color: var(--aqua);
}

.page-hero {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(253, 164, 2, 0.14), transparent 42%),
    #fff6e8;
}

.page-hero h1 {
  font-size: 3.55rem;
}

.page-signature {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 610px;
  min-height: 460px;
  margin: 0 auto;
  color: var(--ink);
}

.signature-field {
  position: absolute;
  inset: 2%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.signature-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(12, 36, 89, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) scaleY(0.68);
}

.signature-ring--one {
  width: 98%;
}

.signature-ring--two {
  width: 74%;
  border-color: rgba(253, 164, 2, 0.36);
  transform: translate(-50%, -50%) rotate(24deg) scaleY(0.82);
}

.signature-ring--three {
  width: 52%;
  border-color: rgba(12, 36, 89, 0.1);
  transform: translate(-50%, -50%) rotate(58deg) scaleY(1.1);
}

.signature-line {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(12, 36, 89, 0.18), transparent);
}

.signature-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(253, 164, 2, 0.78), transparent);
  animation: networkSweep 5.8s ease-in-out infinite;
}

.signature-line--one {
  transform: rotate(-18deg);
}

.signature-line--two {
  transform: rotate(35deg);
}

.signature-line--two::after {
  animation-delay: 1.7s;
}

.signature-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(253, 164, 2, 0.24);
  transform: rotate(45deg);
}

.signature-node--one {
  top: 16%;
  left: 19%;
}

.signature-node--two {
  top: 23%;
  right: 14%;
  background: var(--ink);
}

.signature-node--three {
  right: 21%;
  bottom: 18%;
}

.signature-node--four {
  bottom: 21%;
  left: 12%;
  background: var(--aqua);
}

.signature-core {
  display: grid;
  place-items: center;
  width: clamp(218px, 34vw, 292px);
  aspect-ratio: 1;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 232, 0.76)),
    var(--white);
  box-shadow:
    0 34px 90px rgba(12, 36, 89, 0.15),
    inset 0 0 0 10px rgba(253, 164, 2, 0.055);
  text-align: center;
  backdrop-filter: blur(18px);
}

.signature-core img {
  width: 106px;
  height: auto;
  margin-bottom: 6px;
}

.signature-core span,
.signature-statement span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signature-core strong {
  display: block;
  max-width: 16ch;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.08;
}

.signature-core small {
  display: block;
  max-width: 24ch;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.signature-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  max-width: 190px;
  padding: 8px 12px;
  border: 1px solid rgba(12, 36, 89, 0.1);
  border-left: 3px solid var(--green);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(12, 36, 89, 0.11);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(16px);
}

.signature-chip--1 {
  top: 10%;
  left: -1%;
}

.signature-chip--2 {
  top: 18%;
  right: -5%;
  border-left-color: var(--ink);
}

.signature-chip--3 {
  right: -5%;
  bottom: 28%;
  border-left-color: var(--aqua);
}

.signature-chip--4 {
  bottom: 13%;
  left: 28%;
}

.signature-rail {
  position: absolute;
  left: 2%;
  bottom: 22%;
  display: grid;
  gap: 8px;
  width: 190px;
}

.signature-rail span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(12, 36, 89, 0.12);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 820;
}

.signature-rail i {
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  background: var(--green);
  box-shadow: 0 6px 16px rgba(253, 164, 2, 0.22);
  transform: rotate(45deg);
}

.signature-statement {
  position: absolute;
  right: 9%;
  bottom: 5%;
  display: grid;
  gap: 3px;
  max-width: 220px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 40px rgba(12, 36, 89, 0.1);
  backdrop-filter: blur(16px);
}

.signature-statement strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
}

.side-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.side-nav a:hover,
.side-nav a.is-active {
  background: rgba(253, 164, 2, 0.12);
  color: var(--ink);
}

.article-content {
  display: grid;
  gap: 26px;
}

.article-content .detail-panel p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-line {
  display: grid;
  gap: 3px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line strong {
  font-size: 0.83rem;
  color: var(--muted);
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.84rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
  padding: 12px;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  border: 1px solid rgba(253, 164, 2, 0.28);
  border-radius: var(--radius);
  background: rgba(253, 164, 2, 0.1);
  padding: 12px;
  color: var(--ink-soft);
}

.site-footer {
  background: #08182d;
  color: var(--white);
  padding: 58px 0 30px;
}

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

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand p,
.footer-col a,
.footer-small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-small {
  display: grid;
  gap: 6px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h3 {
  font-size: 0.92rem;
}

.footer-col a {
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--aqua);
}

.contact-phone-line,
.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.contact-phone-line a,
.footer-contact-line a {
  white-space: nowrap;
}

.footer-contact-line {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes loaderMove {
  from {
    transform: translateX(-16%);
  }
  to {
    transform: translateX(154%);
  }
}

@keyframes nodeRun {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 10px);
  }
}

@keyframes networkSweep {
  from {
    transform: translateX(-125%);
  }
  to {
    transform: translateX(430%);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    max-height: calc(100vh - 138px);
    overflow: auto;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-link,
  .mega-summary {
    min-height: 46px;
    width: 100%;
    justify-content: space-between;
    padding: 0 12px;
  }

  .mega-panel {
    position: static;
    width: 100%;
    padding: 8px 0 0;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .hero-network {
    min-height: 450px;
  }

  .page-signature {
    max-width: 640px;
    min-height: 420px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

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

  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .announcement-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .announcement a {
    white-space: normal;
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand-logo--nav {
    width: 104px;
  }

  .brand-sub {
    display: none;
  }

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

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .hero .section-inner {
    width: min(calc(100% - 48px), var(--max));
  }

  .hero h1,
  .hero .lead,
  .hero .cta-row,
  .hero-badges,
  .hero-network,
  .page-signature {
    max-width: calc(100vw - 48px);
  }

  .page-hero {
    padding: 52px 0 58px;
  }

  h1,
  .page-hero h1 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: stretch;
    min-height: auto;
    gap: 12px;
    padding-top: 8px;
  }

  .network-field {
    display: none;
  }

  .network-core {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 260px);
  }

  .signal-panel {
    position: static;
    min-width: 0;
  }

  .page-signature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: stretch;
    min-height: auto;
    gap: 12px;
    padding-top: 8px;
  }

  .signature-field {
    display: none;
  }

  .signature-core {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 252px);
  }

  .signature-chip,
  .signature-rail,
  .signature-statement {
    position: static;
    width: auto;
    max-width: none;
  }

  .signature-chip {
    min-width: 0;
    border-radius: var(--radius);
  }

  .signature-rail {
    grid-column: 1 / -1;
  }

  .mobile-stack,
  .document-workspace,
  .api-board,
  .risk-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .side-nav {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: auto;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .announcement-inner,
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero h1,
  .hero .lead,
  .hero .cta-row,
  .hero-badges,
  .hero-network,
  .page-signature {
    max-width: calc(100vw - 32px);
  }

  .brand-logo--nav {
    width: 96px;
  }

  h1,
  .page-hero h1 {
    font-size: 1.82rem;
    line-height: 1.08;
  }

  .language-switch a {
    min-width: 36px;
    min-height: 36px;
    padding: 0 8px;
  }

  .button {
    width: 100%;
  }

  .hero-network {
    grid-template-columns: 1fr;
  }

  .page-signature {
    grid-template-columns: 1fr;
  }

  .card,
  .service-card,
  .industry-card,
  .process-step,
  .contact-card,
  .detail-panel {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .announcement-inner,
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 48px), 342px);
  }

  .hero h1,
  .hero .lead,
  .hero .cta-row,
  .hero-badges,
  .hero-network,
  .page-signature {
    max-width: min(100%, 342px);
  }
}

@media (min-width: 1440px) {
  :root {
    --max: 1260px;
  }

  h1 {
    font-size: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
