:root {
  --black: #050505;
  --charcoal: #111113;
  --panel: #18181b;
  --panel-soft: #222226;
  --grey: #a7a7aa;
  --light-grey: #f1f1f1;
  --white: #ffffff;
  --red: #e60000;
  --red-dark: #9d0805;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(5, 5, 5, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--black));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  margin-top: 2px;
  color: var(--grey);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: #dedede;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
}

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

.section-dark,
.section-charcoal,
.section-light {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(225, 6, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #050505 0%, #151517 58%, #050505 100%);
}

.home-banner {
    overflow: hidden;
}
.home-banner .bgVideo{
  position: absolute;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  /* display: none; */
}
.home-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
  linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.3),
    rgba(5, 5, 5, 0.6)
  ),
  linear-gradient(
    135deg,
    transparent 0%,
    rgba(5, 5, 5, 0.35) 50%,
    rgba(5, 5, 5, 0.5) 100%
  );
    pointer-events: none;
  }
.section-charcoal {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--charcoal);
  background-size: 54px 54px;
}

.section-light {
  color: var(--black);
  background:
    radial-gradient(circle at 15% 20%, rgba(225, 6, 0, 0.12), transparent 28%),
    var(--light-grey);
}

.hero {
  min-height: 100svh;
  padding: 140px clamp(20px, 6vw, 86px) 76px;
  display: grid;
  align-items: center;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(225, 6, 0, 0.42) 42.5%, transparent 43%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.09) 48.5%, transparent 49%);
  opacity: 0.38;
  pointer-events: none;
}

.hero-grid,
.page-layout,
.contact-grid,
.legacy {
  /* width: min(1180px, 100%); */
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 16x;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 54px);
  letter-spacing: 0;
  font-weight: 600;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.7vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
}

p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.75;
}

.section-light p {
  color: #4c4c4d;
}

.hero-lead {
  max-width: 660px;
  font-size: clamp(18px, 2vw, 22px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 36px rgba(225, 6, 0, 0.26);
}

.btn-primary:hover {
  background: #ff1711;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  border-color: var(--red);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media.compact {
  min-height: 480px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.74)),
    linear-gradient(135deg, rgba(225, 6, 0, 0.2), transparent 45%);
  pointer-events: none;
}

.hero-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08) brightness(0.86);
  transform: scale(1.02);
}

.hero-media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-media-caption span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-media-caption strong {
  color: var(--white);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.2;
}

