:root {
  --ink: #0e1722;
  --muted: #5d6874;
  --soft: #84909c;
  --line: #dce4eb;
  --paper: #f5f7fa;
  --white: #ffffff;
  --teal: #0b8f88;
  --teal-dark: #086f6b;
  --gold: #bd944f;
  --navy: #111d2c;
  --navy-2: #17283b;
  --shadow: 0 20px 60px rgba(14, 23, 34, 0.12);
  --shadow-soft: 0 18px 50px rgba(14, 23, 34, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 143, 136, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fafc 0%, #f2f6f8 42%, #f7fafc 100%);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(14, 23, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.brand-logo {
  position: relative;
  display: block;
  width: 96px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo .logo-red {
  display: none;
}

.site-header[data-elevated="true"] .brand-logo .logo-light {
  display: none;
}

.site-header[data-elevated="true"] .brand-logo .logo-red {
  display: block;
}

.brand-text strong,
.brand-text small {
  display: block;
  white-space: nowrap;
}

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

.brand-text small {
  font-size: 11px;
  opacity: 0.72;
}

.brand-text small a {
  display: inline-block;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.site-header[data-elevated="true"] .menu-toggle {
  border-color: var(--line);
  background: #f7fafc;
}

.nav a {
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 140px clamp(20px, 5vw, 72px) 170px;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 24, 0.94) 0%, rgba(8, 15, 24, 0.72) 43%, rgba(8, 15, 24, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 15, 24, 0.78), rgba(8, 15, 24, 0.02) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  max-width: 100%;
}

.hero-system {
  position: absolute;
  z-index: 2;
  right: clamp(34px, 7vw, 110px);
  top: 22%;
  width: min(440px, 34vw);
  aspect-ratio: 1.05;
  opacity: 0.78;
  pointer-events: none;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(119, 214, 209, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 214, 209, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 54% 48%, #000 0%, transparent 72%);
}

.hero-system::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 10%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 210, 139, 0.78), rgba(119, 214, 209, 0.55), transparent);
  transform: rotate(-18deg);
}

.system-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(11, 29, 43, 0.34);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.system-card.main {
  left: 13%;
  top: 22%;
  width: 58%;
  height: 42%;
  padding: 9%;
}

.system-card.main span {
  display: block;
  height: 8px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(119, 214, 209, 0.8), rgba(239, 210, 139, 0.18));
}

.system-card.main span:nth-child(2) {
  width: 76%;
}

.system-card.main span:nth-child(3) {
  width: 48%;
}

.system-card.side {
  right: 7%;
  bottom: 18%;
  width: 36%;
  height: 26%;
}

.system-card.side::before,
.system-card.side::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(239, 210, 139, 0.62);
}

.system-card.side::before {
  top: 24px;
}

.system-card.side::after {
  top: 44px;
  right: 42px;
  background: rgba(119, 214, 209, 0.56);
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(239, 210, 139, 0.86);
  border-radius: 50%;
  background: rgba(8, 15, 24, 0.7);
  box-shadow: 0 0 0 8px rgba(239, 210, 139, 0.08), 0 0 24px rgba(119, 214, 209, 0.26);
}

.node.n1 {
  left: 12%;
  top: 18%;
}

.node.n2 {
  right: 14%;
  top: 29%;
}

.node.n3 {
  left: 30%;
  bottom: 16%;
}

.node.n4 {
  right: 25%;
  bottom: 38%;
  border-color: rgba(119, 214, 209, 0.9);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

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

h1 {
  margin-bottom: 24px;
  max-width: 880px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.09;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.34;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(8, 19, 30, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(8, 19, 30, 0.18);
}

.button.primary {
  color: #08131e;
  background: linear-gradient(135deg, #efd28b, var(--gold));
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 25, 39, 0.84), rgba(17, 43, 58, 0.68)),
    rgba(13, 25, 39, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-panel div {
  position: relative;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.72;
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.hero-panel strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.48;
}

.section {
  position: relative;
  padding: clamp(76px, 8vw, 122px) clamp(20px, 5vw, 72px);
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 6vw, 84px);
  background:
    linear-gradient(120deg, #ffffff 0%, #ffffff 58%, #eef7f7 100%);
}

.profile::after,
.services::after,
.digital::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: clamp(30px, 7vw, 90px);
  width: min(240px, 38vw);
  height: min(240px, 38vw);
  border: 1px solid rgba(11, 143, 136, 0.1);
  border-radius: var(--radius);
  transform: rotate(8deg);
  pointer-events: none;
}

.section-title,
.section-heading {
  max-width: 820px;
}

.profile-copy p,
.section-heading p,
.fit-layout p,
.process p,
.cta p,
.band p {
  color: var(--muted);
}

.profile-copy p {
  margin-bottom: 18px;
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(32px, 5vw, 58px);
  background: var(--white);
  border: 0;
}

.proof-strip div {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 143, 136, 0.05), rgba(255, 255, 255, 0) 60%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.proof-strip div:nth-child(even) {
  transform: translateY(16px);
}

.proof-strip div::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(189, 148, 79, 0.1);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--teal-dark);
  font-size: 18px;
}

