:root {
  --ink: #f7f7f2;
  --muted: rgba(247, 247, 242, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(12, 15, 20, 0.62);
  --panel-strong: rgba(18, 21, 28, 0.84);
  --blue: #63d5ff;
  --green: #7df2b3;
  --coral: #ff8a63;
  --gold: #e7c66b;
  --bg: #080b10;
  font-family:
    Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 8%, rgba(99, 213, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(255, 138, 99, 0.17), transparent 26rem),
    linear-gradient(135deg, #07090d 0%, #12110c 52%, #071013 100%);
  overflow-x: hidden;
}

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

#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

main,
.site-header {
  position: relative;
  z-index: 2;
}

main {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.brand,
.desktop-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: 0 0 24px rgba(99, 213, 255, 0.26);
}

.brand-mark img {
  width: 54px;
  max-width: none;
  transform: translateY(1px);
}

.desktop-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.nav-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-button {
  padding: 0 18px;
  color: #071013;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 78px;
}

.hero-copy {
  position: relative;
  z-index: 6;
  grid-column: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.8vw, 90px);
  line-height: 1.03;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.08;
}

h3 {
  font-size: 22px;
  line-height: 1.35;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
}

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

.primary-action {
  padding: 0 24px;
  color: #071013;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 36px rgba(99, 213, 255, 0.22);
}

.secondary-action {
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-height: auto;
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 18% auto auto 14%;
  width: min(920px, 76vw);
  height: min(540px, 46vw);
  border-radius: 999px;
  pointer-events: none;
}

.hero-media::before {
  z-index: 1;
  border: 1px solid rgba(125, 242, 179, 0.18);
  box-shadow: inset 0 0 70px rgba(99, 213, 255, 0.08), 0 0 90px rgba(125, 242, 179, 0.08);
  transform: rotateX(66deg) rotateY(-14deg) rotateZ(-8deg);
  animation: orbitSpin 18s linear infinite;
}

.hero-media::after {
  z-index: 2;
  background: radial-gradient(circle, rgba(99, 213, 255, 0.22), rgba(125, 242, 179, 0.08) 42%, transparent 68%);
  filter: blur(18px);
  transform: translateZ(-140px);
}

.copy-orbit {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.orbit-card {
  position: absolute;
  width: 220px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035)), rgba(18, 21, 28, 0.34);
  backdrop-filter: blur(18px);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.36),
    inset 0 0 30px rgba(255, 255, 255, 0.07);
  transform-origin: center;
}

.holo-card {
  position: absolute;
  z-index: 3;
  width: min(380px, 72vw);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(18, 21, 28, 0.46);
  backdrop-filter: blur(22px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.holo-card span,
.orbit-card span,
.hero-dashboard span,
.timeline span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.holo-card strong,
.orbit-card strong {
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.08;
}

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

.orbit-card strong {
  font-size: 24px;
}

.card-one {
  top: 48%;
  left: 46%;
  color: #eafff2;
  animation: heroOrbitLarge 24s linear infinite;
}

.card-two {
  top: 48%;
  left: 46%;
  animation: heroOrbitLarge 24s linear infinite -4.8s;
}

.card-three {
  top: 48%;
  left: 46%;
  animation: heroOrbitLarge 24s linear infinite -9.6s;
}

.card-four {
  top: 48%;
  left: 46%;
  width: min(300px, 58vw);
  min-height: 132px;
  animation: heroOrbitLarge 24s linear infinite -14.4s;
}

.card-five {
  top: 48%;
  left: 46%;
  width: min(280px, 56vw);
  min-height: 120px;
  animation: heroOrbitLarge 24s linear infinite -19.2s;
}

.orbit-copy-one {
  top: 42%;
  left: 58%;
  opacity: 0.34;
  animation: copyOrbitLarge 24s linear infinite -2.4s;
}

.orbit-copy-two {
  top: 42%;
  left: 58%;
  opacity: 0.34;
  animation: copyOrbitLarge 24s linear infinite -8.4s;
}

.orbit-copy-three {
  top: 42%;
  left: 58%;
  opacity: 0.28;
  animation: copyOrbitLarge 24s linear infinite -14.4s;
}

.orbit-copy-four {
  top: 42%;
  left: 58%;
  opacity: 0.38;
  animation: copyOrbitLarge 24s linear infinite -20.4s;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(125, 242, 179, 0.34);
  border-radius: 50%;
  transform: rotateX(68deg) rotateY(-18deg);
  animation: orbitSpin 12s linear infinite;
}

.orbit-a {
  top: 22%;
  left: 8%;
  width: min(780px, 66vw);
  height: min(460px, 40vw);
}

.orbit-b {
  left: 20%;
  bottom: 18%;
  width: min(620px, 54vw);
  height: min(360px, 34vw);
  border-color: rgba(255, 138, 99, 0.28);
  animation-duration: 18s;
}

.hero-dashboard {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 5;
  width: min(420px, 92vw);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  backdrop-filter: blur(24px);
}

.hero-dashboard strong {
  display: block;
  margin-top: 6px;
  font-size: 19px;
}

.meter {
  height: 10px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.meter span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
}

dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hero-dashboard div:has(dt) {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}

dt {
  color: var(--green);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0;
}

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

.services-section .section-heading {
  max-width: none;
}

.services-section h2 {
  white-space: nowrap;
  font-size: clamp(36px, 3.85vw, 56px);
}

.process-section .section-heading {
  max-width: none;
}

.process-section h2 {
  white-space: nowrap;
  font-size: clamp(36px, 4.2vw, 58px);
}

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

.service-card,
.timeline article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card:hover,
.timeline article:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 242, 179, 0.48);
  background: rgba(24, 29, 37, 0.92);
}