.parent-card {
  position: relative;
  z-index: 2;
  width: min(320px, 84vw);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.parent-card img {
  border-radius: 8px;
}

.parent-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-ring {
  position: absolute;
  width: min(520px, 92vw);
  aspect-ratio: 1;
  border: 1px solid rgba(225, 6, 0, 0.44);
  border-radius: 50%;
  animation: rotateSlow 24s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}

.orbit-ring::after {
  inset: 92px;
  border-color: rgba(225, 6, 0, 0.22);
}

.orbit-node {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(17, 17, 19, 0.88);
  border: 1px solid rgba(225, 6, 0, 0.46);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

.node-1 {
  top: 58px;
  left: 36px;
}

.node-2 {
  top: 96px;
  right: 10px;
}

.node-3 {
  bottom: 100px;
  right: 0;
}

.node-4 {
  bottom: 50px;
  left: 74px;
}

.node-5 {
  top: 46%;
  left: -12px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat {
  min-height: 130px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.stat span {
  display: block;
  max-width: 180px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 6vw, 86px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.vertical-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vertical-card,
.mini-card,
.feature-panel,
.project-card,
.structure-panel,
.tech-panel,
.impact-panel,
.placeholder-band {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.vertical-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.vertical-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 55%, rgba(225, 6, 0, 0.24) 55.4%, transparent 56%);
  opacity: 0.5;
}

.vertical-card:hover {
  transform: translateY(-10px);
  border-color: rgba(225, 6, 0, 0.72);
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.16), rgba(255, 255, 255, 0.035));
}

.card-index {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.vertical-card h3 {
  font-size: 20px;
}

.vertical-card p {
  font-size: 14px;
  line-height: 1.65;
}

.vertical-card a {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vertical-card a::after {
  content: " ->";
  color: var(--red);
}

.legacy {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 6vw, 86px);
}

.about-group-section {
  padding-top: clamp(78px, 10vw, 130px);
  padding-bottom: clamp(78px, 10vw, 130px);
}

.about-group-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.quote-line {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 500;
  opacity: .8;
  font-style: italic;
}

.about-group-copy {
  display: grid;
  gap: 18px;
}

.about-group-copy p {
  margin: 0;
}

.legacy-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 360px;
}

.legacy-panel img {
  width: min(520px, 100%);
  max-height: 260px;
  object-fit: contain;
  object-position: top;
}

.ng-home-wordmark {
  display: block;
  color: var(--black);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.legacy-cta {
  margin-top: 18px;
}

.legacy-media {
  display: grid;
  gap: 18px;
}

.legacy-media img,
.logo-row img {
  padding: 18px;
  background: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legacy-media img:hover,
.logo-row img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(225, 6, 0, 0.2);
}

.vertical-page {
  scroll-margin-top: 72px;
}

.page-hero {
  min-height: 82svh;
  padding: 142px clamp(20px, 6vw, 86px) 78px;
  display: grid;
  align-items: center;
}

.page-hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.ng-group-hero {
  position: relative;
  min-height: 82svh;
  padding-top: 136px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(9, 0, 8, 0.72) 74%, #130012 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.1) 58%, rgba(5, 5, 5, 0.34) 100%),
    url("assets/ng-hero.jpg") center / cover no-repeat;
  overflow: hidden;
}



.ng-group-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.78fr);
}

.ng-group-hero h1 {
  font-size: clamp(52px, 6vw, 78px);
}

.ng-group-hero .hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.ng-hero-logo {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  min-height: 360px;
  text-align: center;
}

.ng-hero-logo img {
  width: min(300px, 62vw);
  max-height: 220px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.ng-hero-logo strong {
  color: var(--white);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.46);
}

.visual-stack {
  position: relative;
  min-height: 420px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.book-spine {
  position: absolute;
  bottom: 34px;
  width: 76px;
  border-radius: 8px 8px 2px 2px;
  transform: skewY(-7deg);
}

.book-spine.red {
  left: 42px;
  height: 260px;
  background: var(--red);
}

.book-spine.light {
  left: 135px;
  height: 330px;
  background: var(--light-grey);
}

.book-spine.dark {
  left: 230px;
  height: 220px;
  background: #2a2a2d;
  border: 1px solid var(--border);
}

.media-tile {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 18px 0 0 auto;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(225, 6, 0, 0.44);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.developer-logo-card,
.global-logo-card {
  padding: clamp(24px, 4vw, 42px);
  /* background: rgba(255, 255, 255, 0.96); */
  border: 0px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  /* box-shadow: var(--shadow); */
}

.developer-logo-card img,
.global-logo-card img {
  border-radius: 8px;
}

.global-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(225, 6, 0, 0.2), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #050505 0%, #171719 100%);
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.global-hero-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.global-hero-card img {
  width: min(360px, 100%);
  margin: 0 auto 30px;
  display: block;
  border-radius: 8px;
}

.capital-platforms {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.capital-platforms span {
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(225, 6, 0, 0.34);
  border-radius: 8px;
  background: rgba(225, 6, 0, 0.1);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.capital-platforms small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.global-hero-metrics {
  display: grid;
  gap: 12px;
}

.global-hero-metrics span {
  padding: 16px;
  color: var(--grey);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.global-hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1.05;
}

.fintech-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 6, 0, 0.2), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #050505 0%, #151518 100%);
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.fintech-orbit {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(225, 6, 0, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fintech-orbit img {
  position: relative;
  z-index: 2;
  width: min(360px, 74%);
  filter: drop-shadow(0 20px 46px rgba(0, 0, 0, 0.42));
}

.fintech-orbit span {
  position: absolute;
  border: 1px solid rgba(225, 6, 0, 0.46);
  border-radius: 50%;
  animation: pulseNode 4.8s ease-in-out infinite;
}

.fintech-orbit span:nth-of-type(1) {
  width: 84%;
  aspect-ratio: 1;
}

.fintech-orbit span:nth-of-type(2) {
  width: 62%;
  aspect-ratio: 1;
  animation-delay: 0.8s;
}

.fintech-orbit span:nth-of-type(3) {
  width: 36%;
  aspect-ratio: 1;
  animation-delay: 1.5s;
}

.fintech-orbit span:nth-of-type(4) {
  width: 72%;
  height: 1px;
  border-radius: 0;
  background: rgba(225, 6, 0, 0.32);
  transform: rotate(-28deg);
}

.realty-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(225, 6, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #050505 0%, #171719 100%);
}

.innovations-hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(225, 6, 0, 0.22), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #050505 0%, #181819 100%);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.innovation-visual {
  position: relative;
  min-height: 520px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.innovation-visual::before {
  content: "";
  position: absolute;
  inset: 26px 26px auto auto;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 6, 0, 0.42);
  border-radius: 50%;
  opacity: 0.65;
}

.innovation-logo {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  margin: 0 auto 28px;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.34));
}

.innovation-office {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.innovation-impact .content-band {
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.07);
}

.deep-feature {
  background:
    radial-gradient(circle at 82% 20%, rgba(225, 6, 0, 0.18), transparent 28%),
    #050505;
}

.deep-feature .leader-profile-grid {
  align-items: start;
}

.deep-feature .leader-profile-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.78;
}

.innovation-directors {
  margin-top: clamp(96px, 10vw, 140px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.innovation-directors .director-row {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.92);
}

.innovation-directors .director-photo img {
  object-position: center top;
}

.featured-works {
  margin-top: 52px;
}

.book-grid {
  width: min(1180px, 100%);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.book-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.book-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.52);
}

.book-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.book-card h3 {
  margin-bottom: 10px;
}

.book-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

.book-card .btn {
  width: 100%;
  justify-content: center;
}

.fintech-stack-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fintech-stack-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.08), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.fintech-stack-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.42);
}

