:root {
  --ink: #061327;
  --ink-2: #0b2244;
  --navy: #123968;
  --gold: #d5aa47;
  --gold-2: #f1d47e;
  --mist: #edf4f7;
  --paper: #f8fbfc;
  --white: #ffffff;
  --green: #2f6f64;
  --coral: #b65445;
  --violet: #574f9c;
  --sky: #6ba8bf;
  --shadow: 0 28px 90px rgba(6, 19, 39, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(213, 170, 71, 0.2), transparent 25rem),
    radial-gradient(circle at 90% 12%, rgba(107, 168, 191, 0.22), transparent 26rem),
    radial-gradient(circle at 40% 88%, rgba(47, 111, 100, 0.16), transparent 30rem),
    linear-gradient(135deg, #f9fcfd 0%, #e8f0f4 48%, #f8fbfc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  width: min(1200px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 9px 10px;
  border: 1px solid rgba(18, 57, 104, 0.14);
  border-radius: 8px;
  background: rgba(248, 251, 252, 0.82);
  box-shadow: 0 18px 60px rgba(6, 19, 39, 0.12);
  backdrop-filter: blur(22px);
}

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

.brand img {
  width: 92px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 1.8vw, 1.65rem);
  color: rgba(6, 19, 39, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(18, 57, 104, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-action {
  padding: 0 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--navy));
}

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

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.9fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: clamp(3.2rem, 7vw, 6.5rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: clamp(3.1rem, 7.4vw, 6.6rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 4.05rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.hero-lede,
.section-intro p,
.split-copy p,
.services-copy p,
.mandate-copy p,
.contact-section p {
  color: rgba(6, 19, 39, 0.7);
  font-size: clamp(1.04rem, 1.65vw, 1.22rem);
}

.hero-lede {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 44px rgba(213, 170, 71, 0.34);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(18, 57, 104, 0.18);
  background: rgba(255, 255, 255, 0.64);
}

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

.globe-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.globe {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 212, 126, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(241, 212, 126, 0.34), transparent 18%),
    radial-gradient(circle at 56% 60%, rgba(107, 168, 191, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(18, 57, 104, 0.95), rgba(6, 19, 39, 0.98));
  box-shadow: var(--shadow), inset -34px -26px 70px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transform-style: preserve-3d;
}

.globe-grid {
  position: absolute;
  inset: -5%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(255, 255, 255, 0.13) 37px 38px),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(255, 255, 255, 0.1) 37px 38px);
  mask-image: radial-gradient(circle, #000 64%, transparent 66%);
  opacity: 0.82;
}

.globe-grid::before,
.globe-grid::after {
  content: "";
  position: absolute;
  inset: 9% 22%;
  border: 1px solid rgba(241, 212, 126, 0.28);
  border-radius: 50%;
}

.globe-grid::after {
  inset: 22% 9%;
}

.globe-light {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.32), transparent 24%);
  mix-blend-mode: screen;
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: 52%;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
}

.ring {
  position: absolute;
  border: 1px solid rgba(213, 170, 71, 0.42);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.ring-one {
  inset: 7%;
  transform: rotateX(64deg) rotateZ(-18deg);
}

.ring-two {
  inset: 15%;
  border-color: rgba(107, 168, 191, 0.5);
  transform: rotateX(72deg) rotateZ(42deg);
}

.ring-three {
  inset: 1%;
  border-color: rgba(255, 255, 255, 0.28);
  transform: rotateY(72deg) rotateZ(18deg);
}

.node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(6, 19, 39, 0.78);
  box-shadow: 0 18px 50px rgba(6, 19, 39, 0.24);
  font-size: 0.78rem;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.node-one {
  top: 7%;
  left: 14%;
}

.node-two {
  top: 18%;
  right: -1%;
}

.node-three {
  bottom: 25%;
  left: -2%;
}

.node-four {
  right: 4%;
  bottom: 9%;
}

.node-five {
  left: 38%;
  bottom: -2%;
}

.ticker-band {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(18, 57, 104, 0.1);
  background: rgba(255, 255, 255, 0.52);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  color: rgba(6, 19, 39, 0.68);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ticker-track span {
  white-space: nowrap;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1200px, calc(100% - 32px));
  margin: clamp(4rem, 8vw, 6.5rem) auto;
  border: 1px solid rgba(18, 57, 104, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 70px rgba(6, 19, 39, 0.09);
}

.metric-band div {
  min-height: 132px;
  padding: 1.35rem;
  border-right: 1px solid rgba(18, 57, 104, 0.1);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.metric-band span {
  display: block;
  max-width: 14ch;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 1.05;
}

.section-intro,
.industry-grid,
.services-section,
.split-section,
.mandate-section,
.contact-section,
.portfolio-grid {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.section-intro {
  max-width: 930px;
  margin-bottom: 2rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.industry-card,
.portfolio-card,
.service-item,
.process-item {
  border: 1px solid rgba(18, 57, 104, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(237, 244, 247, 0.72)),
    radial-gradient(circle at 50% 0%, rgba(213, 170, 71, 0.16), transparent 68%);
  box-shadow: 0 18px 60px rgba(6, 19, 39, 0.08);
}

.industry-card {
  min-height: 270px;
  padding: 1.3rem;
}

.industry-card span,
.service-item span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  padding: 0 0.72rem;
  color: var(--ink);
  background: rgba(213, 170, 71, 0.22);
  font-size: 0.76rem;
  font-weight: 950;
}

.industry-card p,
.portfolio-card p,
.process-item p,
.service-item p {
  margin-bottom: 0;
  color: rgba(6, 19, 39, 0.68);
}

.services-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(6, 19, 39, 0.98), rgba(18, 57, 104, 0.94)),
    radial-gradient(circle at 24% 18%, rgba(213, 170, 71, 0.25), transparent 38%);
  box-shadow: var(--shadow);
}

.services-copy h2,
.services-copy p {
  color: var(--white);
}

.services-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-item {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-item h3,
.service-item p {
  color: var(--white);
}

.service-item p {
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.portfolio-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
}

.portfolio-card.featured {
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(18, 57, 104, 0.96), rgba(6, 19, 39, 0.98)),
    radial-gradient(circle at 20% 12%, rgba(241, 212, 126, 0.2), transparent 54%);
}

.portfolio-card.featured h3,
.portfolio-card.featured p {
  color: var(--white);
}

.portfolio-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.card-index {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.split-copy {
  position: sticky;
  top: 120px;
}

.process-stack {
  display: grid;
  gap: 1rem;
}

.process-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
}

.process-item span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  font-weight: 950;
}

.mandate-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 19, 39, 0.98), rgba(18, 57, 104, 0.95)),
    radial-gradient(circle at 20% 18%, rgba(213, 170, 71, 0.2), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mandate-visual {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px);
}

