:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #a8b2bd;
  --soft: #d8e3ea;
  --bg: #07090c;
  --panel: #10161d;
  --panel-2: #151b20;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #20d6f2;
  --gold: #f2b84b;
  --red: #de5148;
  --green: #35b779;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 78% 6%, rgba(32, 214, 242, 0.12), transparent 28%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

.page-transition {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(32, 214, 242, 0.18) 48%, rgba(242, 184, 75, 0.16) 52%, transparent 58%),
    radial-gradient(circle at var(--transition-x, 50%) 50%, rgba(32, 214, 242, 0.12), transparent 34%);
  transform: translateX(-18%);
}

.page-transition.is-sweeping {
  animation: page-sweep 760ms ease-out;
}

@keyframes page-sweep {
  0% {
    opacity: 0;
    transform: translateX(-18%);
  }

  34% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(18%);
  }
}

.page-dots {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 2.2vw, 34px);
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.page-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(32, 214, 242, 0);
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.page-dots button.is-active {
  width: 24px;
  background: var(--gold);
  border-color: rgba(242, 184, 75, 0.78);
  box-shadow: 0 0 22px rgba(242, 184, 75, 0.38);
}

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

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }
}

.cursor {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 25px;
  height: 28px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-80px, -80px, 0);
  transition: opacity 160ms ease, filter 180ms ease;
  filter: drop-shadow(0 9px 11px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 14px rgba(255, 190, 46, 0.4));
}

.cursor svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 8px 6px;
  transition: transform 180ms ease;
}

.cursor-edge {
  fill: url("#cursor-edge");
  stroke: rgba(255, 244, 195, 0.92);
  stroke-width: 1;
  stroke-linejoin: round;
}

.cursor-fill {
  fill: url("#cursor-gold");
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 0.6;
  stroke-linejoin: round;
}

.cursor-shadow {
  fill: none;
  stroke: rgba(24, 12, 2, 0.72);
  stroke-width: 4.2;
  stroke-linejoin: round;
  transform: translate(2px, 3px);
}

.cursor-highlight {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.68;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 20px rgba(255, 150, 130, 0.34));
}

.cursor.is-active svg {
  transform: scale(1.12) rotate(-4deg);
}

.cursor.is-active .cursor-fill {
  fill: url("#cursor-rose");
  stroke: rgba(255, 228, 220, 0.72);
}

.cursor.is-active .cursor-edge {
  fill: url("#cursor-rose-edge");
  stroke: #ffe5df;
}

.cursor.is-active .cursor-shadow {
  stroke: rgba(55, 16, 12, 0.78);
}

@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(7, 9, 12, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.88);
  border-bottom-color: var(--line);
}

.brand,
.header-cta,
.nav a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand {
  width: auto;
  height: 42px;
  justify-self: start;
  gap: 10px;
  padding: 5px 12px 5px 7px;
  border: 1px solid rgba(32, 214, 242, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 214, 242, 0.18), rgba(242, 184, 75, 0.05)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 32px rgba(32, 214, 242, 0.14);
}

.site-header .brand {
  height: 52px;
  gap: 12px;
  padding: 6px 15px 6px 8px;
}

.brand-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #27d8e7, #278df0);
  box-shadow: 0 0 28px rgba(32, 214, 242, 0.26);
}

.site-header .brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand-icon::before {
  content: "T";
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.site-header .brand-icon::before {
  font-size: 23px;
}

.brand-icon span {
  position: absolute;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.9;
}

.site-header .brand-icon span {
  top: 6px;
  width: 4px;
  height: 4px;
}

.brand-icon span:nth-child(1) {
  left: 9px;
}

.site-header .brand-icon span:nth-child(1) {
  left: 11px;
}

.brand-icon span:nth-child(2) {
  left: 14px;
}

.site-header .brand-icon span:nth-child(2) {
  left: 17px;
}

.brand-icon span:nth-child(3) {
  left: 19px;
}

.site-header .brand-icon span:nth-child(3) {
  left: 23px;
}

.brand-type {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-type strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

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

.brand-type small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.site-header .brand-type small {
  font-size: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 0 16px;
  border: 1px solid rgba(242, 184, 75, 0.42);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  background: rgba(242, 184, 75, 0.08);
  box-shadow: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 104px clamp(18px, 5vw, 64px) 34px;
  perspective: 1200px;
  color: #f7fbff;
}

.hero,
.section,
.contact {
  scroll-snap-align: start;
  scroll-margin-top: 64px;
}

.section.page-panel {
  min-height: 88svh;
  display: grid;
  align-content: center;
}

.page-panel {
  position: relative;
  opacity: 0.72;
  transform: translateY(22px) scale(0.985);
  filter: saturate(0.82);
  transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
}

.page-panel.is-current,
.hero.page-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1);
}