.fintech-stack-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.fintech-stack-card p {
  font-size: 15px;
  line-height: 1.65;
}

.fintech-grid-section,
.fintech-leadership {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101012;
  background-size: 58px 58px;
}

.fintech-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fintech-dashboard span {
  min-height: 120px;
  padding: 20px;
  display: grid;
  align-content: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fintech-dashboard strong {
  display: block;
  color: var(--white);
  font-size: 32px;
}

.fintech-process .process-step {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #101012;
  border-color: rgba(225, 6, 0, 0.38);
  box-shadow: none;
}

.fintech-process .process-step h3,
.fintech-process .process-step p {
  color: var(--white);
}

.director-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.director-bullets li {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 750;
}

.fintech-usecases {
  background:
    radial-gradient(circle at 12% 20%, rgba(225, 6, 0, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101012;
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.fintech-usecase-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fintech-usecase-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.fintech-usecase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.22), transparent 42%),
    linear-gradient(90deg, transparent 0 74%, rgba(225, 6, 0, 0.16) 74% 75%, transparent 75%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fintech-usecase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.34);
}

.fintech-usecase-card:hover::before {
  opacity: 1;
}

.fintech-usecase-card span,
.fintech-usecase-card small,
.fintech-usecase-card h3,
.fintech-usecase-card p {
  position: relative;
  z-index: 1;
}

.fintech-usecase-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(225, 6, 0, 0.58);
  border-radius: 50%;
  background: rgba(225, 6, 0, 0.18);
  font-size: 22px;
  font-weight: 700;
}

.fintech-usecase-card small {
  width: max-content;
  max-width: 100%;
  margin: 42px 0 12px;
  padding: 8px 10px;
  color: #ffffff;
  border: 1px solid rgba(225, 6, 0, 0.34);
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.09);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fintech-usecase-card h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.fintech-usecase-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.platform-grid.detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.global-differentiators.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ng-legacy-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101012;
  background-size: 58px 58px;
}

.ng-global-brand {
  width: min(560px, 100%);
  margin: 0 auto clamp(42px, 7vw, 74px);
  text-align: center;
}

.ng-global-brand img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.38));
}

.global-leadership {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101012;
  background-size: 58px 58px;
}

.page-layout.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.page-layout.reverse .page-copy {
  order: 2;
}

.feature-panel,
.project-card,
.structure-panel,
.tech-panel,
.impact-panel {
  padding: clamp(24px, 4vw, 42px);
}

.tick-list,
.impact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  color: #dedede;
  border-bottom: 1px solid var(--border);
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}

.mini-grid {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 28px;
}

.mini-card p {
  font-size: 15px;
}