.proof-strip span {
  color: var(--soft);
  font-size: 14px;
}

.pain-points {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
}

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

.pain-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(220, 228, 235, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(11, 143, 136, 0.075), rgba(255, 255, 255, 0) 54%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pain-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 78px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(189, 148, 79, 0.18), transparent);
}

.pain-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 20px auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(11, 143, 136, 0.14);
  border-radius: var(--radius);
  transform: rotate(8deg);
}

.pain-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 143, 136, 0.26);
  box-shadow: 0 26px 64px rgba(14, 23, 34, 0.12);
}

.pain-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--teal-dark);
  border: 1px solid rgba(11, 143, 136, 0.2);
  border-radius: var(--radius);
  background: rgba(11, 143, 136, 0.06);
  font-size: 15px;
  font-weight: 900;
}

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

.services {
  background:
    linear-gradient(180deg, #f5f8fa 0%, #eef4f6 100%);
  overflow: hidden;
}

.section-heading {
  margin-bottom: 40px;
}

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

.service-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid rgba(220, 228, 235, 0.88);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(14, 23, 34, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-grid article:nth-child(even) {
  margin-top: 28px;
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.service-grid article::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 24px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(11, 143, 136, 0.12);
  border-radius: var(--radius);
  transform: rotate(8deg);
}

.service-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 143, 136, 0.28);
  box-shadow: 0 26px 70px rgba(14, 23, 34, 0.13);
}

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

.service-grid ul {
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.service-grid li + li {
  margin-top: 8px;
}

.service-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid rgba(11, 143, 136, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 143, 136, 0.1), rgba(189, 148, 79, 0.08)),
    #effafa;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-briefcase::before {
  left: 10px;
  right: 10px;
  top: 15px;
  height: 14px;
  border: 2px solid var(--teal);
}

.icon-briefcase::after {
  left: 15px;
  top: 10px;
  width: 10px;
  height: 6px;
  border: 2px solid var(--teal);
  border-bottom: 0;
}

.icon-network::before {
  inset: 9px;
  border: 2px solid var(--teal);
  transform: rotate(45deg);
}

.icon-network::after {
  left: 12px;
  top: 19px;
  width: 18px;
  height: 2px;
  background: var(--teal);
}

.icon-shield::before {
  left: 12px;
  top: 8px;
  width: 18px;
  height: 24px;
  border: 2px solid var(--teal);
  border-radius: 12px 12px 16px 16px;
}

.icon-chart::before {
  left: 11px;
  bottom: 11px;
  width: 4px;
  height: 12px;
  background: var(--teal);
  box-shadow: 8px -7px 0 var(--teal), 16px -14px 0 var(--teal);
}

.deliverables {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.deliverable-grid div {
  position: relative;
  min-height: 260px;
  padding: 32px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 143, 136, 0.06), rgba(255, 255, 255, 0) 56%),
    #fbfcfd;
}

.deliverable-grid div:last-child {
  border-right: 0;
}

.deliverable-grid div:nth-child(2),
.deliverable-grid div:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(189, 148, 79, 0.08), rgba(255, 255, 255, 0) 58%),
    #ffffff;
}

.deliverable-grid div::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 84px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.deliverable-grid strong {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 30px;
}

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

.band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 29, 44, 0.96), rgba(23, 40, 59, 0.98)),
    var(--navy);
  padding: clamp(76px, 8vw, 124px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(119, 214, 209, 0.16);
  border-radius: 50%;
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.band .section-kicker {
  color: #77d6d1;
}

.band p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

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

.governance-board div {
  position: relative;
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  overflow: hidden;
}

.governance-board div::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(119, 214, 209, 0.08);
}

.governance-board strong,
.governance-board span {
  display: block;
}

.governance-board strong {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 26px;
}