.page-panel.is-current .section-heading h2,
.page-panel.is-current .why-copy h2,
.contact.page-panel.is-current h2 {
  animation: title-lift 680ms ease both;
}

@keyframes title-lift {
  from {
    opacity: 0.32;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 9, 13, 0.94) 0%, rgba(5, 9, 13, 0.72) 39%, rgba(5, 9, 13, 0.14) 76%),
    linear-gradient(0deg, rgba(5, 9, 13, 0.86) 0%, rgba(5, 9, 13, 0.08) 48%, rgba(5, 9, 13, 0.42) 100%);
}

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

.hero::before {
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  right: -12vw;
  top: 12vh;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 48%),
    conic-gradient(from 120deg, rgba(255, 255, 255, 0), rgba(32, 214, 242, 0.14), rgba(242, 184, 75, 0.14), rgba(255, 255, 255, 0));
  filter: blur(0.2px);
  opacity: 0.72;
  transform: rotateX(64deg) rotateZ(-18deg);
  animation: orbit-slow 18s linear infinite;
}

.hero::after {
  left: 9vw;
  right: 14vw;
  bottom: 102px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), rgba(32, 214, 242, 0.5), transparent);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.26);
}

.hero-depth {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.network-orbit {
  position: absolute;
  right: clamp(28px, 8vw, 130px);
  top: 22%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(32, 214, 242, 0.18);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(32, 214, 242, 0.16) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(242, 184, 75, 0.14) 50%, transparent 50.2%),
    radial-gradient(circle at 50% 50%, rgba(32, 214, 242, 0.18), transparent 58%);
  box-shadow: inset 0 0 70px rgba(32, 214, 242, 0.1), 0 0 80px rgba(32, 214, 242, 0.12);
  opacity: 0.88;
  transform: rotateX(62deg) rotateZ(-12deg);
  animation: network-spin 20s linear infinite;
}

.network-orbit::before,
.network-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.network-orbit::after {
  inset: 31%;
  border-style: solid;
  border-color: rgba(242, 184, 75, 0.22);
  animation: network-pulse 3s ease-in-out infinite;
}

.network-orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f7fbff;
  box-shadow: 0 0 18px rgba(32, 214, 242, 0.95), 0 0 42px rgba(32, 214, 242, 0.36);
  animation: node-pulse 2.6s ease-in-out infinite;
}

.network-orbit span:nth-child(1) {
  left: 48%;
  top: 4%;
}

.network-orbit span:nth-child(2) {
  right: 10%;
  top: 30%;
  animation-delay: -0.5s;
}

.network-orbit span:nth-child(3) {
  right: 19%;
  bottom: 13%;
  animation-delay: -1s;
}

.network-orbit span:nth-child(4) {
  left: 14%;
  bottom: 18%;
  animation-delay: -1.5s;
}

.network-orbit span:nth-child(5) {
  left: 8%;
  top: 34%;
  animation-delay: -2s;
}

@keyframes network-spin {
  to {
    rotate: 360deg;
  }
}

@keyframes network-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.88;
    transform: scale(1.08);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(0.76);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.signal-card {
  position: absolute;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 18, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  animation: float-card 6.5s ease-in-out infinite;
}