.detail-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.detail-card {
  display: block;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.section-light .detail-card {
  background: var(--white);
  border-color: rgba(5, 5, 5, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.56);
}

.detail-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.detail-card p {
  font-size: 15px;
  line-height: 1.65;
}

.content-band {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.section-light .content-band {
  background: var(--white);
  border-color: rgba(5, 5, 5, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.metric-list span {
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.metric-list strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.logo-row {
  width: min(1180px, 100%);
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.logo-row.single {
  width: min(520px, 100%);
  grid-template-columns: 1fr;
}

.project-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.project-stats span {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--grey);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-stats strong {
  display: block;
  color: var(--white);
  font-size: 30px;
}

.placeholder-band {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.project-media-band {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brochure-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(225, 6, 0, 0.22);
}

.brochure-cover::after {
  content: "Open Brochure";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brochure-cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  filter: contrast(1.06) saturate(1.08);
  transition: transform 0.35s ease;
}

.brochure-cover:hover img {
  transform: scale(1.04);
}

.line-building {
  min-height: 260px;
  border: 1px solid rgba(225, 6, 0, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 10%, rgba(225, 6, 0, 0.46) 10.4%, transparent 10.8%),
    linear-gradient(0deg, transparent 18%, rgba(255, 255, 255, 0.1) 18.4%, transparent 18.8%),
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), transparent 60%),
    #101012;
  background-size: 46px 100%, 100% 46px, auto, auto;
}

.structure-panel {
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.branch {
  position: relative;
  padding: 20px;
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.branch::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--red);
}

.branch strong,
.branch span {
  display: block;
}

.branch span {
  margin-top: 8px;
  color: var(--grey);
}

.process-grid {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.process-grid.expanded {
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(225, 6, 0, 0.38);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.tech-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: end;
  overflow: hidden;
}

.tech-panel span {
  position: absolute;
  border: 1px solid rgba(225, 6, 0, 0.5);
  border-radius: 50%;
  animation: pulseNode 4s ease-in-out infinite;
}

.tech-panel span:nth-child(1) {
  width: 90px;
  height: 90px;
  left: 34px;
  top: 34px;
}

.tech-panel span:nth-child(2) {
  width: 140px;
  height: 140px;
  right: 42px;
  top: 54px;
  animation-delay: 0.7s;
}

.tech-panel span:nth-child(3) {
  width: 66px;
  height: 66px;
  left: 46%;
  top: 28%;
  animation-delay: 1.3s;
}

.tech-panel span:nth-child(4) {
  inset: 34px;
  border-radius: 8px;
  opacity: 0.5;
}

.impact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.impact-list span {
  padding: 12px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.leadership-section {
  position: relative;
}

.leadership-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.leader-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 520px;
  overflow: hidden;
  background: #0d0d0f;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.leader-card.wide {
  grid-column: span 2;
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.22) 40%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), transparent 46%);
  pointer-events: none;
}

.leader-photo {
  position: absolute;
  inset: 0;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.12) contrast(1.08) saturate(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.12) saturate(1.1);
}

.leader-link {
  color: inherit;
}

.leader-link .leader-copy::after {
  content: "View Profile";
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 13px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(225, 6, 0, 0.34);
}

.leader-copy {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.leader-copy h3 {
  margin-bottom: 10px;
}

.leader-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.leader-profile-hero {
  min-height: 86svh;
  padding: 140px clamp(20px, 6vw, 86px) 78px;
  display: grid;
  align-items: center;
}

.leader-profile-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.leader-profile-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(225, 6, 0, 0.26);
}

.leader-profile-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(1.04);
}

.leader-profile-copy h1 {
  margin-bottom: 24px;
}

.profile-content {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.profile-content p {
  color: #3d3d3f;
  font-size: clamp(13px, 1.7vw, 20px);
  line-height: 1.82;
}

.profile-content p:last-child {
  margin-bottom: 0;
}

.profile-content h2,
.profile-content h3 {
  color: var(--black);
}

.profile-content h3 {
  margin-top: 38px;
}

.profile-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.profile-highlight-grid div {
  padding: 20px;
  color: var(--white);
  background: var(--black);
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.profile-highlight-grid strong,
.profile-highlight-grid span {
  display: block;
}

.profile-highlight-grid strong {
  color: var(--red);
  font-size: 32px;
  line-height: 1;
}

.profile-highlight-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.profile-list li {
  padding: 13px 16px;
  color: #343438;
  background: #f2f2f2;
  border-left: 3px solid var(--red);
  border-radius: 8px;
  font-weight: 750;
}

.profile-quote {
  color: var(--black);
  border-left: 4px solid var(--red);
  padding-left: 22px;
}

.ng-profile-content {
  width: min(1100px, 100%);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.055), transparent 36%),
    var(--white);
}

.ng-profile-section {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.035), rgba(255, 255, 255, 0.95)),
    #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ng-profile-section:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.ng-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.profile-content .ng-title h2,
