:root {
  --navy-950: #07111f;
  --navy-900: #0b1728;
  --navy-850: #0f2035;
  --navy-800: #152943;
  --navy-700: #203854;
  --gold: #c79a52;
  --gold-soft: #e1be7f;
  --ink: #eef4fb;
  --muted: #a9b8ca;
  --line: rgba(225, 190, 127, 0.26);
  --line-strong: rgba(225, 190, 127, 0.48);
  --glass: rgba(255, 255, 255, 0.06);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --header-height: 84px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(199, 154, 82, 0.18), transparent 30rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 48%, #081321);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

input[type="checkbox"] {
  accent-color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 3vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 330px;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(145deg, rgba(199, 154, 82, 0.18), rgba(255, 255, 255, 0.03));
}

.brand-text {
  display: grid;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--gold-soft);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-text span {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
  flex: 1;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.header-cta,
.primary-button,
.secondary-button,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.lang-switch {
  width: 44px;
  height: 38px;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(199, 154, 82, 0.22);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  align-items: center;
  padding: clamp(24px, 4vw, 52px) clamp(18px, 5vw, 72px) 22px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.7vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.4vw, 3.3rem);
  line-height: 1.13;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.28;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 0;
}

.hero-subtitle-title {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: clamp(1.08rem, 1.85vw, 1.3rem);
  font-weight: 900;
}

.hero-subtitle-body {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.1rem);
  line-height: 1.58;
}

.hero-subtitle-body + .hero-subtitle-body {
  margin-top: 10px;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}

.logo-trust img {
  width: 42px;
  height: 42px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.logo-trust span {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.mini-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  font-size: 0.75rem;
}

.mini-mark.snqa {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-visual {
  min-height: 480px;
}

.visual-panel {
  position: relative;
  min-height: 480px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(10, 22, 38, 0.96), rgba(20, 39, 62, 0.82)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.66), rgba(255, 255, 255, 0.08) 38%, rgba(199, 154, 82, 0.42) 72%, rgba(255, 255, 255, 0.12)) border-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at center, rgba(199, 154, 82, 0.16), transparent 24rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(225, 190, 127, 0.18);
  background:
    linear-gradient(90deg, rgba(225, 190, 127, 0.36), transparent 24%) top left / 38% 1px no-repeat,
    linear-gradient(180deg, rgba(225, 190, 127, 0.28), transparent 32%) top left / 1px 42% no-repeat,
    linear-gradient(270deg, rgba(225, 190, 127, 0.24), transparent 24%) bottom right / 36% 1px no-repeat,
    linear-gradient(0deg, rgba(225, 190, 127, 0.22), transparent 32%) bottom right / 1px 42% no-repeat;
}

.visual-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.78;
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(199, 154, 82, 0.35);
  border-radius: 50%;
}

.ring-one {
  width: 390px;
  height: 390px;
  left: calc(50% - 215px);
  top: 66px;
}

.ring-two {
  width: 270px;
  height: 270px;
  left: calc(50% - 150px);
  top: 126px;
}

.info-card {
  position: absolute;
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(225, 190, 127, 0.4);
  color: var(--white);
  background: rgba(13, 28, 46, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.info-card strong {
  font-size: 1.06rem;
  line-height: 1.18;
}

.info-card small {
  color: var(--muted);
  font-size: 0.86rem;
}

.boardroom-node {
  top: 86px;
  left: 42px;
  width: 204px;
}

.server-node {
  right: 36px;
  bottom: 84px;
  width: 214px;
}

.bridge-line {
  position: absolute;
  width: 74%;
  height: 2px;
  left: 16%;
  top: 48%;
  background: linear-gradient(90deg, rgba(225, 190, 127, 0.05), rgba(225, 190, 127, 0.5), rgba(225, 190, 127, 0.05));
  transform: rotate(-30deg);
}

.agc-core {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 184px;
  height: 184px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--gold);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.08), transparent 54%),
    rgba(8, 20, 35, 0.95);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 24px rgba(199, 154, 82, 0.03),
    0 20px 60px rgba(0, 0, 0, 0.28);
}

.agc-core img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.agc-core span {
  color: var(--gold-soft);
  font-size: 1.15rem;
  font-weight: 900;
}

.agc-core small {
  color: #b9c4d4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.metric-card {
  width: 210px;
}

.card-one {
  right: 52px;
  top: 78px;
}

.card-two {
  left: 62px;
  bottom: 74px;
}

.card-three {
  left: calc(50% - 105px);
  bottom: 16px;
}