.service-card p,
.timeline p,
.scorecard-copy p,
.contact-section p {
  color: var(--muted);
  line-height: 1.85;
}

.scorecard-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 68px;
  align-items: center;
}

.scorecard-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.scorecard-visual::before,
.scorecard-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.scorecard-visual::before {
  inset: 16% 2% 12% 2%;
  background:
    radial-gradient(circle at 50% 48%, rgba(99, 213, 255, 0.2), transparent 30%),
    radial-gradient(circle at 44% 55%, rgba(125, 242, 179, 0.14), transparent 44%);
  filter: blur(10px);
  opacity: 0.9;
}

.scorecard-visual::after {
  width: 460px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateX(66deg) rotateZ(-16deg);
  box-shadow:
    0 0 44px rgba(99, 213, 255, 0.12),
    inset 0 0 30px rgba(125, 242, 179, 0.08);
}

.axis-orbit {
  position: absolute;
  width: 480px;
  height: 250px;
  border: 1px solid rgba(125, 242, 179, 0.28);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: axisOrbitGlow 9s ease-in-out infinite;
}

.orbit-finance {
  transform: rotateX(68deg) rotateZ(-18deg);
}

.orbit-market {
  width: 430px;
  height: 300px;
  border-color: rgba(99, 213, 255, 0.3);
  transform: rotateX(62deg) rotateY(26deg) rotateZ(22deg);
  animation-delay: -3s;
}

.orbit-process {
  width: 380px;
  height: 230px;
  border-color: rgba(255, 138, 99, 0.24);
  transform: rotateX(70deg) rotateY(-28deg) rotateZ(46deg);
  animation-delay: -6s;
}

.axis-core {
  position: absolute;
  z-index: 3;
  width: 190px;
  height: 190px;
  display: grid;
  gap: 10px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(8, 20, 31, 0.86), rgba(14, 34, 42, 0.64));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 42px rgba(99, 213, 255, 0.14);
}

.axis-core img {
  width: 88px;
  opacity: 0.9;
  filter: drop-shadow(0 12px 24px rgba(0, 184, 216, 0.22));
}

.axis-core span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.axis-node {
  position: absolute;
  z-index: 4;
  width: 148px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(12, 17, 24, 0.56);
  backdrop-filter: blur(18px);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.36),
    inset 0 0 26px rgba(255, 255, 255, 0.05);
  animation: axisNodeFloat 8s ease-in-out infinite;
}

.axis-node span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.axis-node strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.node-finance {
  top: 13%;
  left: 10%;
}

.node-market {
  top: 19%;
  right: 5%;
  animation-delay: -2s;
}

.node-process {
  bottom: 15%;
  left: 16%;
  animation-delay: -4s;
}

.node-growth {
  right: 13%;
  bottom: 9%;
  animation-delay: -6s;
}

.axis-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.axis-list div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.axis-list span {
  color: var(--green);
  font-weight: 900;
}

.axis-list strong {
  font-size: 22px;
}

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

.timeline article {
  min-height: 260px;
}