.profile-content .ng-title h3 {
  margin: 0;
}

.title-icon {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 6, 0, 0.34);
  border-radius: 8px;
  background: #101012;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.title-icon::before,
.title-icon::after {
  content: "";
  position: absolute;
}

.icon-corporate::before {
  width: 22px;
  height: 28px;
  border: 2px solid var(--red);
  background:
    linear-gradient(90deg, transparent 7px, rgba(255, 255, 255, 0.7) 7px 9px, transparent 9px 15px, rgba(255, 255, 255, 0.7) 15px 17px, transparent 17px),
    linear-gradient(transparent 7px, rgba(255, 255, 255, 0.7) 7px 9px, transparent 9px 17px, rgba(255, 255, 255, 0.7) 17px 19px, transparent 19px);
}

.icon-estate::before {
  width: 26px;
  height: 22px;
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.icon-estate::after {
  width: 22px;
  height: 22px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  transform: translateY(-7px) rotate(45deg);
}

.icon-core::before {
  width: 26px;
  height: 26px;
  background:
    radial-gradient(circle, var(--red) 0 3px, transparent 4px) 0 0 / 13px 13px,
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 3px, transparent 4px) 6px 6px / 13px 13px;
}

.icon-infra::before {
  width: 30px;
  height: 18px;
  border-bottom: 3px solid var(--red);
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  border-right: 2px solid rgba(255, 255, 255, 0.75);
}

.icon-infra::after {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform: rotate(-28deg);
}

.icon-park::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--red);
  border-radius: 24px 0 24px 0;
  transform: rotate(-45deg);
}

.icon-park::after {
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(6px);
}

.icon-clients::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 16px 0 0 -2px #101012, 16px 0 0 0 rgba(255, 255, 255, 0.78);
}

.icon-clients::after {
  width: 30px;
  height: 14px;
  border: 2px solid var(--red);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: translateY(10px);
}

.icon-projects::before {
  width: 28px;
  height: 22px;
  border: 2px solid var(--red);
}

.icon-projects::after {
  width: 14px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: rotate(-45deg);
}

.icon-leadership::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--red);
  border-radius: 50%;
  transform: translateY(-8px);
}

.icon-leadership::after {
  width: 28px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  transform: translateY(12px);
}

.icon-society::before {
  width: 22px;
  height: 22px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.icon-society::after {
  width: 30px;
  height: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.78);
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  transform: translateY(10px);
}

.icon-message::before {
  content: "“";
  position: static;
  color: var(--red);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.ng-message-card {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.18), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101012;
  background-size: auto, 46px 46px, 46px 46px, auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.ng-message-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  filter: contrast(1.06) saturate(1.04);
}

.ng-message-card .ng-title h3,
.ng-message-card .profile-quote {
  color: var(--white);
}

.ng-message-card .profile-quote {
  margin: 0;
  border-left-color: var(--red);
  font-size: clamp(25px, 3vw, 42px);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.ng-signature {
  display: block;
  width: min(200px, 88%);
  margin: 24px 0 0;
  filter: brightness(0) invert(1) contrast(1.45) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
  opacity: 0.92;
}

.ng-logo-section {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.gallops-logo-panel {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.gallops-logo-panel img {
  width: min(520px, 100%);
  max-height: 300px;
  object-fit: contain;
  filter: contrast(1.08) saturate(1.04);
}

.doc-content h2:first-child {
  margin-top: 0;
}

.doc-content h2,
.doc-content h3 {
  scroll-margin-top: 90px;
}

.media-gallery,
.team-photo-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.media-gallery {
  grid-template-columns: repeat(5, 1fr);
}

.media-gallery img,
.team-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.media-gallery img {
  aspect-ratio: 4 / 3;
}

.media-gallery img:first-child {
  grid-column: span 2;
}

.team-photo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.team-photo-grid img {
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.team-photo-grid figcaption {
  padding: 14px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.directors-list {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.director-row {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding:30px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);

}
/* .director-row::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ffffff0f;
} */


.director-photo img {
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  filter: contrast(1.05) saturate(1.03);
}

.director-copy h3 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  color: var(--white);
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 450;
  letter-spacing: 0;
}

.director-copy h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(225, 6, 0, 0.68);
}

.director-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.director-copy p:last-child {
  margin-bottom: 0;
}

.director-copy strong {
  color: var(--white);
}

.project-card > img {
  width: min(260px, 100%);
  margin: 0 auto 22px;
  display: block;
  border-radius: 8px;
  background: var(--white);
}

.grandeur-showcase {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #101012;
  background-size: 54px 54px;
}

.grandeur-showcase .page-layout.reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.grandeur-showcase .page-copy h2 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
}

.grandeur-showcase .page-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.85;
}

.grandeur-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.grandeur-card .grandeur-logo {
  width: min(420px, 100%);
  margin: -12px auto 28px;
  background: transparent;
  border-radius: 0;
}

.grandeur-card h3 {
  margin-top: 18px;
}

.grandeur-card .project-stats span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.17);
}

