:root {
  --bg: #030912;
  --bg-soft: #07111d;
  --bg-band: #071522;
  --surface: #0d1927;
  --surface-strong: #122337;
  --text: #f4f8ff;
  --muted: #9ba9bc;
  --subtle: #66758a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(83, 153, 255, 0.36);
  --brand-gold: #8B6411;
  --brand-gold-dark: #F8DA8D;
  --gold-start: #F7D274;
  --gold-end: #F5DFB5;
  --glass-bg: rgba(255, 255, 255, 0.075);
  --glass-bg-strong: rgba(255, 255, 255, 0.12);
  --glass-line: rgba(248, 218, 141, 0.32);
  --glass-line-soft: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.2);
  --blue: #1687ff;
  --blue-strong: #075fff;
  --cyan: #20d7ff;
  --green: #23c483;
  --amber: #f5a524;
  --danger: #ff5d7a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(22, 135, 255, 0.18), transparent 28%),
    radial-gradient(circle at 73% 30%, rgba(32, 215, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(3, 9, 18, 0.82), rgba(3, 9, 18, 1) 780px),
    var(--bg);
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

main {
  overflow: hidden;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  width: 100%;
  background: rgba(3, 9, 18, 0.82);
  border-bottom: 1px solid rgba(94, 171, 255, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 13, 20, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px 9px 13px 13px;
  color: white;
  font-weight: 800;
  background: linear-gradient(145deg, #1bb6ff, #0c4dff);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.28);
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 130px;
  display: block;
}

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

.nav-item {
  position: relative;
}

.site-nav a,
.nav-link {
  color: #c4cedb;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 7px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav > .nav-item > .nav-link[aria-current="page"],
.nav-item:hover > .nav-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(248, 241, 221, 0.9);
  box-shadow: 0 18px 48px rgba(139, 100, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-wide {
  min-width: 520px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  color: #3d2b08;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.nav-dropdown a:hover {
  color: var(--brand-gold);
  background: rgba(247, 210, 116, 0.26);
}

.nav-products-panel {
  left: 50%;
  width: min(920px, calc(100vw - 56px));
  min-width: 0;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
}

.nav-products-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(139, 100, 17, 0.14);
  border-left: 1px solid rgba(139, 100, 17, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(248, 241, 221, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.nav-products-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 14px;
  border-bottom: 1px solid rgba(139, 100, 17, 0.12);
}

.nav-products-head span {
  color: #241a07;
  font-size: 15px;
  font-weight: 800;
}

.nav-products-head a {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #8b6411;
  font-size: 13px;
  font-weight: 700;
  background: rgba(139, 100, 17, 0.08);
}

.nav-products-head a:hover {
  color: var(--brand-gold);
  background: rgba(247, 210, 116, 0.26);
}

.nav-products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.nav-product-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon desc";
  gap: 2px 10px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(139, 100, 17, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(139, 100, 17, 0);
  overflow: hidden;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-product-card::after {
  content: "";
  position: absolute;
  inset: auto 12px 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b6411, #f7d274);
  opacity: 0;
  transform: translateY(7px) scaleX(0.4);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-product-card img {
  grid-area: icon;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 14px rgba(139, 100, 17, 0.16));
  transition: transform 0.22s ease;
}

.nav-product-card span {
  grid-area: title;
  min-width: 0;
  color: #241a07;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-product-card small {
  grid-area: desc;
  min-width: 0;
  color: #6b5725;
  font-size: 11px;
  line-height: 1.35;
  white-space: normal;
}

.nav-product-card:hover {
  color: #241a07;
  background: rgba(255, 249, 238, 0.92);
  border-color: rgba(139, 100, 17, 0.2);
  box-shadow: 0 16px 32px rgba(139, 100, 17, 0.11);
  transform: translateY(-2px);
}

.nav-product-card:hover::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.nav-product-card:hover img {
  transform: translateY(-1px) scale(1.05);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-cta {
  padding: 0 22px;
}

.header-cta-primary {
  color: #fff;
  background: linear-gradient(135deg, #1598ff, #075fff);
  box-shadow: 0 14px 34px rgba(7, 95, 255, 0.26);
}

.header-cta-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.header-cta-trial {
  color: #3d2a06;
  font-weight: 900;
  background: linear-gradient(135deg, #f7d274, #d9a93a);
  border: 1px solid rgba(139, 100, 17, 0.35);
  box-shadow: 0 14px 34px rgba(139, 100, 17, 0.26);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  margin-left: auto;
  flex: 0 0 42px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(510px, 0.56fr) minmax(720px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 120px 0 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  min-width: 0;
  padding: 38px 38px 36px;
  border: 1px solid rgba(139, 100, 17, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 229, 0.38)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 34px 90px rgba(139, 100, 17, 0.16),
    0 12px 34px rgba(36, 26, 7, 0.1);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  transform-style: preserve-3d;
  isolation: isolate;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-copy::before {
  inset: -28px -34px -34px -22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 82% 42%, rgba(247, 210, 116, 0.34), transparent 44%),
    rgba(255, 255, 255, 0.1);
  filter: blur(22px);
  opacity: 0.88;
}

.hero-copy::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, transparent 62%, rgba(139, 100, 17, 0.08));
  mix-blend-mode: screen;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 28px rgba(139, 100, 17, 0.18),
    0 28px 56px rgba(36, 26, 7, 0.12);
}

.hero-lead {
  margin-top: 22px;
  color: #c6d5e8;
  font-size: 17px;
  line-height: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.44);
}

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

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #139aff, #075fff);
  box-shadow: 0 18px 46px rgba(7, 95, 255, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.56);
}

.btn-icon {
  margin-left: 10px;
  color: #a9bdd8;
  font-size: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.hero-proof div {
  position: relative;
  min-height: auto;
  padding: 0 0 0 24px;
  border: 0;
  background: transparent;
}

.hero-proof dt {
  color: #bfd3ea;
  font-size: 14px;
  font-weight: 700;
}

.hero-proof dd {
  display: none;
}

.hero-proof div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #5baeff;
  box-shadow: 0 0 18px rgba(32, 215, 255, 0.45);
}

.hero-system {
  position: relative;
  min-height: 456px;
  border: 1px solid rgba(105, 176, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 52% 50%, rgba(20, 142, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(8, 20, 34, 0.92), rgba(3, 11, 20, 0.98));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-system.dashboard::before,
.hero-system.dashboard::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-system.dashboard::before {
  inset: 0;
  background-image: radial-gradient(rgba(65, 153, 255, 0.18) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.35;
}

.hero-system.dashboard::after {
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent 16%, transparent 84%, rgba(255,255,255,0.04));
}

.dashboard {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
}

.dash-sidebar {
  position: relative;
  z-index: 2;
  padding: 18px 12px;
  border-right: 1px solid rgba(105, 176, 255, 0.2);
  background: rgba(4, 12, 22, 0.55);
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.dash-logo {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px 6px 9px 9px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(145deg, #19c0ff, #075fff);
}

.dash-sidebar nav {
  display: grid;
  gap: 5px;
}

.dash-sidebar nav span {
  display: block;
  padding: 7px 9px;
  color: #a9b9cc;
  border-radius: 6px;
  font-size: 12px;
}

.dash-sidebar nav span.is-current {
  display: block;
  color: white;
  background: linear-gradient(90deg, rgba(7, 95, 255, 0.9), rgba(7, 95, 255, 0.34));
}

.dash-main {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 18px 18px 20px;
}

.dash-topline,
.dash-filters,
.metric-grid {
  display: flex;
  align-items: center;
}

.dash-topline {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.dash-topline strong {
  color: white;
  font-size: 15px;
}

.dash-filters {
  gap: 8px;
}

.dash-filters span {
  padding: 5px 9px;
  color: #8fa5bd;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  font-size: 10px;
  background: rgba(255,255,255,0.035);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.metric-grid div,
.mini-panel {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  background: rgba(18, 35, 55, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.metric-grid div {
  min-height: 64px;
  padding: 12px;
}

.metric-grid span,
.mini-panel span {
  display: block;
  color: #91a4bb;
  font-size: 11px;
}

.metric-grid strong {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 21px;
  line-height: 1.1;
}

.metric-grid em {
  color: #35e99e;
  font-size: 10px;
  font-style: normal;
}

.dash-content {
  display: grid;
  grid-template-columns: 156px minmax(280px, 1fr) 200px;
  gap: 14px;
  margin-top: 16px;
}

.dash-left,
.dash-right {
  display: grid;
  align-content: start;
  gap: 12px;
}

.mini-panel {
  padding: 14px;
}

.chart-panel {
  min-height: 150px;
}

.donut {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 12px auto;
  border-radius: 50%;
  background: conic-gradient(#20d7ff 0 32%, #34d399 32% 58%, #7c5cff 58% 82%, rgba(255,255,255,0.08) 82%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #091522;
}

.donut strong,
.donut small {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
}

.donut strong {
  margin-top: -8px;
  font-size: 14px;
}

.donut small {
  margin-top: 22px;
  color: #91a4bb;
  font-size: 9px;
}

.chart-panel ul {
  margin: 0;
  padding-left: 16px;
  color: #8fa5bd;
  font-size: 10px;
}

.status-panel p,
.finance-panel p,
.insight-panel p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: #b7c7da;
  font-size: 12px;
}

.status-panel em {
  color: #35e99e;
  font-style: normal;
}

.finance-panel strong {
  color: white;
  font-size: 12px;
}

.sparkline {
  height: 34px;
  margin-top: 12px;
  background:
    linear-gradient(150deg, transparent 10%, #3b82f6 11%, transparent 13%),
    linear-gradient(165deg, transparent 26%, #21d4fd 27%, transparent 29%),
    linear-gradient(150deg, transparent 45%, #7c5cff 46%, transparent 48%);
  border-bottom: 1px solid rgba(91,174,255,0.32);
}

.insight-panel a {
  display: inline-block;
  margin-top: 10px;
  color: #55cfff;
  font-size: 12px;
}

.orbit-map {
  position: relative;
  min-height: 312px;
}

.orbit-map::before,
.orbit-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-map::before {
  width: 260px;
  height: 260px;
  border: 4px solid rgba(32, 215, 255, 0.9);
  box-shadow: 0 0 18px rgba(32, 215, 255, 0.7), inset 0 0 32px rgba(32, 215, 255, 0.1);
}

.orbit-map::after {
  width: 170px;
  height: 170px;
  border: 1px solid rgba(91, 174, 255, 0.35);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(5, 16, 28, 0.86);
  border: 1px solid rgba(105, 176, 255, 0.22);
}

.orbit-core strong,
.orbit-core small {
  display: block;
  grid-column: 1;
}

.orbit-core small {
  color: #c6d5e8;
  font-size: 11px;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  border: 2px solid currentColor;
  background: rgba(8, 21, 36, 0.9);
  box-shadow: 0 0 24px currentColor;
}

.orbit-lead {
  left: 50%;
  top: 8px;
  color: #4d8dff;
  transform: translateX(-50%);
}

.orbit-client {
  right: 8px;
  top: 100px;
  color: #2bd583;
}

.orbit-staff {
  right: 80px;
  bottom: 12px;
  color: #ffb13d;
}

.orbit-finance {
  left: 80px;
  bottom: 12px;
  color: #8d62ff;
}

.orbit-decision {
  left: 8px;
  top: 100px;
  color: #20d7ff;
}

.node-1,
.node-2,
.node-3,
.node-4,
.node-5,
.system-core,
.system-node,
.system-ring {
  display: none;
}

/* keep old system classes inert after dashboard redesign */

.node-1 {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}

.node-2 {
  top: 184px;
  right: 42px;
}

.node-3 {
  right: 74px;
  bottom: 78px;
}

.node-4 {
  left: 62px;
  bottom: 82px;
}

.node-5 {
  top: 184px;
  left: 42px;
}

.system-ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 360px;
  height: 360px;
}

.ring-b {
  width: 500px;
  height: 500px;
  border-color: rgba(35, 196, 131, 0.14);
}

.definition-band,
.solutions-band {
  background: linear-gradient(180deg, rgba(17, 26, 38, 0.72), rgba(13, 20, 30, 0.72));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.definition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 26px;
  padding: 72px 0;
}

.definition-main,
.definition-side,
.capability-card,
.audience-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.definition-main {
  padding: 38px;
}

.definition-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  margin-bottom: 22px;
}

.definition-side {
  padding: 30px;
  background: rgba(59, 130, 246, 0.08);
}

.definition-main h2,
.section-heading h2,
.audience-copy h2,
.final-cta h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 900;
}

.definition-main p,
.definition-side p,
.section-heading p,
.audience-copy p,
.final-cta p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.definition-side h3 {
  font-size: 22px;
}

.opc-section,
.audience-section,
.faq-section {
  padding: 98px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.opc-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.flow-step {
  min-height: 220px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  transition: background 0.18s ease, transform 0.18s ease;
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.flow-step strong {
  display: block;
  margin-top: 38px;
  color: white;
  font-size: 21px;
}

.flow-step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.flow-step.is-active,
.flow-step:hover {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.16), rgba(35, 196, 131, 0.06));
}

.capabilities {
  padding: 74px 0 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 135, 255, 0.12), transparent 36%),
    #06101c;
  border-top: 1px solid rgba(94, 171, 255, 0.18);
}

.capability-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.capability-card {
  min-height: 260px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  background: transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.capability-card:hover,
.audience-panel:hover,
.solution-row:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.feature-large {
  grid-row: auto;
  min-height: 260px;
  background: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(145deg, rgba(22, 135, 255, 0.95), rgba(7, 95, 255, 0.58));
  border: 1px solid rgba(91, 174, 255, 0.5);
  box-shadow: 0 0 28px rgba(22, 135, 255, 0.38);
}

.capability-card h3 {
  margin-top: 22px;
  color: #5fb5ff;
  font-size: 22px;
  line-height: 1.3;
}

.feature-large h3 {
  margin-top: 22px;
  font-size: 22px;
}

.capability-card p {
  margin-top: 14px;
  color: #c0d0e3;
  font-size: 15px;
  line-height: 1.72;
}

.capability-card a {
  margin-top: auto;
  color: #7bd4ff;
  font-size: 14px;
  font-weight: 800;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 46px;
  align-items: start;
}

.audience-copy {
  position: sticky;
  top: 108px;
}

.audience-grid {
  display: grid;
  gap: 18px;
}

.audience-panel {
  min-height: 260px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.audience-panel span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.audience-panel h3 {
  max-width: 560px;
  margin-top: 24px;
  color: white;
  font-size: 30px;
  line-height: 1.25;
}

.audience-panel p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
}

.solutions-band {
  padding: 92px 0;
}

.solution-list {
  display: grid;
  gap: 12px;
}

.solution-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.solution-row span {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
}

.solution-row strong {
  color: white;
  font-size: 18px;
}

.solution-row em {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: white;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.faq-item p {
  max-width: 900px;
  padding: 0 0 24px;
  color: var(--muted);
}

.faq-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: #8db8ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.faq-link:hover {
  color: white;
}

.faq-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.final-cta {
  padding: 88px 0;
  background:
    linear-gradient(130deg, rgba(59, 130, 246, 0.24), rgba(35, 196, 131, 0.14)),
    #0d1724;
  border-top: 1px solid var(--line);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta p {
  max-width: 680px;
}

.site-footer {
  padding: 58px 0 28px;
  color: var(--muted);
  background: #060a10;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(140px, 0.65fr)) minmax(200px, 0.9fr);
  align-items: start;
  gap: 34px;
}

.site-footer p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links strong,
.footer-contact strong {
  color: var(--text);
  font-size: 16px;
}

.footer-links a,
.footer-bottom a {
  color: inherit;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-brand .brand-logo {
  width: 130px;
  margin-bottom: 4px;
}

.footer-qr {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  color: var(--brand-gold);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(139, 100, 17, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(139, 100, 17, 0.16) 1px, transparent 1px),
    rgba(255, 255, 255, 0.1);
  background-size: 12px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.footer-qr span {
  display: block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.footer-qr small {
  margin-top: -20px;
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.footer-bottom p {
  max-width: 980px;
  margin: 0;
}

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

/* Unified gold + liquid glass theme */
.site-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(3, 9, 18, 0.64);
  border-bottom-color: var(--glass-line);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 48px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(3, 9, 18, 0.78);
}

.brand-mark,
.dash-logo {
  color: var(--brand-gold);
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 34px rgba(248, 218, 141, 0.24);
}

.site-nav a,
.nav-link,
.header-cta,
.btn,
.nav-toggle,
.dash-sidebar,
.hero-system,
.metric-grid div,
.mini-panel,
.definition-main,
.definition-side,
.capability-card,
.audience-panel,
.solution-row,
.faq-item {
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-item:hover > .nav-link {
  color: #fff7df;
  background:
    linear-gradient(180deg, rgba(248, 218, 141, 0.18), rgba(248, 218, 141, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-cta-primary,
.btn-primary {
  color: var(--brand-gold);
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 46px rgba(247, 210, 116, 0.26);
}

.header-cta-ghost,
.btn-secondary {
  color: #fff7df;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border-color: var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero h1,
.definition-main h2,
.section-heading h2,
.audience-copy h2,
.final-cta h2 {
  color: #fffaf0;
}

.hero-lead,
.definition-main p,
.definition-side p,
.section-heading p,
.audience-copy p,
.final-cta p {
  color: #d8d0be;
}

.hero-proof dt,
.btn-icon,
.capability-card a {
  color: var(--brand-gold-dark);
}

.hero-proof div::before {
  border-color: var(--brand-gold-dark);
  background: rgba(248, 218, 141, 0.12);
  box-shadow: 0 0 22px rgba(248, 218, 141, 0.42);
}

.hero-system {
  border-color: var(--glass-line);
  background:
    linear-gradient(rgba(248, 218, 141, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 218, 141, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 52% 50%, rgba(248, 218, 141, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(5, 13, 24, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 90px rgba(0, 0, 0, 0.36);
}

.hero-system.dashboard::before {
  background-image: radial-gradient(rgba(248, 218, 141, 0.2) 1px, transparent 1px);
}

.dash-sidebar {
  border-right-color: var(--glass-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.dash-sidebar nav span.is-current {
  color: var(--brand-gold);
  background: linear-gradient(90deg, var(--gold-start), rgba(245, 223, 181, 0.28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.dash-filters span,
.metric-grid div,
.mini-panel,
.definition-main,
.definition-side,
.audience-panel,
.solution-row,
.faq-item {
  border-color: var(--glass-line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 46px rgba(0, 0, 0, 0.16);
}

.metric-grid em,
.status-panel em {
  color: var(--brand-gold-dark);
}

.donut {
  background: conic-gradient(var(--gold-start) 0 32%, #f5dfb5 32% 58%, #8b6411 58% 82%, rgba(255,255,255,0.08) 82%);
}

.orbit-map::before {
  border-color: rgba(248, 218, 141, 0.9);
  box-shadow: 0 0 18px rgba(248, 218, 141, 0.7), inset 0 0 32px rgba(248, 218, 141, 0.12);
}

.orbit-map::after,
.orbit-core {
  border-color: var(--glass-line);
}

.orbit-core {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(5, 16, 28, 0.74);
}

.orbit-lead,
.orbit-decision {
  color: var(--brand-gold-dark);
}

.orbit-client {
  color: #f5dfb5;
}

.orbit-staff {
  color: #f7d274;
}

.orbit-finance {
  color: #cda84f;
}

.definition-band,
.solutions-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 14, 24, 0.66);
  border-top-color: var(--glass-line);
  border-bottom-color: var(--glass-line-soft);
}

.opc-flow {
  border-color: var(--glass-line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.flow-step {
  border-right-color: rgba(248, 218, 141, 0.12);
}

.flow-step span,
.solution-row span {
  color: var(--brand-gold-dark);
}

.flow-step.is-active,
.flow-step:hover {
  background:
    radial-gradient(circle at 40% 20%, rgba(248, 218, 141, 0.22), transparent 52%),
    rgba(255, 255, 255, 0.06);
}

.capabilities {
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 218, 141, 0.12), transparent 34%),
    #060e18;
  border-top-color: var(--glass-line);
}

.feature-icon {
  color: var(--brand-gold);
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 28px rgba(248, 218, 141, 0.34);
}

.capability-card h3 {
  color: var(--brand-gold-dark);
}

.capability-card p,
.audience-panel p,
.solution-row em,
.faq-item p,
.site-footer p {
  color: #d0c8b8;
}

.capability-card:hover,
.audience-panel:hover,
.solution-row:hover {
  border-color: var(--glass-line);
  filter: saturate(1.08);
}

.final-cta {
  background:
    radial-gradient(circle at 28% 0%, rgba(248, 218, 141, 0.2), transparent 38%),
    linear-gradient(130deg, rgba(139, 100, 17, 0.34), rgba(248, 218, 141, 0.08)),
    #0a111d;
  border-top-color: var(--glass-line);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #050911;
}

/* Light gold background theme */
:root {
  --bg: #f8f1dd;
  --bg-soft: #fbf6ea;
  --bg-band: #f3e7c8;
  --surface: rgba(255, 255, 255, 0.48);
  --surface-strong: rgba(255, 255, 255, 0.62);
  --text: #251b08;
  --muted: #6f5b2a;
  --subtle: #8b7540;
  --line: rgba(139, 100, 17, 0.18);
  --line-strong: rgba(139, 100, 17, 0.34);
  --brand-gold-dark: #8B6411;
  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-bg-strong: rgba(255, 255, 255, 0.62);
  --glass-line: rgba(139, 100, 17, 0.26);
  --glass-line-soft: rgba(139, 100, 17, 0.16);
  --glass-highlight: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 80px rgba(139, 100, 17, 0.14);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(247, 210, 116, 0.42), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(139, 100, 17, 0.12), transparent 34%),
    linear-gradient(180deg, #fff8e8 0%, #f8f1dd 42%, #efe0bd 100%);
}

.site-header,
.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(248, 241, 221, 0.72);
  border-bottom-color: rgba(139, 100, 17, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 18px 48px rgba(139, 100, 17, 0.1);
}

.brand-text,
.site-nav a,
.nav-link,
.hero h1,
.definition-main h2,
.section-heading h2,
.audience-copy h2,
.final-cta h2,
.dash-topline strong,
.metric-grid strong,
.mini-panel strong,
.orbit-core strong,
.capability-card h3,
.audience-panel h3,
.solution-row strong,
.faq-item summary {
  color: #241a07;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-item:hover > .nav-link {
  color: var(--brand-gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    rgba(247, 210, 116, 0.24);
}

.hero-lead,
.definition-main p,
.definition-side p,
.section-heading p,
.audience-copy p,
.final-cta p,
.capability-card p,
.audience-panel p,
.solution-row em,
.faq-item p,
.site-footer p,
.metric-grid span,
.mini-panel span,
.dash-sidebar nav span,
.dash-filters span,
.chart-panel ul,
.status-panel p,
.finance-panel p,
.insight-panel p,
.orbit-core small {
  color: #6b5725;
}

.hero-system {
  border-color: rgba(139, 100, 17, 0.24);
  background:
    linear-gradient(rgba(139, 100, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 100, 17, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 52% 50%, rgba(247, 210, 116, 0.26), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 90px rgba(139, 100, 17, 0.16);
}

.hero-system.dashboard::before {
  background-image: radial-gradient(rgba(139, 100, 17, 0.2) 1px, transparent 1px);
}

.dash-sidebar,
.metric-grid div,
.mini-panel,
.definition-main,
.definition-side,
.audience-panel,
.solution-row,
.faq-item,
.opc-flow {
  border-color: rgba(139, 100, 17, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 48px rgba(139, 100, 17, 0.1);
}

.dash-sidebar {
  border-right-color: rgba(139, 100, 17, 0.18);
}

.dash-sidebar nav span.is-current {
  color: var(--brand-gold);
  background: linear-gradient(90deg, rgba(247, 210, 116, 0.82), rgba(245, 223, 181, 0.38));
}

.header-cta-primary,
.btn-primary,
.brand-mark,
.dash-logo,
.feature-icon {
  color: var(--brand-gold);
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 38px rgba(139, 100, 17, 0.16);
}

.header-cta-ghost,
.btn-secondary,
.nav-toggle {
  color: #2f2209;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.34);
  border-color: rgba(139, 100, 17, 0.24);
}

.nav-toggle span {
  background: #2f2209;
}

.hero-proof dt,
.flow-step span,
.solution-row span,
.capability-card h3,
.capability-card a,
.insight-panel a,
.metric-grid em,
.status-panel em {
  color: var(--brand-gold);
}

.hero-proof div::before {
  border-color: var(--brand-gold);
  background: rgba(139, 100, 17, 0.08);
  box-shadow: 0 0 18px rgba(139, 100, 17, 0.18);
}

.orbit-map::before {
  border-color: rgba(139, 100, 17, 0.72);
  box-shadow: 0 0 20px rgba(139, 100, 17, 0.22), inset 0 0 32px rgba(247, 210, 116, 0.18);
}

.orbit-core,
.orbit-node {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.38);
}

.orbit-lead,
.orbit-client,
.orbit-staff,
.orbit-finance,
.orbit-decision {
  color: var(--brand-gold);
}

.definition-band,
.solutions-band,
.capabilities,
.final-cta,
.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 210, 116, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
    rgba(248, 241, 221, 0.5);
  border-color: rgba(139, 100, 17, 0.14);
}

.footer-social a,
.footer-qr {
  border-color: rgba(139, 100, 17, 0.2);
  background-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 30px rgba(139, 100, 17, 0.08);
}

.footer-social a:hover {
  color: #241a07;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  transform: translateY(-2px);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  border-top-color: rgba(139, 100, 17, 0.16);
}

.flow-step {
  border-right-color: rgba(139, 100, 17, 0.12);
}

.flow-step.is-active,
.flow-step:hover {
  background:
    radial-gradient(circle at 40% 20%, rgba(247, 210, 116, 0.38), transparent 52%),
    rgba(255, 255, 255, 0.38);
}

/* Light theme contrast pass */
.header-cta-primary,
.btn-primary {
  color: #241a07;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.feature-icon,
.brand-mark,
.dash-logo {
  color: #241a07;
}

.mini-panel,
.chart-panel,
.status-panel,
.finance-panel,
.insight-panel {
  color: #241a07;
}

.mini-panel strong,
.chart-panel strong,
.status-panel strong,
.finance-panel strong,
.insight-panel strong,
.metric-grid strong {
  color: #241a07;
}

.mini-panel span,
.chart-panel span,
.status-panel p,
.finance-panel p,
.insight-panel p,
.metric-grid span {
  color: #5b4717;
}

.chart-panel ul,
.chart-panel li {
  color: #49370e;
}

.donut {
  background: conic-gradient(var(--gold-start) 0 32%, #8b6411 32% 58%, #d5aa3b 58% 82%, rgba(139, 100, 17, 0.12) 82%);
  box-shadow: inset 0 0 0 1px rgba(139, 100, 17, 0.08), 0 12px 28px rgba(139, 100, 17, 0.12);
}

.donut::after {
  background: rgba(255, 250, 240, 0.94);
  box-shadow: inset 0 1px 8px rgba(139, 100, 17, 0.14);
}

.donut strong {
  color: #241a07;
  font-weight: 900;
}

.donut small {
  color: #684f18;
  font-weight: 800;
}

.opc-flow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.42);
}

.flow-step {
  background: rgba(255, 255, 255, 0.18);
}

.flow-step span {
  color: #8b6411;
}

.flow-step strong {
  color: #241a07;
  font-weight: 900;
}

.flow-step p {
  color: #584416;
}

.flow-step.is-active,
.flow-step:hover {
  background:
    radial-gradient(circle at 40% 24%, rgba(247, 210, 116, 0.48), transparent 58%),
    rgba(255, 255, 255, 0.52);
}

.audience-panel h3,
.definition-side h3,
.solution-row strong,
.faq-item summary {
  color: #241a07;
}

.audience-panel p,
.definition-side p,
.solution-row em,
.faq-item p,
.site-footer p {
  color: #5b4717;
}

@media (max-width: 860px) {
  .site-nav {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
      rgba(248, 241, 221, 0.78);
    border-color: rgba(139, 100, 17, 0.2);
  }

  .nav-item {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 6px 10px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 1px solid rgba(139, 100, 17, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-wide {
    grid-template-columns: 1fr;
  }

  .nav-dropdown::before {
    content: none;
  }

  .nav-dropdown a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .nav-products-panel {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 248, 235, 0.7);
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .nav-products-panel::before,
  .nav-products-panel::after {
    content: none;
  }

  .nav-item-products.is-open .nav-products-panel,
  .nav-item-products:focus-within .nav-products-panel {
    max-height: 720px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-products-head {
    padding: 6px 4px 10px;
  }

  .nav-products-head span {
    font-size: 13px;
  }

  .nav-products-head a {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .nav-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 520px;
    overflow-y: auto;
    padding-right: 2px;
  }

  .nav-product-card {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 66px;
    padding: 10px;
  }

  .nav-product-card img {
    width: 32px;
    height: 32px;
  }

  .nav-product-card span {
    font-size: 12px;
  }

  .nav-product-card small {
    font-size: 10px;
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    font-size: 50px;
  }

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

  .opc-flow,
  .capability-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-step {
    border-bottom: 1px solid var(--line);
  }

  .flow-step:nth-child(2n) {
    border-right: 0;
  }

  .flow-step:last-child {
    grid-column: span 2;
  }

  .audience-section,
  .final-cta-inner,
  .definition-grid {
    grid-template-columns: 1fr;
  }

  .audience-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    height: 66px;
    gap: 12px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 4;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--glass-line);
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
      rgba(8, 13, 20, 0.82);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 13px 14px;
  }

  .nav-dropdown a {
    padding: 8px 10px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 112px;
    gap: 36px;
  }

  .hero-copy {
    padding: 30px 28px 28px;
    border-radius: 16px;
  }

  .hero-copy::before {
    inset: -18px -18px -22px;
    filter: blur(18px);
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero h1,
  .hero-lead {
    word-break: break-all;
    line-break: anywhere;
  }

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

  .hero-proof,
  .opc-flow,
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .flow-step,
  .flow-step:nth-child(2n),
  .flow-step:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .feature-large {
    min-height: 360px;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 118px;
    padding: 20px;
  }

  .solution-row em {
    justify-self: start;
  }

  .hero-system {
    min-height: 620px;
  }

  .system-core {
    width: 142px;
    height: 142px;
  }

  .system-node {
    width: min(210px, calc(100% - 32px));
  }

  .node-1 {
    top: 26px;
  }

  .node-2 {
    top: 142px;
    right: 16px;
  }

  .node-3 {
    right: 16px;
    bottom: 90px;
  }

  .node-4 {
    left: 16px;
    bottom: 90px;
  }

  .node-5 {
    top: 142px;
    left: 16px;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 24px 20px 22px;
    border-radius: 14px;
  }

  .hero-copy::before {
    inset: -12px;
    filter: blur(14px);
  }

  .hero-copy::after {
    opacity: 0.72;
  }

  .hero h1,
  .definition-main h2,
  .section-heading h2,
  .audience-copy h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .definition-main,
  .definition-side,
  .audience-panel,
  .capability-card {
    padding: 22px;
  }

  .audience-panel h3,
  .feature-large h3 {
    font-size: 26px;
  }

  .hero-system {
    min-height: 700px;
  }

  .system-node {
    position: relative;
    inset: auto;
    transform: none;
    margin: 12px auto 0;
  }

  .system-core {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 24px auto;
  }

  .system-ring,
  .hero-system::before,
  .hero-system::after {
    display: none;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom div {
    display: grid;
  }
}

@media (min-width: 861px) {
  .site-nav {
    align-items: center;
    gap: 22px;
  }

  .nav-item {
    display: flex;
    align-items: center;
  }

  .site-nav > a,
  .site-nav > .nav-item > .nav-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 44px;
    padding: 9px 0;
    border-radius: 0;
    color: #263247;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav > a::before,
  .site-nav > .nav-item > .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    border-radius: 0;
    background: linear-gradient(90deg, #a96405, #d88913, #f3bf62);
    opacity: 0;
    transform: scaleX(0.32);
    transform-origin: center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav > a:hover::before,
  .site-nav > a[aria-current="page"]::before,
  .site-nav > .nav-item > .nav-link[aria-current="page"]::before,
  .site-nav > .nav-item:hover > .nav-link::before,
  .site-nav > .nav-item.is-open > .nav-link::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"],
  .site-nav > .nav-item > .nav-link[aria-current="page"],
  .nav-item:hover > .nav-link,
  .nav-item.is-open > .nav-link {
    color: #9f5c00;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
}

.definition-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  border-color: rgba(199, 121, 8, 0.18);
  background:
    radial-gradient(circle at 92% 14%, rgba(241, 184, 82, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 235, 0.78));
  box-shadow: 0 24px 70px rgba(136, 86, 15, 0.11);
}

.definition-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.definition-copy::before {
  display: none;
  content: none;
}

.definition-copy::after {
  display: none;
  content: none;
}

.definition-main h2 {
  max-width: 500px;
  font-size: clamp(26px, 2.35vw, 34px);
  line-height: 1.18;
}

.definition-main p {
  max-width: 540px;
  color: #334155;
}

.definition-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(199, 121, 8, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 244, 221, 0.48)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 46px rgba(82, 55, 13, 0.12);
}

.definition-visual::before {
  display: none;
  content: none;
}

.section-heading h2,
.audience-copy h2,
.final-cta h2 {
  max-width: 880px;
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

.growth-banner {
  padding: 22px 0 0;
}

main > .growth-banner:first-child {
  padding-top: 96px;
}

main > .growth-banner:first-child + .super-hero,
main > .growth-banner:first-child + .features-hero,
main > .growth-banner:first-child + .solutions-hero,
main > .growth-banner:first-child + .solution-detail-hero,
main > .growth-banner:first-child + .contact-hero,
main > .growth-banner:first-child + .about-hero,
main > .growth-banner:first-child + .case-hero,
main > .growth-banner:first-child + .case-list-hero,
main > .growth-banner:first-child + .case-detail-hero,
main > .growth-banner:first-child + .content-hero,
main > .growth-banner:first-child + .detail-hero {
  padding: 2% 0 0;
}

.growth-banner-inner {
  position: relative;
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 30px 38px;
  border: 1px solid rgba(139, 100, 17, 0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0 44%, #fff8e9 72%, #fff1cf 100%);
  box-shadow: 0 18px 52px rgba(139, 100, 17, 0.11);
}

.growth-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0 42%, rgba(255,255,255,0.54) 59%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.growth-banner-visual {
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 0;
  width: min(690px, 52%);
  height: 128%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-50%);
  filter: saturate(1.22) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
  pointer-events: none;
}

.growth-banner-copy,
.growth-banner-cta {
  position: relative;
  z-index: 1;
}

.growth-banner-copy {
  max-width: 760px;
}

.growth-banner-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9f5c00;
  font-size: 13px;
  font-weight: 800;
}

.growth-banner-copy h2 {
  margin: 0;
  color: #241a07;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

.growth-banner-copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #4b3a1c;
  font-size: 15px;
  line-height: 1.78;
}

.growth-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  white-space: nowrap;
  color: #241a07;
  border: 1px solid rgba(139, 100, 17, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8da8d, #d88913);
  box-shadow: 0 12px 26px rgba(139, 100, 17, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.hero-growth-proof {
  position: relative;
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin: 14px 0 24px;
  padding: 2px 0 2px 16px;
  border-left: 3px solid rgba(199, 121, 8, 0.82);
}

.hero-growth-proof strong {
  color: #a15f00;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-growth-proof span {
  color: #253247;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .growth-banner-inner {
    grid-template-columns: 1fr;
    background: linear-gradient(135deg, #ffffff 0%, #fff5dd 100%);
  }

  .growth-banner-inner::before {
    background: rgba(255, 255, 255, 0.76);
  }

  .growth-banner-visual {
    right: -150px;
    width: 620px;
    opacity: 0.26;
  }

  .growth-banner-cta {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .growth-banner-inner {
    padding: 24px;
  }

  .growth-banner-visual {
    display: none;
  }

  .growth-banner-copy h2 {
    font-size: 24px;
  }

  .growth-banner-cta {
    width: 100%;
  }
}

.definition-visual img,
.definition-main .definition-visual img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 12px;
}

@media (max-width: 1080px) {
  .definition-main {
    grid-template-columns: 1fr;
  }

  .definition-copy {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .definition-main {
    gap: 26px;
    padding: 26px;
  }

  .definition-main h2 {
    font-size: 26px;
  }

  .definition-main p {
    font-size: 15px;
    line-height: 1.78;
  }
}