.mandate-visual img {
  width: min(270px, 72%);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.35));
}

.mandate-owner {
  font-weight: 700;
  color: var(--gold, #d5aa47);
  border-left: 2px solid rgba(213, 170, 71, 0.6);
  padding-left: 0.8rem;
}

.mandate-copy h2,
.mandate-copy p {
  color: var(--white);
}

.mandate-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.mandate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.mandate-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(241, 212, 126, 0.22);
  border-radius: 8px;
  padding: 0 0.85rem;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  font-weight: 850;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(18, 57, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 70px rgba(6, 19, 39, 0.09);
}

.contact-section h2 {
  max-width: 800px;
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.contact-section p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  color: rgba(6, 19, 39, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: no-preference) {
  .globe {
    animation: globePulse 7s ease-in-out infinite;
  }

  .globe-grid {
    animation: gridSlide 11s linear infinite;
  }

  .ring-one {
    animation: rotateRing 18s linear infinite;
  }

  .ring-two {
    animation: rotateRingReverse 25s linear infinite;
  }

  .ring-three {
    animation: rotateRing 32s linear infinite;
  }

  .node {
    animation: float 6s ease-in-out infinite;
  }

  .ticker-track {
    animation: tickerMove 28s linear infinite;
  }
}

@keyframes globePulse {
  50% {
    transform: translateY(-6px) rotateX(3deg) rotateY(-4deg);
  }
}

@keyframes gridSlide {
  to {
    transform: translateX(38px);
  }
}

@keyframes rotateRing {
  to {
    rotate: 360deg;
  }
}

@keyframes rotateRingReverse {
  to {
    rotate: -360deg;
  }
}

@keyframes float {
  50% {
    translate: 0 -9px;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  .site-header .nav-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    border: 1px solid rgba(18, 57, 104, 0.13);
    border-radius: 8px;
    padding: 0.4rem;
    background: rgba(248, 251, 252, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 1rem;
  }

  .main-nav a:hover {
    background: rgba(213, 170, 71, 0.14);
  }

  body.menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-section,
  .services-section,
  .split-section,
  .mandate-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

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

  .industry-grid,
  .portfolio-grid,
  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-band div:nth-child(2) {
    border-right: 0;
  }

  .metric-band div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(18, 57, 104, 0.1);
  }

  .split-copy {
    position: static;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, 1200px);
    margin-top: 10px;
    padding: 8px;
  }

  .brand img {
    width: 70px;
    height: 50px;
  }

  .site-header .nav-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.73rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-section,
  .metric-band,
  .section-intro,
  .industry-grid,
  .portfolio-grid,
  .services-section,
  .split-section,
  .mandate-section,
  .contact-section,
  .site-footer {
    width: min(100% - 20px, 1200px);
  }

  .main-nav {
    top: 74px;
    left: 10px;
    right: 10px;
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

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

  .globe-stage {
    width: min(100%, 390px);
  }

  .node {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.66rem;
  }

  .node-five {
    display: none;
  }

  .industry-grid,
  .portfolio-grid,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .metric-band div,
  .metric-band div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 57, 104, 0.1);
  }

  .metric-band div:last-child {
    border-bottom: 0;
  }

  .industry-card,
  .portfolio-card {
    min-height: 230px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .services-section,
  .mandate-section {
    padding: 1rem;
  }

  .mandate-visual {
    min-height: 250px;
  }

  .site-footer {
    flex-direction: column;
  }
}