.process-flow {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-flow h3{
  color: #000000;
}
.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.process-step span,
.sector-card::before {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-step span {
  display: block;
  margin-bottom: 36px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.65;
}

.bridge-model.page-layout {
  align-items: stretch;
}

.market-table-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.1);
}

.market-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.market-table th,
.market-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.market-table th {
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-table td {
  color: #353539;
  font-size: 14px;
  line-height: 1.5;
}

.market-table tbody tr:hover td {
  background: #f4f4f4;
}

.market-table td:first-child {
  color: var(--black);
  font-weight: 900;
}

.sector-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sector-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sector-card::before {
  content: "Target Sector";
  display: block;
  margin-bottom: 32px;
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.54);
}

.sector-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.contact {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 6vw, 86px);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 30px clamp(20px, 6vw, 86px);
  color: var(--grey);
  background: #020202;
  border-top: 1px solid var(--border);
}

.site-footer strong {
  color: var(--white);
  font-size: 26px;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--red);
}

.copyright-line {
  flex-basis: 100%;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reveal {
  /* opacity: 0; */
  /* transform: translateY(24px); */
  /* transition: opacity 0.7s ease, transform 0.7s ease; */
}

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

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .platform-grid.detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .global-differentiators.detail-grid,
  .process-flow,
  .sector-grid,
  .fintech-stack-grid,
  .fintech-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-gallery,
  .team-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .director-row {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--border);
    border-radius: 8px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--border);
  }

  .hero-grid,
  .page-layout,
  .page-layout.reverse,
  .page-hero-grid,
  .contact-grid,
  .legacy,
  .about-group-card,
  .leader-profile-grid,
  .placeholder-band,
  .project-media-band,
  .content-band,
  .director-row,
  .ng-message-card,
  .ng-logo-section {
    grid-template-columns: 1fr;
  }

  .directors-list {
    width: min(680px, 100%);
  }

  .director-photo img {
    max-width: 260px;
  }

  .page-layout.reverse .page-copy {
    order: 0;
  }

  .ng-group-hero {
    min-height: auto;
    background-position: center top;
  }

  .ng-hero-logo {
    min-height: 250px;
    justify-items: start;
    text-align: left;
  }

  .ng-hero-logo img {
    width: min(230px, 70vw);
  }

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

  .hero-media,
  .hero-media.compact {
    min-height: 420px;
  }

  .fintech-orbit {
    min-height: 420px;
  }

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

  .visual-stack {
    min-height: 360px;
  }

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

  .stats-strip,
  .mini-grid,
  .logo-row,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid.detail-grid {
    grid-template-columns: 1fr;
  }

  .global-differentiators.detail-grid,
  .process-flow,
  .sector-grid,
  .fintech-stack-grid,
  .fintech-usecase-grid,
  .fintech-dashboard,
  .director-bullets {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 70px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-media,
  .hero-media.compact {
    min-height: 360px;
  }

  .parent-card {
    width: min(250px, 88vw);
  }

  .orbit-ring {
    width: min(340px, 90vw);
  }

  .orbit-node {
    font-size: 10px;
  }

  .node-1 {
    top: 30px;
    left: 0;
  }

  .node-2 {
    top: 60px;
    right: 0;
  }

  .node-3 {
    right: 2px;
    bottom: 62px;
  }

  .node-4 {
    left: 28px;
    bottom: 36px;
  }

  .node-5 {
    left: -4px;
  }

  .vertical-grid,
  .process-grid,
  .process-grid.expanded,
  .detail-grid,
  .leadership-grid,
  .profile-highlight-grid,
  .media-gallery,
  .team-photo-grid,
  .project-stats {
    grid-template-columns: 1fr;
  }

  .media-gallery img:first-child {
    grid-column: auto;
  }

  .leader-card,
  .leader-card.wide {
    grid-column: auto;
    min-height: 480px;
  }

  .page-hero {
    padding-top: 112px;
  }
}