.contact-section {
  width: min(960px, calc(100% - 36px));
  margin: 32px auto 92px;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(125, 242, 179, 0.18), rgba(99, 213, 255, 0.1)),
    rgba(18, 21, 28, 0.78);
}

.contact-section h2 {
  font-size: clamp(32px, 5vw, 58px);
}

.page-hero {
  padding-top: 164px;
  padding-bottom: 46px;
}

.page-hero h1 {
  max-width: 980px;
}

.info-section,
.split-section,
.service-detail-grid,
.contact-options,
.legal-content {
  position: relative;
  z-index: 2;
}

.info-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.info-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.info-table span,
.service-detail-grid span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.info-table p {
  margin: 0;
  color: var(--ink);
  line-height: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-section p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}

.service-detail-grid,
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-grid article,
.contact-options article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
}

.service-detail-grid h2,
.contact-options h2,
.legal-content h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.service-detail-grid p,
.contact-options p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.9;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 42px;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 52px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@keyframes orbitSpin {
  to {
    transform: rotateX(68deg) rotateY(-18deg) rotateZ(360deg);
  }
}

@keyframes axisOrbitGlow {
  0%,
  100% {
    opacity: 0.48;
    filter: drop-shadow(0 0 10px rgba(99, 213, 255, 0.08));
  }
  50% {
    opacity: 0.9;
    filter: drop-shadow(0 0 18px rgba(125, 242, 179, 0.18));
  }
}

@keyframes axisNodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 34px) rotateX(4deg);
  }
}

@keyframes heroOrbitLarge {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(-620px, 12px, -300px) rotateX(22deg) rotateY(-48deg) rotateZ(-10deg) scale(0.68);
  }
  12.5% {
    opacity: 0.32;
    transform: translate3d(-500px, -128px, -240px) rotateX(21deg) rotateY(-44deg) rotateZ(-8deg) scale(0.72);
  }
  25% {
    opacity: 0.48;
    transform: translate3d(-250px, -196px, -120px) rotateX(18deg) rotateY(-34deg) rotateZ(-5deg) scale(0.82);
  }
  37.5% {
    opacity: 0.72;
    transform: translate3d(72px, -154px, 40px) rotateX(13deg) rotateY(-18deg) rotateZ(-1deg) scale(0.94);
  }
  50% {
    opacity: 0.98;
    transform: translate3d(330px, -18px, 190px) rotateX(7deg) rotateY(-7deg) rotateZ(2deg) scale(1.06);
  }
  62.5% {
    opacity: 0.78;
    transform: translate3d(106px, 128px, 60px) rotateX(12deg) rotateY(-18deg) rotateZ(5deg) scale(0.96);
  }
  75% {
    opacity: 0.46;
    transform: translate3d(-260px, 198px, -130px) rotateX(18deg) rotateY(-34deg) rotateZ(8deg) scale(0.82);
  }
  87.5% {
    opacity: 0.3;
    transform: translate3d(-512px, 132px, -250px) rotateX(21deg) rotateY(-44deg) rotateZ(10deg) scale(0.72);
  }
}

@keyframes copyOrbitLarge {
  0%,
  100% {
    opacity: 0.12;
    transform: translate3d(-460px, 20px, -360px) rotateX(22deg) rotateY(-46deg) rotateZ(-8deg) scale(0.58);
  }
  12.5% {
    opacity: 0.16;
    transform: translate3d(-360px, -116px, -300px) rotateX(21deg) rotateY(-42deg) rotateZ(-6deg) scale(0.62);
  }
  25% {
    opacity: 0.22;
    transform: translate3d(-122px, -174px, -180px) rotateX(18deg) rotateY(-34deg) rotateZ(-3deg) scale(0.72);
  }
  37.5% {
    opacity: 0.3;
    transform: translate3d(112px, -124px, -10px) rotateX(13deg) rotateY(-18deg) rotateZ(0deg) scale(0.82);
  }
  50% {
    opacity: 0.46;
    transform: translate3d(310px, -16px, 170px) rotateX(8deg) rotateY(-8deg) rotateZ(2deg) scale(0.92);
  }
  62.5% {
    opacity: 0.34;
    transform: translate3d(130px, 116px, -20px) rotateX(13deg) rotateY(-20deg) rotateZ(5deg) scale(0.82);
  }
  75% {
    opacity: 0.2;
    transform: translate3d(-126px, 174px, -190px) rotateX(18deg) rotateY(-34deg) rotateZ(7deg) scale(0.7);
  }
  87.5% {
    opacity: 0.14;
    transform: translate3d(-364px, 118px, -310px) rotateX(21deg) rotateY(-44deg) rotateZ(8deg) scale(0.62);
  }
}