.signal-card span {
  display: block;
  color: rgba(247, 251, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-card strong {
  display: block;
  margin-top: 6px;
  color: #f7fbff;
  font-size: 28px;
  line-height: 1;
}

.signal-card-a {
  right: clamp(44px, 9vw, 160px);
  top: 28%;
  transform: rotateX(10deg) rotateY(-14deg) translateZ(60px);
}

.signal-card-b {
  right: clamp(210px, 22vw, 340px);
  bottom: 24%;
  animation-delay: -2.8s;
  transform: rotateX(8deg) rotateY(16deg) translateZ(42px);
}

.hero-logo-card {
  position: absolute;
  right: clamp(44px, 7vw, 120px);
  top: 32%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  padding: 32px;
  border: 1px solid rgba(32, 214, 242, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 214, 242, 0.14), rgba(242, 184, 75, 0.06)),
    rgba(10, 14, 18, 0.5);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.28), 0 0 42px rgba(32, 214, 242, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  animation: float-card 6.5s ease-in-out infinite;
}

.hero-logo-card .brand-icon {
  width: 172px;
  height: 172px;
}

.hero-logo-card .brand-icon::before {
  font-size: 96px;
}

.hero-logo-card .brand-icon span {
  top: 28px;
  width: 12px;
  height: 12px;
}

.hero-logo-card .brand-icon span:nth-child(1) {
  left: 48px;
}

.hero-logo-card .brand-icon span:nth-child(2) {
  left: 80px;
}

.hero-logo-card .brand-icon span:nth-child(3) {
  left: 112px;
}

@keyframes float-card {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes orbit-slow {
  to {
    rotate: 360deg;
  }
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-content {
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 1120px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(247, 251, 255, 0.9);
  font-size: clamp(17px, 1.7vw, 20px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  min-width: 150px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: #23c9e6;
  color: #061015;
  border: 1px solid #23c9e6;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 10, 14, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-stats article {
  position: relative;
  z-index: 1;
  min-height: 82px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: #f7fbff;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 13px;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0;
}

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

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

.service-card.reveal,
.metric-board article.reveal,
.timeline article.reveal,
.why-list li.reveal {
  transition-delay: calc(var(--reveal-index, 0) * 75ms);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(24px, 6vw, 80px);
  margin-bottom: 42px;
}

h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

#intro-title,
#performance-title {
  line-height: 1.1;
}

.intro {
  padding-top: 92px;
}

.services {
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(60px, 7vw, 88px);
}

.services .section-heading {
  margin-bottom: 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 23px);
}

.intro-grid p {
  margin-bottom: 0;
}

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

.service-card,
.metric-board article,
.timeline article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 24, 30, 0.6) 0%, rgba(13, 16, 20, 0.8) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.depth-card {
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.depth-card::before,
.service-card::before,
.metric-board article::before,
.timeline article::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(32, 214, 242, 0.04) 74%, transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.depth-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 214, 242, 0.24);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(32, 214, 242, 0.08);
}

