@charset "UTF-8";

/* Standalone stylesheet for the PHP edition. */

:root {
  --ink: #10142b;
  --ink-soft: #4e566f;
  --navy: #0a0f2c;
  --navy-2: #111743;
  --blue: #635bff;
  --blue-bright: #7a73ff;
  --cyan: #4fddff;
  --purple: #a65cff;
  --lavender: #efeefe;
  --paper: #f7f7fb;
  --white: #ffffff;
  --line: rgba(18, 24, 53, 0.12);
  --shadow: 0 24px 80px rgba(4, 8, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f1f4ff;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.42);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: #10142b;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--blue);
  color: white;
}

.section-shell,
.nav-shell,
.footer-top,
.footer-notice,
.footer-bottom {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 13, 42, 0.86);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 78px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-link {
  width: max-content;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  transform: skewY(-12deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7c75ff, #73e7ff);
}

.brand-mark i:nth-child(1) { width: 24px; left: 0; top: 2px; }
.brand-mark i:nth-child(2) { width: 28px; right: 0; top: 13px; background: linear-gradient(90deg, #9867ff, #6b8dff); }
.brand-mark i:nth-child(3) { width: 18px; left: 3px; top: 24px; background: linear-gradient(90deg, #5adfff, #736bff); }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.13em;
  font-weight: 650;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 7px;
  letter-spacing: 0.19em;
  opacity: 0.62;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}

.desktop-nav > a,
.nav-group > button {
  padding: 28px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.desktop-nav > a:hover,
.nav-group:hover > button {
  opacity: 1;
}

.nav-group {
  position: relative;
}

.nav-group > button span {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-group:hover > button span {
  transform: rotate(180deg);
}

.nav-panel {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 290px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(15, 20, 57, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-panel > p {
  margin: 4px 8px 9px;
  color: #828aa8;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-panel a {
  display: flex;
  flex-direction: column;
  padding: 11px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-panel a span {
  font-size: 13px;
}

.nav-panel a small {
  margin-top: 4px;
  color: #858da9;
  font-size: 9px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}

.language-link {
  opacity: 0.72;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
  color: var(--navy);
  background: white;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 15px;
  height: 1px;
  margin: 4px auto;
  background: white;
  transition: 0.2s ease;
}

.menu-toggle.is-open i:first-child { transform: translateY(2.5px) rotate(45deg); }
.menu-toggle.is-open i:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 28%, rgba(103, 84, 255, 0.36), transparent 28%),
    linear-gradient(125deg, #0a0d2c 4%, #11184c 52%, #171950 100%);
  color: white;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -210px;
  height: 340px;
  background: white;
  transform: rotate(-5deg);
  z-index: 4;
}

.hero-grid,
.inner-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.orb-one {
  width: 620px;
  height: 620px;
  right: -160px;
  top: 40px;
  border: 1px solid rgba(117, 231, 255, 0.32);
  box-shadow: inset 20px 0 80px rgba(90, 230, 255, 0.08), 0 0 100px rgba(97, 97, 255, 0.12);
}

.orb-two {
  width: 260px;
  height: 260px;
  right: 24%;
  top: 180px;
  background: linear-gradient(145deg, rgba(70, 224, 255, 0.22), rgba(118, 87, 255, 0.04));
  filter: blur(30px);
}

.home-hero-inner {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 64px));
  min-height: 720px;
  margin: 0 auto;
  padding-top: 174px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7390;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.eyebrow.light {
  color: #aeb6d0;
}

.eyebrow.light i {
  background: var(--cyan);
}

.hero-copy h1 {
  margin: 33px 0 30px;
  max-width: 650px;
  font-size: clamp(60px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 650;
}

.hero-copy h1 span,
.governance-inner h2 span,
.closing-inner h2 span {
  color: transparent;
  background: linear-gradient(90deg, #8a82ff, #7de8ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: #b7bed3;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 43px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 176px;
  padding: 15px 19px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(120deg, #655eff, #776fff);
  box-shadow: 0 16px 35px rgba(89, 76, 255, 0.32);
}

.button.dark {
  color: white;
  background: var(--navy);
}

.button.white {
  color: var(--navy);
  background: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(16, 20, 43, 0.23);
  font-size: 12px;
  font-weight: 600;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  border-color: rgba(255, 255, 255, 0.28);
  color: #dfe3ee;
}

.market-console {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 505px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(26, 32, 79, 0.88), rgba(12, 17, 51, 0.78));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.market-console::before {
  content: "";
  position: absolute;
  inset: -50px -90px -80px -60px;
  z-index: -1;
  background: radial-gradient(circle, rgba(92, 86, 255, 0.3), transparent 62%);
  filter: blur(10px);
}

.console-head,
.console-summary,
.console-rows > div {
  display: flex;
  align-items: center;
}

.console-head {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #c6cde0;
  font-size: 11px;
}

.console-head span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #70e9c2;
  box-shadow: 0 0 12px #70e9c2;
}

.console-head small {
  color: #747d9c;
  font-size: 9px;
}

.console-summary {
  justify-content: space-between;
  padding: 27px 8px 18px;
}

.console-summary small {
  display: block;
  color: #808aa9;
  font-size: 10px;
}

.console-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 40px;
  letter-spacing: -0.04em;
}

.console-summary strong span {
  color: #68708f;
  font-size: 15px;
}

.ring {
  width: 74px;
  height: 74px;
  padding: 7px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 84%, rgba(255, 255, 255, 0.08) 84%);
}

.ring span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
  background: #151b4a;
  color: #bfefff;
  font-size: 13px;
}

.console-chart {
  position: relative;
  height: 125px;
  margin: 0 6px 20px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 31px;
}

.chart-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: space-around;
  padding: 0 8px;
}

.chart-bars i {
  position: relative;
  width: 5px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(104, 95, 255, 0.28), #69dcff);
  box-shadow: 0 0 12px rgba(100, 217, 255, 0.26);
}

.chart-bars i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 14px;
  background: #94f1ff;
  transform: translate(-50%, -7px);
}

.console-rows {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.console-rows > div {
  display: grid;
  grid-template-columns: 10px 1fr 70px 40px;
  gap: 9px;
  padding: 14px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
}

.console-rows strong { font-weight: 500; color: #d3d8e8; }
.console-rows small { color: #7983a2; }
.console-rows em { color: #79e7d0; font-style: normal; text-align: right; }
.row-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.dot-1 { background: var(--purple); }
.dot-2 { background: #65e4b7; }

.hero-footnote {
  position: absolute;
  z-index: 5;
  right: max(32px, calc((100% - 1200px) / 2));
  bottom: 160px;
  display: flex;
  gap: 36px;
  color: #8891ad;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-footnote span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 50%;
  background: #686fff;
}

.section-index {
  color: #727990;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.section-index.inverse {
  color: #8791b3;
}

.intro-section {
  padding: 45px 0 125px;
}

.intro-statement {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 110px;
  align-items: end;
  padding: 45px 0 62px;
}

.intro-statement h2,
.section-heading h2,
.process-copy h2,
.insights-head h2,
.operating-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 65px);
  line-height: 1.15;
  letter-spacing: -0.052em;
  font-weight: 610;
}

.intro-statement h2 span {
  color: var(--blue);
}

.intro-statement > div p,
.process-copy > p,
.operating-copy > p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.principle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-strip > div {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 0;
  border-right: 1px solid var(--line);
}

.principle-strip > div:not(:first-child) { padding-left: 38px; }
.principle-strip > div:last-child { border-right: 0; }
.principle-strip span { color: var(--blue); font-size: 10px; }
.principle-strip strong { font-size: 14px; font-weight: 570; }

.capability-section {
  position: relative;
  padding: 120px 0 135px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.capability-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -180px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 73, 255, 0.2), transparent 65%);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr 0.85fr;
  gap: 45px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.section-heading p {
  margin: 0;
  color: #939bb7;
  font-size: 13px;
  line-height: 1.8;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.capability-card {
  position: relative;
  min-height: 510px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-7px);
  border-color: rgba(124, 116, 255, 0.5);
  background: linear-gradient(145deg, rgba(106, 91, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.capability-card > span {
  color: #6d7694;
  font-size: 10px;
}

.capability-card h3 {
  margin: 28px 0 13px;
  font-size: 25px;
  letter-spacing: -0.025em;
  font-weight: 560;
}

.capability-card p {
  min-height: 68px;
  margin: 0;
  color: #969eb9;
  font-size: 12px;
  line-height: 1.75;
}

.capability-card > em {
  position: absolute;
  left: 29px;
  bottom: 28px;
  color: #aeb5ca;
  font-size: 10px;
  font-style: normal;
}

.capability-visual {
  position: relative;
  height: 210px;
  margin: 27px -29px 0;
}

.capability-visual::before,
.capability-visual::after,
.capability-visual i {
  content: "";
  position: absolute;
  display: block;
}

.visual-01::before {
  width: 190px;
  height: 190px;
  left: 50%;
  top: 5px;
  border: 1px solid rgba(102, 224, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(75, 214, 255, 0.15), inset 0 0 50px rgba(105, 96, 255, 0.15);
  transform: translateX(-50%);
}

.visual-01::after {
  width: 110px;
  height: 110px;
  left: 50%;
  top: 45px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #70e4ff, #6256ff 55%, transparent 56%);
  filter: blur(0.2px);
  transform: translateX(-50%);
}

.visual-01 i { width: 1px; height: 190px; left: 50%; top: 5px; background: rgba(255, 255, 255, 0.15); }
.visual-01 i:nth-child(2) { transform: rotate(60deg); }
.visual-01 i:nth-child(3) { transform: rotate(-60deg); }

.visual-02::before {
  width: 155px;
  height: 155px;
  left: 50%;
  top: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(142, 92, 255, 0.7), rgba(40, 212, 255, 0.18));
  box-shadow: 22px 22px 0 rgba(99, 91, 255, 0.12), 0 0 70px rgba(98, 80, 255, 0.24);
  transform: translateX(-50%) rotate(45deg);
}

.visual-02::after {
  width: 86px;
  height: 86px;
  left: 50%;
  top: 57px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateX(-50%) rotate(45deg);
}

.visual-02 i { width: 5px; height: 5px; border-radius: 50%; background: #8cf1ff; box-shadow: 0 0 16px #8cf1ff; }
.visual-02 i:nth-child(1) { left: 28%; top: 50%; }
.visual-02 i:nth-child(2) { right: 26%; top: 35%; }
.visual-02 i:nth-child(3) { left: 48%; bottom: 12%; }

.visual-03::before {
  width: 220px;
  height: 130px;
  left: 50%;
  top: 38px;
  border: 1px solid rgba(116, 230, 255, 0.35);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-12deg);
}

.visual-03::after {
  width: 220px;
  height: 130px;
  left: 50%;
  top: 38px;
  border: 1px solid rgba(137, 96, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(99, 88, 255, 0.2);
  transform: translateX(-50%) rotate(35deg);
}

.visual-03 i { width: 8px; height: 8px; border-radius: 50%; background: #7be9ff; box-shadow: 0 0 18px #7be9ff; }
.visual-03 i:nth-child(1) { left: 27%; top: 32%; }
.visual-03 i:nth-child(2) { right: 28%; top: 66%; background: #a76cff; }
.visual-03 i:nth-child(3) { left: 49%; top: 49%; background: white; }

.process-section {
  padding: 140px 0;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.process-copy h2 {
  margin: 34px 0 28px;
  font-size: clamp(40px, 4vw, 59px);
}

.process-copy .button {
  margin-top: 11px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list > div {
  display: grid;
  grid-template-columns: 42px 120px 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--blue);
  font-size: 10px;
}

.process-list h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: #6b7288;
  font-size: 12px;
  line-height: 1.75;
}

.governance-banner {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, #11133f, #121a55);
}

.governance-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(120deg, transparent 49.8%, rgba(255, 255, 255, 0.12) 50%, transparent 50.2%);
  background-size: 160px 160px;
}

.governance-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 10%;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 86, 255, 0.34), transparent 65%);
}

.governance-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
}

.governance-inner h2 {
  margin: 34px 0 0;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.governance-points {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.governance-points a {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 18px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.governance-points a > span { color: #737fa4; font-size: 10px; }
.governance-points strong { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 570; }
.governance-points small { color: #8e98b7; font-size: 10px; }
.governance-points em { color: #85e8ff; font-style: normal; }

.insights-section {
  padding: 135px 0 150px;
}

.insights-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 57px;
}

.insights-head h2 {
  margin-top: 30px;
  font-size: clamp(42px, 4vw, 60px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-visual {
  position: relative;
  height: 250px;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--navy);
}

.article-visual::before,
.article-visual::after,
.article-visual i {
  content: "";
  position: absolute;
}

.article-visual > span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.article-1::before { width: 280px; height: 280px; right: -70px; top: -60px; border: 1px solid rgba(90, 230, 255, 0.4); border-radius: 50%; box-shadow: inset 0 0 70px rgba(105, 91, 255, 0.25); }
.article-1::after { width: 120px; height: 120px; right: 27px; top: 24px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #7be9ff, #6357ff 58%, transparent 60%); }
.article-1 i { width: 1px; height: 350px; left: 50%; top: -50px; background: rgba(255, 255, 255, 0.14); transform: rotate(45deg); }

.article-2 { background: linear-gradient(145deg, #161a51, #311c68); }
.article-2::before { width: 180px; height: 180px; left: 50%; top: 35px; border: 1px solid rgba(255, 255, 255, 0.32); transform: translateX(-50%) rotate(45deg); }
.article-2::after { width: 110px; height: 110px; left: 50%; top: 70px; background: linear-gradient(135deg, #a15aff, #594fff); transform: translateX(-50%) rotate(45deg); box-shadow: 0 0 55px rgba(138, 81, 255, 0.55); }
.article-2 i { width: 5px; height: 5px; border-radius: 50%; background: #7ff1ff; box-shadow: 0 0 14px #7ff1ff; }
.article-2 i:nth-child(1) { top: 23%; left: 29%; }.article-2 i:nth-child(2) { top: 62%; right: 24%; }.article-2 i:nth-child(3) { bottom: 18%; left: 44%; }

.article-3 { background: linear-gradient(145deg, #0c153c, #102d56); }
.article-3::before { width: 250px; height: 130px; left: 50%; top: 55px; border: 1px solid rgba(93, 220, 255, 0.4); border-radius: 50%; transform: translateX(-50%) rotate(-12deg); }
.article-3::after { width: 250px; height: 130px; left: 50%; top: 55px; border: 1px solid rgba(120, 91, 255, 0.65); border-radius: 50%; transform: translateX(-50%) rotate(37deg); }
.article-3 i { width: 7px; height: 7px; left: 49%; top: 50%; border-radius: 50%; background: white; box-shadow: 0 0 18px #6fe9ff; }

.article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #737b92;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.article-meta span { color: var(--blue); }
.article-card h3 { min-height: 74px; margin: 0 0 26px; font-size: 17px; line-height: 1.55; letter-spacing: -0.02em; font-weight: 560; }
.article-card > em { width: max-content; padding-bottom: 6px; border-bottom: 1px solid var(--line); color: #626a82; font-size: 10px; font-style: normal; }

.closing-cta {
  position: relative;
  padding: 130px 0 145px;
  overflow: hidden;
  color: white;
  background: linear-gradient(125deg, #0a0d2c, #171447 75%);
}

.closing-lines {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -180px;
  top: -270px;
  border: 1px solid rgba(95, 226, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(109, 93, 255, 0.04), 0 0 0 160px rgba(109, 93, 255, 0.025);
}

.closing-inner {
  position: relative;
}

.closing-inner h2 {
  margin: 35px 0 50px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.closing-actions { display: flex; align-items: center; gap: 32px; }

.site-footer {
  padding: 84px 0 24px;
  color: white;
  background: #070a22;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 45px;
  padding-bottom: 64px;
}

.footer-top > div:first-child p {
  max-width: 260px;
  margin: 25px 0 0;
  color: #747d9c;
  font-size: 11px;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column strong { margin-bottom: 7px; color: #79829e; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-column a { color: #b7bed1; font-size: 10px; transition: color 0.2s ease; }
.footer-column a:hover { color: white; }

.footer-notice {
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-notice p { max-width: 850px; margin: 0; color: #676f8a; font-size: 9px; line-height: 1.75; }
.footer-bottom { display: flex; gap: 30px; padding-top: 24px; color: #59617b; font-size: 8px; letter-spacing: 0.08em; }
.footer-bottom a { margin-left: auto; }

/* Inner pages */
.inner-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(125deg, #090d2d 5%, #111749 70%, #18154f);
}

.inner-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: 20px;
  border: 1px solid rgba(109, 224, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(105, 89, 255, 0.035), 0 0 0 180px rgba(105, 89, 255, 0.025);
}

.inner-hero.accent-1 { background: linear-gradient(125deg, #0a0d2d, #16184d 70%, #22194e); }
.inner-hero.accent-2 { background: linear-gradient(125deg, #080e2c, #10224d 70%, #162c57); }
.inner-hero.accent-3 { background: linear-gradient(125deg, #0c0d2d, #211345 70%, #30164d); }

.inner-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: 10%;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 91, 255, 0.25), transparent 66%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
}

.inner-hero-content h1 {
  max-width: 940px;
  margin: 34px 0 28px;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.062em;
  font-weight: 620;
}

.inner-hero-content > p {
  max-width: 680px;
  margin: 0;
  color: #aeb6cf;
  font-size: 16px;
  line-height: 1.85;
}

.hero-page-number {
  position: absolute;
  right: 0;
  bottom: 2px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 86px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.hero-page-number span { font-size: 14px; letter-spacing: 0; }

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  box-shadow: 0 15px 55px rgba(18, 22, 60, 0.07);
  transform: translateY(-1px);
}

.stats-ribbon > div {
  min-height: 145px;
  padding: 32px 40px;
  border-right: 1px solid var(--line);
  background: white;
}

.stats-ribbon > div:last-child { border-right: 0; }
.stats-ribbon strong { display: block; margin-bottom: 13px; color: var(--blue); font-size: 32px; letter-spacing: -0.04em; font-weight: 620; }
.stats-ribbon span { color: #6b7287; font-size: 11px; }

.page-story {
  padding-top: 115px;
  padding-bottom: 95px;
}

.story-row {
  display: grid;
  grid-template-columns: 70px 0.95fr 1.05fr;
  gap: 65px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.story-row:last-child { border-bottom: 1px solid var(--line); }
.story-number { color: var(--blue); font-size: 10px; }
.story-heading > span { color: #737b92; font-size: 9px; font-weight: 650; letter-spacing: 0.15em; text-transform: uppercase; }
.story-heading h2 { max-width: 420px; margin: 22px 0 0; font-size: clamp(32px, 3.1vw, 45px); line-height: 1.25; letter-spacing: -0.045em; font-weight: 590; }
.story-body > p { margin: 0 0 32px; color: #626a82; font-size: 14px; line-height: 1.9; }
.story-body ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.story-body li { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); color: #42495e; font-size: 11px; }
.story-body li i { width: 6px; height: 6px; border: 1px solid var(--blue); border-radius: 50%; }

.page-quote {
  position: relative;
  min-height: 440px;
  padding: 120px max(32px, calc((100% - 1000px) / 2));
  overflow: hidden;
  text-align: center;
  color: white;
  background: linear-gradient(125deg, #0c0f32, #17164c);
}

.page-quote blockquote { position: relative; z-index: 2; max-width: 900px; margin: 0 auto 35px; font-size: clamp(30px, 4vw, 48px); line-height: 1.48; letter-spacing: -0.04em; font-weight: 520; }
.page-quote > span { position: relative; z-index: 2; color: #7c86a5; font-size: 8px; letter-spacing: 0.18em; }
.quote-orb { position: absolute; width: 500px; height: 500px; left: 50%; top: -220px; border: 1px solid rgba(93, 225, 255, 0.28); border-radius: 50%; box-shadow: inset 0 0 100px rgba(99, 82, 255, 0.2), 0 0 0 70px rgba(105, 88, 255, 0.04); transform: translateX(-50%); }

.operating-model {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 120px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 140px;
}

.operating-copy h2 { margin: 31px 0 28px; font-size: clamp(40px, 4vw, 59px); }
.method-wheel { position: relative; width: 360px; height: 360px; margin: 0 auto; border: 1px solid rgba(99, 91, 255, 0.24); border-radius: 50%; box-shadow: inset 0 0 80px rgba(104, 91, 255, 0.05), 0 0 0 60px rgba(104, 91, 255, 0.025); }
.method-wheel::before, .method-wheel::after { content: ""; position: absolute; inset: 50px; border: 1px dashed rgba(99, 91, 255, 0.22); border-radius: 50%; }
.method-wheel::after { inset: 112px; border-style: solid; background: radial-gradient(circle, rgba(99, 91, 255, 0.09), transparent); }
.wheel-core { position: absolute; z-index: 2; inset: 145px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); font-size: 17px; font-weight: 650; }
.wheel-label { position: absolute; z-index: 3; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; box-shadow: 0 8px 25px rgba(29, 31, 69, 0.08); color: #586078; font-size: 9px; }
.label-one { top: 25px; left: 50%; transform: translateX(-50%); }
.label-two { right: -5px; bottom: 75px; }
.label-three { left: -8px; bottom: 75px; }

.related-section { padding: 120px 0 130px; background: var(--paper); }
.related-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; }
.related-head > span { color: var(--blue); font-size: 9px; letter-spacing: 0.15em; }
.related-head h2 { margin: 0; font-size: 38px; letter-spacing: -0.04em; font-weight: 580; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid a { position: relative; min-height: 285px; padding: 28px; border: 1px solid var(--line); background: white; transition: transform 0.2s ease, border-color 0.2s ease; }
.related-grid a:hover { transform: translateY(-5px); border-color: rgba(99, 91, 255, 0.34); }
.related-grid a > span { color: var(--blue); font-size: 9px; }
.related-grid h3 { margin: 35px 0 17px; font-size: 22px; font-weight: 580; }
.related-grid p { margin: 0; color: #727a90; font-size: 10px; line-height: 1.75; }
.related-grid em { position: absolute; right: 26px; bottom: 24px; color: var(--blue); font-style: normal; }

@media (max-width: 1050px) {
  .nav-shell { grid-template-columns: 240px 1fr auto; }
  .desktop-nav { gap: 20px; }
  .contact-link { display: none; }
  .home-hero-inner { gap: 35px; }
  .market-console { transform: none; }
  .section-heading { grid-template-columns: 0.55fr 1.25fr 0.9fr; }
  .capability-card { min-height: 490px; padding: 23px; }
  .capability-visual { margin-inline: -23px; }
  .process-layout, .governance-inner, .operating-model { gap: 65px; }
  .story-row { gap: 35px; }
  .footer-top { grid-template-columns: 1.8fr repeat(4, 1fr); gap: 24px; }
}

@media (max-width: 860px) {
  .section-shell, .nav-shell, .footer-top, .footer-notice, .footer-bottom { width: min(100% - 38px, 720px); }
  .nav-shell { height: 68px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .nav-actions { gap: 15px; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; position: fixed; inset: 68px 0 auto; height: calc(100vh - 68px); overflow: auto; visibility: hidden; opacity: 0; background: rgba(7, 10, 34, 0.98); transform: translateY(-15px); transition: 0.25s ease; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-menu-inner { width: min(100% - 38px, 720px); margin: 0 auto; padding: 30px 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
  .mobile-menu section > p { color: #6f7899; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
  .mobile-menu section a { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: #d5d9e7; font-size: 13px; }

  .home-hero { min-height: 1110px; }
  .home-hero::after { bottom: -250px; }
  .home-hero-inner { min-height: 1000px; padding-top: 135px; grid-template-columns: 1fr; gap: 30px; }
  .hero-copy h1 { max-width: 700px; }
  .market-console { max-width: 580px; min-height: 455px; margin: 15px 0 0 auto; }
  .console-chart { height: 85px; }
  .hero-footnote { bottom: 175px; right: 20px; }

  .intro-statement { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading p { max-width: 500px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 350px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr auto auto; column-gap: 30px; }
  .capability-card > span { grid-column: 1; }
  .capability-visual { grid-column: 2; grid-row: 1 / 5; height: 260px; margin: 20px 0; align-self: center; }
  .capability-card h3, .capability-card p, .capability-card > em { grid-column: 1; }
  .capability-card > em { position: static; margin-top: 35px; }

  .process-layout, .governance-inner, .operating-model { grid-template-columns: 1fr; }
  .process-copy { max-width: 620px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card:last-child { display: none; }
  .footer-top { grid-template-columns: 2fr repeat(2, 1fr); row-gap: 50px; }
  .footer-top > div:first-child { grid-row: span 2; }

  .inner-hero { min-height: 640px; }
  .inner-hero-content h1 { max-width: 720px; }
  .hero-page-number { bottom: -75px; font-size: 62px; }
  .story-row { grid-template-columns: 44px 1fr; }
  .story-body { grid-column: 2; }
  .method-wheel { width: 330px; height: 330px; }
  .wheel-core { inset: 130px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { min-height: 220px; }
}

@media (max-width: 600px) {
  .section-shell, .nav-shell, .footer-top, .footer-notice, .footer-bottom { width: calc(100% - 32px); }
  .brand-copy strong { font-size: 14px; }
  .language-link { font-size: 10px; }
  .mobile-menu-inner { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .home-hero { min-height: 1020px; }
  .home-hero-inner { width: calc(100% - 32px); padding-top: 125px; min-height: 940px; }
  .hero-copy h1 { margin-top: 27px; font-size: 52px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 32px; }
  .market-console { min-height: 415px; padding: 18px; }
  .console-summary { padding-top: 19px; }
  .console-chart { height: 78px; }
  .console-rows > div { grid-template-columns: 8px 1fr 58px 34px; }
  .hero-footnote { display: none; }

  .intro-section { padding-bottom: 85px; }
  .intro-statement h2, .section-heading h2, .process-copy h2, .insights-head h2, .operating-copy h2 { font-size: 39px; }
  .principle-strip { grid-template-columns: 1fr; }
  .principle-strip > div, .principle-strip > div:not(:first-child) { padding: 21px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-strip > div:last-child { border-bottom: 0; }
  .capability-section { padding: 90px 0; }
  .capability-card { min-height: 475px; display: block; }
  .capability-visual { height: 205px; margin: 10px -23px 0; }
  .capability-card p { min-height: 0; }
  .capability-card > em { position: absolute; bottom: 23px; left: 23px; }
  .process-section { padding: 95px 0; }
  .process-layout { gap: 55px; }
  .process-list > div { grid-template-columns: 28px 85px 1fr; gap: 10px; }
  .process-list p { font-size: 10px; }
  .governance-banner { padding: 95px 0; }
  .governance-inner h2 { font-size: 40px; }
  .insights-section { padding: 95px 0; }
  .insights-head { align-items: flex-start; gap: 30px; }
  .insights-head > .text-link { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card:nth-child(2) { display: none; }
  .article-visual { height: 280px; }
  .closing-cta { padding: 95px 0 105px; }
  .closing-inner h2 { font-size: 48px; }
  .closing-actions { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / 3; grid-row: auto; }
  .footer-bottom { flex-wrap: wrap; gap: 14px; }
  .footer-bottom a { width: 100%; margin: 0; }

  .inner-hero { min-height: 610px; }
  .inner-hero-content { padding-top: 80px; }
  .inner-hero-content h1 { font-size: 47px; }
  .inner-hero-content > p { font-size: 13px; }
  .stats-ribbon { width: 100%; grid-template-columns: 1fr; border: 0; }
  .stats-ribbon > div { min-height: 105px; padding: 23px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-ribbon strong { display: inline-block; min-width: 100px; margin: 0; font-size: 26px; }
  .page-story { padding-top: 70px; }
  .story-row { grid-template-columns: 30px 1fr; gap: 16px; padding: 45px 0; }
  .story-heading h2 { font-size: 32px; }
  .story-body { grid-column: 1 / 3; padding-left: 46px; }
  .page-quote { padding: 85px 24px; }
  .operating-model { padding-top: 90px; padding-bottom: 100px; gap: 45px; }
  .method-wheel { width: 270px; height: 270px; }
  .method-wheel::before { inset: 40px; }
  .method-wheel::after { inset: 88px; }
  .wheel-core { inset: 105px; }
  .label-one { top: 12px; }
  .label-two { bottom: 50px; }
  .label-three { bottom: 50px; }
  .related-section { padding: 90px 0; }
  .related-head { display: block; }
  .related-head h2 { margin-top: 18px; }
}

/* Stripe-inspired light direction */
:root {
  --paper: #f7f8ff;
  --line: rgba(41, 45, 83, 0.11);
  --shadow: 0 28px 90px rgba(69, 61, 135, 0.14);
}

.site-header,
.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(35, 39, 74, 0.09);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(160%);
}

.desktop-nav > a,
.nav-group > button {
  opacity: 0.66;
}

.nav-panel {
  color: var(--ink);
  border-color: rgba(35, 39, 74, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 65px rgba(52, 47, 108, 0.16);
}

.nav-panel a:hover {
  background: #f4f3ff;
}

.nav-panel > p,
.nav-panel a small {
  color: #8187a1;
}

.language-link {
  color: #535a75;
}

.contact-link {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 10px 25px rgba(20, 24, 59, 0.15);
}

.contact-link:hover {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  border-color: rgba(20, 24, 59, 0.16);
}

.menu-toggle i {
  background: var(--ink);
}

.home-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 83% 19%, rgba(76, 221, 255, 0.34), transparent 26%),
    radial-gradient(circle at 70% 1%, rgba(255, 185, 110, 0.3), transparent 23%),
    radial-gradient(circle at 25% 5%, rgba(111, 91, 255, 0.24), transparent 31%),
    linear-gradient(132deg, #ffffff 5%, #fbfaff 48%, #f2fbff 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 220px;
  right: -100px;
  top: 120px;
  border-radius: 999px;
  background: linear-gradient(105deg, rgba(255, 170, 112, 0.18), rgba(117, 91, 255, 0.23) 45%, rgba(67, 221, 255, 0.25));
  filter: blur(20px);
  transform: rotate(-28deg);
}

.home-hero::after {
  background: #ffffff;
}

.hero-grid,
.inner-hero-grid {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(52, 57, 100, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 57, 100, 0.1) 1px, transparent 1px);
}

.orb-one {
  border-color: rgba(86, 105, 255, 0.2);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), rgba(114, 219, 255, 0.12) 45%, rgba(111, 91, 255, 0.08) 68%, transparent 70%);
  box-shadow: inset 20px 0 90px rgba(80, 213, 255, 0.1), 0 0 110px rgba(103, 91, 255, 0.1);
}

.orb-two {
  background: linear-gradient(145deg, rgba(91, 224, 255, 0.28), rgba(143, 92, 255, 0.1));
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #635bff 2%, #8c5cff 44%, #19b9db 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  color: #5f667f;
}

.home-hero .eyebrow.light {
  color: #676f8b;
}

.home-hero .eyebrow.light i {
  background: var(--blue);
}

.home-hero .light-link {
  color: #414861;
  border-color: rgba(35, 39, 74, 0.18);
}

.button.primary {
  background: linear-gradient(110deg, #635bff, #8e63ff);
  box-shadow: 0 18px 42px rgba(99, 91, 255, 0.28);
}

.market-console {
  color: var(--ink);
  border-color: rgba(92, 84, 170, 0.13);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 249, 255, 0.82));
  box-shadow: 0 34px 100px rgba(76, 69, 143, 0.17), inset 0 1px rgba(255, 255, 255, 0.96);
}

.market-console::before {
  background: radial-gradient(circle, rgba(116, 96, 255, 0.18), transparent 65%);
}

.console-head {
  color: #5e6681;
  border-color: rgba(35, 39, 74, 0.09);
}

.console-head small,
.console-summary small,
.console-rows small {
  color: #8990a7;
}

.console-summary strong {
  color: #202541;
}

.console-summary strong span {
  color: #9298ad;
}

.ring {
  background: conic-gradient(#35c8e5 0 84%, rgba(99, 91, 255, 0.1) 84%);
}

.ring span {
  color: #5c55d9;
  background: #f8f8ff;
}

.chart-grid {
  background-image: linear-gradient(rgba(35, 39, 74, 0.08) 1px, transparent 1px);
}

.console-rows {
  border-color: rgba(35, 39, 74, 0.08);
}

.console-rows > div {
  border-color: rgba(35, 39, 74, 0.07);
}

.console-rows strong {
  color: #343a55;
}

.console-rows em {
  color: #0ba88d;
}

.hero-footnote {
  color: #7c839a;
}

.capability-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 2%, rgba(75, 215, 255, 0.2), transparent 24%),
    linear-gradient(145deg, #f6f5ff, #f8fbff 72%);
}

.capability-section::before {
  background: radial-gradient(circle, rgba(117, 91, 255, 0.15), transparent 65%);
}

.section-index.inverse {
  color: #737a94;
}

.section-heading p {
  color: #697089;
}

.capability-card {
  border-color: rgba(55, 59, 101, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 52px rgba(68, 62, 127, 0.07);
}

.capability-card:hover {
  border-color: rgba(99, 91, 255, 0.28);
  background: white;
  box-shadow: 0 24px 65px rgba(76, 66, 150, 0.13);
}

.capability-card > span,
.capability-card p,
.capability-card > em {
  color: #727a92;
}

.capability-card h3 {
  color: #202541;
}

.governance-banner {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(108, 91, 255, 0.22), transparent 34%),
    radial-gradient(circle at 85% 90%, rgba(68, 218, 255, 0.2), transparent 29%),
    linear-gradient(130deg, #f4f1ff, #eefbff);
}

.governance-banner::before {
  opacity: 0.35;
  background-image: linear-gradient(120deg, transparent 49.8%, rgba(77, 80, 126, 0.11) 50%, transparent 50.2%);
}

.governance-glow {
  background: radial-gradient(circle, rgba(105, 89, 255, 0.18), transparent 65%);
}

.governance-banner .eyebrow.light {
  color: #686f89;
}

.governance-inner h2 span {
  background: linear-gradient(90deg, #635bff, #1bbbd5);
  -webkit-background-clip: text;
  background-clip: text;
}

.governance-points,
.governance-points a {
  border-color: rgba(35, 39, 74, 0.11);
}

.governance-points a > span {
  color: #7c839c;
}

.governance-points small {
  color: #747b94;
}

.governance-points em {
  color: var(--blue);
}

.closing-cta {
  background:
    radial-gradient(circle at 86% 12%, rgba(86, 230, 255, 0.45), transparent 28%),
    radial-gradient(circle at 18% 90%, rgba(255, 168, 103, 0.22), transparent 30%),
    linear-gradient(125deg, #5648e9, #7755ed 55%, #277dc4);
}

.closing-lines {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.055), 0 0 0 160px rgba(255, 255, 255, 0.025);
}

.closing-inner h2 span {
  color: white;
  background: none;
  -webkit-text-fill-color: initial;
}

.inner-hero,
.inner-hero.accent-1,
.inner-hero.accent-2,
.inner-hero.accent-3 {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 22%, rgba(58, 211, 241, 0.22), transparent 26%),
    radial-gradient(circle at 27% 0%, rgba(113, 91, 255, 0.2), transparent 30%),
    linear-gradient(132deg, #ffffff, #f7f5ff 60%, #effbff);
}

.inner-hero::after {
  border-color: rgba(99, 91, 255, 0.18);
  box-shadow: 0 0 0 90px rgba(105, 89, 255, 0.03), 0 0 0 180px rgba(50, 205, 233, 0.02);
}

.inner-glow {
  background: radial-gradient(circle, rgba(96, 91, 255, 0.15), transparent 66%);
}

.inner-hero .eyebrow.light {
  color: #666e88;
}

.inner-hero .eyebrow.light i {
  background: var(--blue);
}

.inner-hero-content > p {
  color: #626a82;
}

.hero-page-number {
  color: rgba(99, 91, 255, 0.13);
}

.page-quote {
  background:
    radial-gradient(circle at 82% 20%, rgba(83, 225, 255, 0.4), transparent 28%),
    linear-gradient(125deg, #635bff, #7b64e9 60%, #2b91c3);
}

.quote-orb {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.08), 0 0 0 70px rgba(255, 255, 255, 0.04);
}

.page-quote > span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-top: 1px solid rgba(64, 68, 112, 0.09);
  background:
    radial-gradient(circle at 8% 0%, rgba(111, 91, 255, 0.12), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(67, 218, 255, 0.12), transparent 27%),
    linear-gradient(145deg, #fafaff, #f1f4ff);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, calc(100% - 64px));
  height: 2px;
  background: linear-gradient(90deg, transparent, #635bff 35%, #4fddff 70%, transparent);
  transform: translateX(-50%);
  opacity: 0.55;
}

.site-footer .brand-copy strong {
  color: #1b203d;
}

.site-footer .brand-copy small {
  color: #707892;
  opacity: 1;
}

.footer-top > div:first-child p {
  color: #656d87;
}

.footer-column strong {
  color: #6e63df;
}

.footer-column a {
  color: #515971;
}

.footer-column a:hover {
  color: #635bff;
}

.footer-notice {
  border-color: rgba(46, 50, 88, 0.1);
}

.footer-notice p {
  color: #747b92;
}

.footer-bottom {
  color: #69718a;
}

.footer-bottom a {
  color: #5148cb;
}

@media (max-width: 860px) {
  .mobile-menu {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
  }

  .mobile-menu section > p {
    color: #7a819a;
  }

  .mobile-menu section a {
    color: #303650;
    border-color: rgba(35, 39, 74, 0.09);
  }
}

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