.governance-board span {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.governance-board p {
  margin: 0;
  font-size: 14px;
}

.digital {
  background:
    linear-gradient(180deg, #f4f8fa 0%, #ffffff 100%);
  overflow: hidden;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  min-height: 420px;
  border: 1px solid rgba(180, 198, 211, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(11, 143, 136, 0.055), transparent 32%),
    var(--white);
  box-shadow: 0 28px 80px rgba(14, 23, 34, 0.12);
  overflow: hidden;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background:
    linear-gradient(180deg, #101d2b 0%, #0d2430 100%);
}

.dashboard-tab {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-tab:hover,
.dashboard-tab:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.dashboard-tab:active {
  transform: translateY(1px);
}

.dashboard-tab.active {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 143, 136, 0.76), rgba(11, 143, 136, 0.32));
  border-color: rgba(119, 214, 209, 0.45);
}

.dashboard-main {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(rgba(11, 143, 136, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 143, 136, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-top strong {
  font-size: 24px;
}

.dashboard-top span {
  color: var(--soft);
  font-weight: 700;
}

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

.dashboard-cards div {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.92));
  border: 1px solid rgba(220, 228, 235, 0.9);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.dashboard-cards b,
.dashboard-cards span {
  display: block;
}

.dashboard-cards b {
  color: var(--teal-dark);
  font-size: 34px;
}

.dashboard-cards span {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-bars {
  display: grid;
  gap: 14px;
}

.dashboard-bars span {
  display: block;
  height: 16px;
  background: #e9eef3;
  border-radius: 999px;
  overflow: hidden;
}

.dashboard-bars span::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: inherit;
}

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

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

.fit-layout article {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 143, 136, 0.06), rgba(255, 255, 255, 0) 70%),
    #f8fafc;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.fit-layout article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.fit-layout p {
  margin-bottom: 0;
}

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

.timeline div {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.assurance {
  background:
    linear-gradient(135deg, #eef3f6 0%, #f9fbfc 100%);
}

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

.assurance-grid article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, #17283b, #0f1d2b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(14, 23, 34, 0.12);
  overflow: hidden;
}

.assurance-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.assurance-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(58px, 7vw, 90px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 143, 136, 0.9), rgba(17, 29, 44, 0.98)),
    var(--navy);
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.cta div {
  max-width: 840px;
}

.contact-card {
  flex: 0 0 min(360px, 100%);
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.contact-card strong {
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.45;
}

.contact-card .button {
  margin-top: 8px;
}

.cta .section-kicker,
.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #72808c;
  background: #0e1722;
  font-size: 14px;
}

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

.footer-links {
  justify-content: flex-end;
  color: #98a4af;
}

.mobile-contact {
  display: none;
}

@media (max-width: 1080px) {
  .service-grid,
  .deliverable-grid,
  .assurance-grid,
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverable-grid {
    gap: 18px;
    box-shadow: none;
    overflow: visible;
  }

  .deliverable-grid div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .service-grid article {
    min-height: 330px;
  }

  .service-grid article:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 920px) {
  .hero-system {
    right: 20px;
    top: 18%;
    width: 260px;
    opacity: 0.34;
  }

  .menu-toggle {
    display: block;
    color: currentColor;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header[data-menu-open="true"] .nav {
    display: grid;
  }

  .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 900px;
  }

  .hero-panel,
  .profile,
  .band-inner,
  .fit-layout,
  .dashboard-shell,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .proof-strip div,
  .timeline div {
    border-right: 0;
  }

  .profile-copy p {
    font-size: 17px;
  }

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

  .dashboard-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 16px;
  }

  .dashboard-tab {
    padding: 12px 10px;
    text-align: center;
    font-size: 13px;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-strip div:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-system {
    display: none;
  }

  .profile::after,
  .services::after,
  .digital::after,
  .band::before,
  .cta::after,
  .service-grid article::after,
  .proof-strip div::after,
  .governance-board div::after,
  .deliverable-grid div::after {
    display: none;
  }

  .site-header {
    height: 68px;
    padding-inline: 16px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    display: none;
  }

  .brand-logo {
    width: 90px;
    height: 42px;
  }

  .hero {
    min-height: 820px;
    padding: 104px 16px 270px;
  }

  .hero-content,
  .hero-copy,
  .hero-actions,
  .button {
    max-width: 100%;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.75;
  }

  h1 {
    font-size: 31px;
    line-height: 1.18;
  }

  .hero-brand {
    font-size: 18px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .hero-panel div {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-panel span {
    margin-bottom: 3px;
    font-size: 12px;
  }

  .hero-panel strong {
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .proof-strip,
  .governance-board,
  .deliverable-grid,
  .assurance-grid,
  .pain-grid,
  .dashboard-cards,
  .dashboard-sidebar {
    grid-template-columns: 1fr;
  }

  .pain-grid article {
    min-height: auto;
  }

  .proof-strip {
    gap: 12px;
  }

  .dashboard-shell {
    min-height: auto;
  }

  .dashboard-main {
    padding: 24px 18px;
  }

  .dashboard-top {
    flex-direction: column;
  }

  .governance-board div,
  .governance-board div:nth-child(2n),
  .governance-board div:nth-last-child(-n + 2) {
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section,
  .band,
  .cta {
    padding-inline: 16px;
  }

  .service-grid article {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    padding-inline: 16px;
    padding-bottom: 84px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 30;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    place-items: center;
    min-height: 50px;
    color: #08131e;
    background: linear-gradient(135deg, #efd28b, var(--gold));
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(8, 19, 30, 0.22);
    font-weight: 900;
  }
}