.quick-scan-chip {
  position: absolute;
  left: 50%;
  top: 46px;
  z-index: 2;
  min-height: 44px;
  padding: 10px 28px;
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 0.84rem;
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 16px 40px rgba(199, 154, 82, 0.22);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.difference {
  padding-top: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

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

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: end;
}

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

.diff-card,
.solution-card,
.leader-card,
.cert-item,
.path-card {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.46), rgba(255, 255, 255, 0.08) 42%, rgba(199, 154, 82, 0.26)) border-box;
  overflow: hidden;
}

.diff-card::before,
.solution-card::before,
.leader-card::before,
.cert-item::before,
.path-card::before,
.cert-focus::before,
.cert-portfolio::before,
.contact-card::before,
.contact-form::before,
.pillar-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background:
    linear-gradient(var(--gold-soft), var(--gold-soft)) top left / 34px 1px no-repeat,
    linear-gradient(var(--gold-soft), var(--gold-soft)) top left / 1px 34px no-repeat;
  opacity: 0.58;
  pointer-events: none;
}

.diff-card::after,
.solution-card::after,
.leader-card::after,
.cert-item::after,
.path-card::after,
.cert-focus::after,
.cert-portfolio::after,
.contact-card::after,
.contact-form::after,
.pillar-stage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 72px;
  background:
    linear-gradient(270deg, rgba(225, 190, 127, 0.46), transparent) bottom right / 48px 1px no-repeat,
    linear-gradient(0deg, rgba(225, 190, 127, 0.42), transparent) bottom right / 1px 48px no-repeat;
  pointer-events: none;
}

.diff-card,
.solution-card {
  min-height: 220px;
  padding: 22px;
}

.diff-card .icon,
.solution-card .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--gold-soft);
  border: 1px solid var(--line);
}

.diff-card p,
.solution-card p,
.leader-card p,
.cert-item p,
.path-card p {
  color: var(--muted);
}

.tag-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag,
.credential-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(199, 154, 82, 0.35);
  color: var(--gold-soft);
  background: rgba(199, 154, 82, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.pillar-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.pillar-tab {
  min-height: 74px;
  padding: 14px;
  color: var(--muted);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.pillar-tab strong {
  display: block;
  color: var(--ink);
}

.pillar-tab.active {
  border-color: var(--gold);
  background: rgba(199, 154, 82, 0.12);
}

.pillar-stage {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.5), rgba(255, 255, 255, 0.08), rgba(199, 154, 82, 0.24)) border-box;
  overflow: hidden;
}

.pillar-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 28px;
  padding: clamp(22px, 4vw, 38px);
}

.pillar-detail > p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: rgba(7, 17, 31, 0.42);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.about-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.about-copy p {
  color: var(--muted);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

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

.leader-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.leader-initials {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  background: rgba(199, 154, 82, 0.1);
  font-size: 1.3rem;
  font-weight: 900;
}

.leader-card h3 {
  margin-bottom: 4px;
}

.leader-card .role {
  color: var(--gold-soft);
  font-weight: 800;
}

.leader-points {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.leader-points li {
  padding-left: 16px;
  color: var(--muted);
  position: relative;
}

.leader-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
}

.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.solution-card {
  min-height: 100%;
  padding: 24px;
}

.solution-card .icon {
  margin-bottom: 18px;
}

.solution-card h3 {
  margin-bottom: 14px;
}

.solution-points {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  padding-left: 16px;
  color: var(--muted);
  position: relative;
}

.solution-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
}

.featured-solution {
  grid-column: 1 / -1;
  padding: 28px 28px 26px;
  background:
    linear-gradient(145deg, rgba(14, 30, 49, 0.96), rgba(20, 38, 60, 0.88)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.9), rgba(255, 255, 255, 0.16) 38%, rgba(199, 154, 82, 0.5)) border-box;
  box-shadow:
    0 22px 54px rgba(199, 154, 82, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.featured-solution .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: #09111d;
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.featured-solution h3 {
  max-width: 680px;
  font-size: 1.5rem;
}

.featured-solution p {
  max-width: 880px;
  color: #d4dceb;
  font-size: 1.02rem;
}

.featured-solution .solution-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.featured-solution .solution-points li {
  padding: 14px 0 0 18px;
  border-top: 1px solid rgba(225, 190, 127, 0.18);
}

.featured-solution .solution-points li::before {
  top: 1.15rem;
  width: 7px;
  height: 7px;
}

.featured-solution .tag-row {
  margin-top: 22px;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.path-card {
  min-height: 210px;
  padding: 26px;
}

.path-index {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-weight: 900;
}

.path-arrow {
  height: 2px;
  background: var(--gold);
  position: relative;
}

.path-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

.cert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: 16px;
}

.cert-focus,
.cert-portfolio {
  position: relative;
  padding: 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.42), rgba(255, 255, 255, 0.08), rgba(199, 154, 82, 0.22)) border-box;
  overflow: hidden;
}