@keyframes mobileOrbitCards {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(-28px, 8px, -100px) rotateX(18deg) rotateY(-32deg) rotateZ(-5deg) scale(0.82);
  }
  12.5% {
    opacity: 0.46;
    transform: translate3d(-18px, -20px, -70px) rotateX(16deg) rotateY(-26deg) rotateZ(-3deg) scale(0.86);
  }
  25% {
    opacity: 0.68;
    transform: translate3d(8px, -34px, 0) rotateX(12deg) rotateY(-16deg) rotateZ(0deg) scale(0.94);
  }
  37.5% {
    opacity: 0.84;
    transform: translate3d(28px, -18px, 50px) rotateX(9deg) rotateY(-10deg) rotateZ(2deg) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translate3d(18px, 22px, 92px) rotateX(8deg) rotateY(-8deg) rotateZ(3deg) scale(1.02);
  }
  62.5% {
    opacity: 0.82;
    transform: translate3d(-2px, 42px, 42px) rotateX(10deg) rotateY(-14deg) rotateZ(4deg) scale(0.96);
  }
  75% {
    opacity: 0.58;
    transform: translate3d(-28px, 34px, -34px) rotateX(15deg) rotateY(-24deg) rotateZ(5deg) scale(0.9);
  }
  87.5% {
    opacity: 0.42;
    transform: translate3d(-42px, 22px, -82px) rotateX(17deg) rotateY(-30deg) rotateZ(2deg) scale(0.84);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .scorecard-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy {
    grid-column: auto;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: -1;
    min-height: 520px;
  }

  .copy-orbit {
    display: none;
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .service-grid,
  .timeline,
  .service-detail-grid,
  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    gap: 22px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(39px, 11.5vw, 54px);
    line-height: 1.08;
  }

  .services-section h2 {
    white-space: normal;
    font-size: clamp(34px, 10vw, 46px);
  }

  .process-section h2 {
    white-space: normal;
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-media {
    min-height: 540px;
    overflow: hidden;
  }

  .holo-card {
    width: min(260px, calc(100vw - 56px));
    min-height: 118px;
    padding: 18px;
  }

  .card-one {
    top: 14%;
    left: 8px;
    animation: mobileOrbitCards 20s linear infinite;
  }

  .card-two {
    top: 38%;
    right: 8px;
    left: auto;
    animation: mobileOrbitCards 20s linear infinite -4s;
  }

  .card-three {
    left: 18px;
    bottom: 6%;
    top: auto;
    animation: mobileOrbitCards 20s linear infinite -8s;
  }

  .card-four {
    top: 4%;
    right: 20px;
    left: auto;
    width: min(238px, calc(100vw - 70px));
    min-height: 104px;
    animation: mobileOrbitCards 20s linear infinite -12s;
  }

  .card-five {
    bottom: 26%;
    right: 34px;
    top: auto;
    left: auto;
    width: min(230px, calc(100vw - 82px));
    min-height: 100px;
    animation: mobileOrbitCards 20s linear infinite -16s;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 78px 0;
  }

  .service-grid,
  .timeline,
  .service-detail-grid,
  .contact-options,
  .split-section,
  .info-table div {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .scorecard-visual {
    min-height: 380px;
    height: 380px;
    overflow: hidden;
  }

  .axis-orbit {
    width: 330px;
    height: 180px;
  }

  .orbit-market {
    width: 300px;
    height: 210px;
  }

  .orbit-process {
    width: 260px;
    height: 160px;
  }

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

  .axis-core img {
    width: 68px;
  }

  .axis-node {
    width: 118px;
    min-height: 72px;
    padding: 12px;
    border-radius: 14px;
  }

  .axis-node strong {
    font-size: 19px;
  }

  .node-finance {
    top: 12%;
    left: 1%;
  }

  .node-market {
    top: 15%;
    right: 0;
  }

  .node-process {
    bottom: 13%;
    left: 7%;
  }

  .node-growth {
    right: 6%;
    bottom: 10%;
  }

  .axis-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-section {
    width: min(100% - 28px, 960px);
    padding: 38px 22px;
  }

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

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