:root {
  --bg: #06101d;
  --bg-soft: #0a1730;
  --surface: rgba(10, 24, 49, 0.78);
  --surface-strong: #102347;
  --surface-glass: rgba(19, 36, 72, 0.66);
  --border: rgba(139, 176, 255, 0.18);
  --border-strong: rgba(96, 181, 255, 0.42);
  --text: #f4f7fe;
  --muted: #9db2d4;
  --muted-strong: #bfd0eb;
  --primary: #58c9ff;
  --secondary: #3759e6;
  --teal: #47dbc8;
  --violet: #7f6dff;
  --warm: #ffb65e;
  --danger-soft: #ff7d73;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Noto Sans TC", "Noto Sans JP", "Noto Sans KR", "PingFang SC", "PingFang TC", "Hiragino Sans", "Apple SD Gothic Neo", "Malgun Gothic", "Microsoft YaHei", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(71, 219, 200, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(127, 109, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #04101c 0%, #07111f 18%, #09152a 48%, #06101d 100%);
  color: var(--text);
  min-width: 320px;
}

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

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

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(53, 89, 230, 0.8), rgba(71, 219, 200, 0.6));
}

.topbar p {
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  color: #ecf4ff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(4, 13, 27, 0.76), rgba(4, 13, 27, 0.48));
  border-bottom: 1px solid rgba(94, 143, 202, 0.12);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 14, 28, 0.9);
  border-bottom-color: rgba(94, 143, 202, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 198px;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.site-nav a,
.ghost-link {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.ghost-link:hover {
  color: var(--text);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-select {
  min-height: 40px;
  max-width: 178px;
  padding: 0 34px 0 14px;
  border: 1px solid rgba(128, 172, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted-strong) 50%) calc(100% - 18px) 17px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted-strong) 50%, transparent 50%) calc(100% - 14px) 17px / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.language-select:hover,
.language-select:focus {
  border-color: rgba(88, 201, 255, 0.48);
  color: var(--text);
  background-color: rgba(88, 201, 255, 0.06);
}

.language-select option {
  color: #0a1730;
  background: #f4f7fe;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fefeff;
  box-shadow: 0 18px 40px rgba(56, 102, 241, 0.34);
}

.secondary-button {
  border: 1px solid rgba(128, 172, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 76px 0 64px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  background:
    linear-gradient(rgba(133, 160, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 160, 234, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
}

.hero-glow {
  filter: blur(80px);
  opacity: 0.72;
}

.hero-glow-a {
  width: 480px;
  height: 480px;
  right: -80px;
  top: 0;
  background: radial-gradient(circle, rgba(55, 89, 230, 0.42), transparent 70%);
}

.hero-glow-b {
  width: 360px;
  height: 360px;
  left: -60px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(71, 219, 200, 0.2), transparent 72%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 5.55rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-summary,
.section-heading p,
.industry-card p,
.about-copy p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

.hero-summary {
  max-width: 680px;
  margin: 26px 0 0;
}

:where(
  body[data-language="en"],
  body[data-language="id"],
  body[data-language="ms"],
  body[data-language="th"],
  body[data-language="fil"],
  body[data-language="vi"]
) .hero-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 56px;
}

:where(
  body[data-language="en"],
  body[data-language="id"],
  body[data-language="ms"],
  body[data-language="th"],
  body[data-language="fil"],
  body[data-language="vi"]
) .hero-copy h1 {
  max-width: 780px;
  font-size: clamp(2.95rem, 5.2vw, 4.85rem);
  line-height: 1.04;
}

:where(
  body[data-language="en"],
  body[data-language="id"],
  body[data-language="ms"],
  body[data-language="th"],
  body[data-language="fil"],
  body[data-language="vi"]
) .hero-summary {
  max-width: 650px;
  line-height: 1.7;
}

:where(
  body[data-language="en"],
  body[data-language="id"],
  body[data-language="ms"],
  body[data-language="th"],
  body[data-language="fil"],
  body[data-language="vi"]
) .hero-media-copy h2 {
  font-size: 1.08rem;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-tags li,
.about-tags span,
.compliance-pillars div {
  padding: 12px 16px;
  border: 1px solid rgba(96, 181, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-orbit {
  position: relative;
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(124, 165, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(71, 219, 200, 0.08), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(127, 109, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(16, 31, 61, 0.86), rgba(9, 18, 38, 0.92));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(112, 180, 255, 0.12);
  border-radius: 28px;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: auto auto 18px 18px;
  width: 270px;
  height: 130px;
  background: url("/assets/gogreatx/hero-arc.png") center/cover no-repeat;
  opacity: 0.74;
}

.hero-orbit-core {
  position: absolute;
  inset: 50%;
  width: 210px;
  height: 210px;
  margin: -105px 0 0 -105px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(160deg, rgba(87, 203, 255, 0.92), rgba(53, 89, 230, 0.74));
  box-shadow:
    0 0 0 18px rgba(47, 89, 230, 0.12),
    0 0 0 44px rgba(73, 144, 255, 0.06);
}

.hero-orbit-core span {
  display: block;
  text-align: center;
  color: #f5fbff;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-orbit-core span + span {
  margin-top: 6px;
}

.floating-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 0.98rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.floating-card-a {
  top: 28px;
  left: 24px;
}

.floating-card-b {
  top: 42px;
  right: 22px;
}

.floating-card-c {
  left: 38px;
  bottom: 34px;
}

.floating-card-d {
  right: 40px;
  bottom: 56px;
}

.hero-media-panel {
  position: relative;
  margin: -46px 18px 0 auto;
  max-width: 400px;
  border: 1px solid rgba(120, 162, 255, 0.16);
  border-radius: 28px;
  background: rgba(7, 16, 30, 0.86);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-media-copy {
  padding: 22px 22px 0;
}

.hero-media-copy p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media-copy h2 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  line-height: 1.45;
}

.hero-media-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.narrow {
  max-width: 660px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 18px 0 0;
}

.logo-band {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.logo-marquee {
  margin-top: 30px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 104px;
  padding: 20px 26px;
  border: 1px solid rgba(178, 204, 232, 0.72);
  border-radius: 18px;
  background: linear-gradient(180deg, #f2f7fc 0%, #dfeaf6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 42px rgba(0, 8, 24, 0.2);
}

.logo-chip img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.capability-card,
.industry-card,
.license-card,
.cta-panel,
.hero-media-panel,
.about-tags {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 29, 56, 0.82), rgba(8, 16, 30, 0.94));
}

.capability-card {
  min-height: 100%;
  padding: 26px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(88, 201, 255, 0.1);
  color: var(--primary);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

.capability-card h3,
.industry-card h3,
.license-card h3 {
  margin: 0;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}

.capability-card h3 {
  font-size: 1.22rem;
  line-height: 1.4;
}

.capability-card > p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.capability-card ul,
.industry-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li,
.industry-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.72;
}

.capability-card li + li,
.industry-card li + li {
  margin-top: 10px;
}

.capability-card li::before,
.industry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm), var(--primary));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.industry-card {
  overflow: hidden;
}

.industry-feature {
  grid-column: span 3;
}

.industry-card:not(.industry-feature):not(.text-only) {
  grid-column: span 3;
}

.industry-card.text-only {
  grid-column: span 3;
  padding: 28px;
}

.industry-card.industry-wide {
  grid-column: 1 / -1;
}

.industry-card.industry-wide ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}

.industry-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.industry-media.compact {
  aspect-ratio: 16 / 9;
}

.industry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(6, 16, 29, 0.52) 100%);
}

.industry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-body {
  padding: 22px 24px 24px;
}

.industry-label,
.license-region {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-card h3 {
  font-size: 1.2rem;
  line-height: 1.5;
}

.industry-card > p,
.industry-body > p {
  margin: 10px 0 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.about-copy h2 {
  margin: 0;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
}

.about-copy p {
  margin: 18px 0 0;
}

.section-compliance {
  overflow: hidden;
}

.compliance-backdrop {
  position: absolute;
  inset: 80px auto auto 50%;
  width: min(860px, 100%);
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(71, 219, 200, 0.1), transparent 58%),
    radial-gradient(circle at 65% 45%, rgba(127, 109, 255, 0.18), transparent 44%);
  filter: blur(40px);
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.license-card {
  padding: 24px;
  text-align: left;
}

.license-card h3 {
  font-size: 2rem;
}

.license-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.compliance-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  padding: 28px;
}

.section-cta {
  padding-top: 48px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
}

.cta-panel h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.14;
}

.cta-panel p {
  margin: 16px 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 34px 0 42px;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: end;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 180px;
}

.footer-note p,
.footer-note a,
.footer-links a {
  color: var(--muted);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 360px;
  margin-top: 22px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(147, 172, 205, 0.42);
  color: rgba(238, 245, 255, 0.92);
  border: 1px solid rgba(197, 216, 242, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(188, 212, 240, 0.58);
}

.footer-email {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(206, 213, 224, 0.7);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.footer-email:hover {
  color: var(--text);
}

.footer-copyright {
  margin: 14px 0 0;
  color: rgba(157, 178, 212, 0.64);
  font-size: 0.76rem;
  line-height: 1.6;
}

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

.footer-links a:hover,
.footer-note a:hover {
  color: var(--text);
}

.footer-note {
  text-align: right;
}

.footer-note p {
  margin: 0 0 8px;
}

.footer-note a {
  font-weight: 700;
}

.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 18px;
    padding: 16px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-layout,
  .about-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

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

  .industry-feature,
  .industry-card:not(.industry-feature):not(.text-only),
  .industry-card.text-only {
    grid-column: span 1;
  }

  .industry-card.industry-wide ul {
    grid-template-columns: 1fr;
  }

  .hero-media-panel {
    margin: 20px 0 0;
    max-width: 100%;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-nav {
    order: 2;
  }

  .header-actions {
    order: 3;
  }

  .menu-open .site-nav,
  .menu-open .header-actions {
    display: flex;
  }

  .menu-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0 2px;
  }

  .menu-open .header-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 8px;
  }

  .menu-open .ghost-link {
    display: block;
  }

  .menu-open .primary-button,
  .menu-open .secondary-button {
    width: 100%;
  }

  .menu-open .language-switcher,
  .menu-open .language-select {
    width: 100%;
    max-width: none;
  }

  .brand img {
    width: 164px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-orbit {
    min-height: 360px;
    padding: 22px;
  }

  .hero-orbit-core {
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
  }

  .floating-card {
    width: 178px;
    padding: 14px;
  }

  .floating-card strong {
    font-size: 0.88rem;
  }

  .floating-card p {
    font-size: 0.8rem;
  }

  .capability-grid,
  .license-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 28px, 100%);
  }

  .topbar p {
    padding: 12px 16px;
    font-size: 0.79rem;
  }

  .header-inner {
    min-height: 74px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 14vw, 3.45rem);
  }

  .hero-summary,
  .section-heading p,
  .industry-card p,
  .about-copy p,
  .cta-panel p {
    font-size: 0.96rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-tags,
  .compliance-pillars,
  .about-tags {
    gap: 10px;
  }

  .hero-orbit {
    min-height: 520px;
  }

  .hero-orbit-core {
    top: 50%;
  }

  .floating-card-a {
    left: 18px;
    top: 18px;
  }

  .floating-card-b {
    right: 18px;
    top: 110px;
  }

  .floating-card-c {
    left: 18px;
    bottom: 110px;
  }

  .floating-card-d {
    right: 18px;
    bottom: 24px;
  }

  .logo-chip {
    width: 176px;
    height: 92px;
  }

  .capability-card,
  .industry-card.text-only,
  .license-card,
  .cta-panel {
    padding: 22px;
  }

  .industry-card.industry-wide ul {
    grid-template-columns: 1fr;
  }
}

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

  .js .reveal,
  .primary-button,
  .secondary-button,
  .logo-track,
  .site-header,
  .menu-toggle span {
    transition: none;
    animation: none;
  }

  .reveal,
  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