.depth-card:hover::before,
.service-card:hover::before,
.metric-board article:hover::before,
.timeline article:hover::before {
  opacity: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px 24px 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:not(.service-card-featured):hover {
  border-color: rgba(32, 214, 242, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(32, 214, 242, 0.08);
}

.service-card-featured {
  min-height: 420px;
  border-radius: 12px;
  border: 1px solid rgba(242, 184, 75, 0.55);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 184, 75, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(242, 184, 75, 0.06), transparent 40%),
    linear-gradient(180deg, #151a1f 0%, #0d1117 100%);
  box-shadow:
    0 0 0 1px rgba(242, 184, 75, 0.12),
    0 0 20px rgba(242, 184, 75, 0.15),
    0 0 50px rgba(242, 184, 75, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card-featured:hover {
  border-color: rgba(242, 184, 75, 0.8);
  box-shadow:
    0 0 0 1px rgba(242, 184, 75, 0.2),
    0 0 30px rgba(242, 184, 75, 0.25),
    0 0 60px rgba(242, 184, 75, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Warm golden glow at top-right corner */
.service-card-featured::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(255, 245, 200, 0.6) 0%,
    rgba(242, 184, 75, 0.35) 20%,
    rgba(242, 184, 75, 0.1) 45%,
    transparent 70%
  );
  border-radius: 0 12px 0 0;
  pointer-events: none;
  z-index: 2;
}

.service-card-featured::after {
  display: none;
}

.service-card span,
.metric-board span,
.timeline span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-top: 24px;
  color: rgba(151, 163, 177, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon {
  width: 100%;
  height: 100%;
  display: block;
  transition: color 220ms ease, transform 220ms ease, filter 220ms ease;
}

.featured-icon {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(242, 184, 75, 0.35));
}

.depth-card:hover .service-card-icon:not(.featured-icon) {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(0) invert(1);
}

.depth-card:hover .featured-icon {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 12px rgba(242, 184, 75, 0.6));
}

.meta-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: inherit;
  transition: transform 220ms ease;
}

.depth-card:hover .meta-icon {
  transform: rotate(15deg);
}

.service-card h3 {
  margin: 24px 0 16px;
  font-size: 24px;
  line-height: 1.08;
}

.service-card p,
.metric-board p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-featured h3,
.service-card-featured p,
.service-card-featured span,
.service-card-featured .service-icon {
  position: relative;
  z-index: 1;
}

.service-card-featured p {
  color: rgba(255, 232, 184, 0.78);
}

.service-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(151, 163, 177, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-proof {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.service-chart-img {
  display: block;
  width: 100%;
  max-width: 233px;
  height: auto;
}

.performance {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(32, 214, 242, 0.07), transparent 34%),
    #0b0f13;
}

.performance::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(32, 214, 242, 0.09) 42% 43%, transparent 43%),
    linear-gradient(65deg, transparent 0 58%, rgba(242, 184, 75, 0.08) 58% 59%, transparent 59%);
  opacity: 0.78;
}

.performance > * {
  position: relative;
  z-index: 1;
}

.performance .section-heading,
.metric-board {
  width: min(100% - 36px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-board article {
  min-height: 210px;
  padding: 26px;
}

.metric-board strong {
  display: block;
  margin: 34px 0 8px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
}

.proof {
  width: 100%;
  max-width: none;
}

.proof .section-heading {
  width: min(100% - 36px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.project-marquee {
  --card-width: 226px;
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100% - 72px, var(--max));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.project-marquee:hover .project-track {
  animation-play-state: paused;
}

.project-row {
  display: flex;
  gap: 14px;
  min-width: 0;
}

.project-row.reverse .project-track {
  animation-direction: reverse;
}

.project-track {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  min-width: max-content;
  animation: project-flow 48s linear infinite;
}

@keyframes project-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 14px));
  }
}

.project-card {
  position: relative;
  flex: 0 0 var(--card-width);
  min-height: 214px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
  justify-items: center;
  gap: 9px;
  padding: 24px 18px 20px;
  border: 1px solid var(--line);
  color: var(--soft);
  background:
    radial-gradient(circle at 50% 24%, rgba(32, 214, 242, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 34%, transparent 58%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.project-card:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: rgba(32, 214, 242, 0.45);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.52), 0 0 36px rgba(32, 214, 242, 0.14);
}

.project-card:hover::after {
  opacity: 1;
  transform: translateX(45%);
}

.project-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.project-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.project-card span {
  color: var(--muted);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .project-track {
    animation: none;
  }

  .project-marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: thin;
  }
}

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

.timeline article {
  padding: 28px;
  min-height: 220px;
}

.timeline p {
  margin-top: 34px;
  font-size: 18px;
}

.why {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.why-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-list li {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-weight: 750;
}

.why-list li:nth-child(2n) {
  border-left-color: var(--gold);
}

.why-list li:nth-child(3n) {
  border-left-color: var(--red);
}

.contact {
  position: relative;
  overflow: hidden;
  width: min(100% - 36px, var(--max));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: end;
  gap: 28px;
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid rgba(32, 214, 242, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 214, 242, 0.14), transparent 48%),
    linear-gradient(315deg, rgba(242, 184, 75, 0.13), transparent 52%),
    var(--panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.contact::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(242, 184, 75, 0.22);
  background: radial-gradient(circle, rgba(242, 184, 75, 0.18), transparent 64%);
  pointer-events: none;
}

.contact h2 {
  max-width: 780px;
}

.site-footer {
  width: min(100% - 36px, var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  html {
    scroll-snap-type: none;
  }

  .page-dots {
    display: none;
  }

  .section.page-panel {
    min-height: auto;
  }

  .page-panel {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav {
    position: fixed;
    inset: 73px 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 14, 18, 0.96);
    box-shadow: 0 20px 60px var(--shadow);
  }

  body.menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: 8px 4px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

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

  .hero-content {
    padding-bottom: 30px;
  }

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

  .hero-stats article:nth-child(2n),
  .hero-stats article:last-child {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .hero {
    padding: 92px 18px 24px;
    perspective: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.98), rgba(7, 9, 12, 0.66)),
      linear-gradient(0deg, rgba(7, 9, 12, 0.95), rgba(7, 9, 12, 0.18) 58%, rgba(7, 9, 12, 0.72));
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .metric-board,
  .timeline,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats article {
    min-height: 72px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats article:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
  }

  .hero-stats article:nth-child(3),
  .hero-stats article:nth-child(4) {
    border-bottom: 0;
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 28px, var(--max));
  }

  .section-heading,
  .performance .section-heading,
  .metric-board,
  .contact,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .service-card {
    min-height: 236px;
  }

  .service-card-featured {
    min-height: 420px;
  }

  .service-card h3 {
    margin-top: 34px;
  }

  .brand {
    height: 42px;
    padding-right: 10px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .brand-icon::before {
    font-size: 18px;
  }

  .brand-icon span {
    top: 5px;
    width: 3px;
    height: 3px;
  }

  .brand-icon span:nth-child(1) {
    left: 9px;
  }

  .brand-icon span:nth-child(2) {
    left: 14px;
  }

  .brand-icon span:nth-child(3) {
    left: 19px;
  }

  .brand-type strong {
    font-size: 12px;
  }

  .brand-type small {
    font-size: 9px;
  }

  .project-marquee {
    --card-width: 184px;
    width: min(100% - 28px, var(--max));
  }

  .project-card {
    min-height: 178px;
    padding: 20px 12px 18px;
  }

  .depth-card:hover,
  .project-card:hover {
    transform: none;
  }

  .project-card img {
    width: 64px;
    height: 64px;
  }

  .contact {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