.cert-item {
  padding: 18px;
  margin-top: 12px;
}

.commitment {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(36px, 6vw, 62px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(199, 154, 82, 0.15), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.quote-mark {
  color: var(--gold-soft);
  font-size: 8rem;
  line-height: 0.85;
  font-family: Georgia, serif;
}

.commitment p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 18px;
  align-items: start;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.024)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.52), rgba(255, 255, 255, 0.08) 44%, rgba(199, 154, 82, 0.28)) border-box;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 31, 0.72);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0 2px;
  color: var(--muted);
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.consent-row a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card {
  position: relative;
  padding: 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.44), rgba(255, 255, 255, 0.08), rgba(199, 154, 82, 0.22)) border-box;
  overflow: hidden;
}

.contact-card p,
.contact-card small {
  color: var(--muted);
}

.contact-lines {
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card small {
  display: inline-block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 72px) 34px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)) padding-box,
    linear-gradient(90deg, rgba(225, 190, 127, 0.12), rgba(255, 255, 255, 0), rgba(225, 190, 127, 0.12)) border-box;
}

.footer-meta {
  display: grid;
  gap: 18px;
  width: 100%;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-panel {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(225, 190, 127, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.18), rgba(255, 255, 255, 0.04), rgba(199, 154, 82, 0.08)) border-box;
  min-height: 100%;
}

.footer-header-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: end;
}

.footer-registration {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-links-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-kicker {
  margin: 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-statement {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

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

.footer-detail {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-label {
  display: inline-block;
  color: var(--gold-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding-top: 2px;
}

.footer-meta p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.footer-links a {
  color: var(--gold-soft);
  font-weight: 700;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 190, 127, 0.2), rgba(255, 255, 255, 0.02));
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: min(460px, calc(100vw - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(225, 190, 127, 0.28);
  background:
    linear-gradient(145deg, rgba(14, 28, 46, 0.94), rgba(7, 17, 31, 0.96)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.3), rgba(255, 255, 255, 0.05), rgba(199, 154, 82, 0.16)) border-box;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-banner a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-button {
  min-width: 92px;
  min-height: 40px;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px) 48px;
}

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

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

.legal-kicker {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.legal-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.legal-panel {
  padding: 28px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)) padding-box,
    linear-gradient(135deg, rgba(225, 190, 127, 0.34), rgba(255, 255, 255, 0.06), rgba(199, 154, 82, 0.18)) border-box;
}

.legal-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.legal-grid {
  display: grid;
  gap: 20px;
}

.legal-section {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--ink);
}

.legal-section h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  color: var(--gold-soft);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul,
.legal-section ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1080px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo-wrap {
    width: 58px;
    height: 58px;
  }

  .brand-text {
    display: grid;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    font-size: 0.8rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-grid,
  .about-layout,
  .section-heading.split,
  .pillar-detail,
  .cert-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-panel {
    min-height: 420px;
  }

  .about-copy {
    position: static;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .difference-grid,
  .solution-grid,
  .pillar-tabs {
    grid-template-columns: 1fr;
  }

  .featured-solution .solution-points {
    grid-template-columns: 1fr;
  }

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

  .path-arrow {
    width: 2px;
    height: 48px;
    margin-left: 28px;
  }

  .path-arrow::after {
    right: -5px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    gap: 10px;
    padding: 0 12px;
  }

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

  .brand-logo-wrap {
    width: 56px;
    height: 56px;
    padding: 4px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text span {
    max-width: 142px;
    font-size: 0.72rem;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 370px;
  }

  .visual-panel {
    min-height: 370px;
  }

  .boardroom-node,
  .server-node {
    width: 120px;
    height: 120px;
    font-size: 0.88rem;
  }

  .boardroom-node {
    left: 24px;
    top: 60px;
  }

  .server-node {
    right: 24px;
    bottom: 62px;
  }

  .metric-card {
    width: 148px;
    padding: 10px;
  }

  .card-one {
    right: 20px;
    top: 24px;
  }

  .card-two {
    left: 18px;
    bottom: 24px;
  }

  .card-three {
    left: calc(50% - 74px);
    top: 172px;
  }

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

  .quote-mark {
    font-size: 5rem;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 18px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
  }

  .footer-header-row,
  .footer-links-row,
  .footer-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-detail {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-label {
    display: block;
  }

  .cookie-banner {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

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