@font-face {
  font-family: 'IBM Plex Mono';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexMono-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexMono-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexMono-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexSans_SemiCondensed-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexSans_SemiCondensed-LightItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexSans_SemiCondensed-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexSans_SemiCondensed-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/IBMPlexSans_SemiCondensed-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Bebas Neue';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0040FF;
  --blue-mid: #0033CC;
  --blue-pale: #E8EEFF;
  --blue-glow: rgba(0, 64, 255, .15);
  --black: #0A0A0A;
  --grey: #6B6B6B;
  --grey-light: #D4D4D4;
  --white: rgba(244, 244, 244, 0.947);
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}


::-webkit-scrollbar {
  width: 12px;
  height: 15px;
  border-radius: 0;
}

::-webkit-scrollbar-track {
  background: var(--black);
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border: 2px solid var(--black);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}




#landing {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}

#landing.gone {
  display: none;
}

.landing-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 100px);
  letter-spacing: .1em;
  color: var(--white);
  line-height: 1;
  z-index: 10;
  animation: glitch-logo 2s infinite linear alternate-reverse;
}

@keyframes glitch-logo {
  0% {
    text-shadow: 2px 0 0 rgba(0, 64, 255, 0.5), -2px 0 0 rgba(255, 255, 255, 0.2);
  }

  2% {
    transform: translate(1px, 1px);
  }

  4% {
    transform: translate(-1px, -1px);
  }

  5% {
    text-shadow: -2px 0 0 rgba(0, 64, 255, 0.5), 2px 0 0 rgba(255, 255, 255, 0.2);
  }

  100% {
    text-shadow: 0.5px 0 0 rgba(0, 64, 255, 0.2), -0.5px 0 0 rgba(255, 255, 255, 0.1);
  }
}

.landing-logo span {
  color: var(--blue);
}

.landing-logs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  margin-top: 20px;
  height: 14px;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  z-index: 10;
}

.landing-pct {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.1);
  font-weight: 300;
  z-index: 10;
}

.landing-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent,
      rgba(0, 64, 255, 0.05) 50%,
      transparent);
  background-size: 100% 4px;
  z-index: 5;
  pointer-events: none;
  animation: scanline 10s linear infinite;
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.landing-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .08);
}

.landing-bar {
  height: 100%;
  background: var(--blue);
  width: 0%;
  animation: loadBar .75s .2s cubic-bezier(.4, 0, .2, 1) forwards;
}


.landing-top,
.landing-bot {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--black);
  transition: transform .55s cubic-bezier(.76, 0, .24, 1);
}

.landing-top {
  top: 0;
}

.landing-bot {
  bottom: 0;
}

#landing.exit .landing-top {
  transform: translateY(-100%);
}

#landing.exit .landing-bot {
  transform: translateY(100%);
}

#landing.exit .landing-logo,
#landing.exit .landing-sub {
  opacity: 0;
  transition: opacity .2s;
}

@keyframes landIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}


body::after {
  content: "";
  position: fixed;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  animation: noise 8s steps(10) infinite;
}

@keyframes noise {

  0%,
  100% {
    transform: translate(0, 0)
  }

  10% {
    transform: translate(-5%, -10%)
  }

  30% {
    transform: translate(-10%, 5%)
  }

  50% {
    transform: translate(5%, 10%)
  }

  70% {
    transform: translate(10%, -5%)
  }

  90% {
    transform: translate(-5%, 10%)
  }
}

@media (pointer: fine) {
  body {
    cursor: crosshair;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 64, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 64, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, transparent, rgba(0, 64, 255, 0.02) 50%, transparent);
  background-size: 40px 40px, 40px 40px, 100% 200px;
  background-repeat: repeat, repeat, no-repeat;
  pointer-events: none;
  z-index: -2;
  animation: scan-vertical 8s linear infinite;
}

@keyframes scan-vertical {
  from {
    background-position: 0 0, 0 0, 0 -200px;
  }

  to {
    background-position: 0 0, 0 0, 0 100vh;
  }
}


.cursor,
.cursor-ring {
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width .3s cubic-bezier(0.19, 1, 0.22, 1), height .3s cubic-bezier(0.19, 1, 0.22, 1), opacity .3s;
  }

  .cursor-ring {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width .4s cubic-bezier(0.19, 1, 0.22, 1), height .4s cubic-bezier(0.19, 1, 0.22, 1), opacity .4s, border-width .3s;
    will-change: transform, width, height;
  }

  .cursor.active {
    width: 12px;
    height: 12px;
    opacity: 0.5;
  }

  .cursor-ring.active {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .cursor.hover {
    width: 4px;
    height: 4px;
    opacity: 0;
  }

  .cursor-ring.hover {
    width: 60px;
    height: 60px;
    opacity: 1;
    border-color: var(--blue);
    border-width: 2px;
    mix-blend-mode: normal;
  }
}


.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  z-index: 300;
  width: 0%;
  transition: width .08s linear;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--grey-light);
  transition: height .3s, box-shadow .3s;
}

nav.scrolled {
  height: 56px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-dot {
  color: var(--blue);
}

.nav-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.55);
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  position: relative;
  transition: color .2s;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width .3s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.lang-switch button:hover {
  color: var(--black);
}

.lang-switch button.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: 12px 22px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.nav-cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--blue-glow);
}

.nav-cta:active {
  transform: translateY(0);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(38deg) scaleX(1.1);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-38deg) scaleX(1.1);
}


.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  z-index: 190;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu-inner {
  padding: 20px 24px 28px;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-light);
  transition: color .2s;
}

.mobile-menu ul li a:hover {
  color: var(--blue);
}

.mob-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white) !important;
  padding: 18px 24px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background .2s;
  border-bottom: none !important;
  min-height: 58px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}


.btn-primary {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: 18px 32px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-ghost {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 8px;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost:hover {
  color: var(--blue);
}

.btn-white {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 18px 32px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
}

.btn-white:hover {
  background: rgba(255, 255, 255, .88);
  transform: translateY(-2px);
}

.btn-white:active {
  transform: translateY(0);
}

.btn-outline-white {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .6);
  padding: 18px 32px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
}

.btn-outline-white:hover {
  border-color: var(--white);
  color: var(--white);
}

#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  background: var(--white);
  background: transparent;
  padding: 100px 20px;
}

.terminal-window {
  width: 100%;
  max-width: 1000px;
  background: var(--black);
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.term-header {
  background: #1A1A1A;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dots {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}

.term-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}

.term-dots span:nth-child(1) {
  background: #FF5F56;
}

.term-dots span:nth-child(2) {
  background: #FFBD2E;
}

.term-dots span:nth-child(3) {
  background: #27C93F;
}

.term-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1px;
}

.term-body {
  padding: 40px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--white);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.term-prompt {
  font-size: 14px;
  margin-bottom: 10px;
}

.term-prompt .user {
  color: #27C93F;
}

.term-prompt .path {
  color: var(--blue);
}

.term-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 8vw, 90px);
  color: var(--white);
  line-height: 1;
  margin: 20px 0;
}

.term-h1 em {
  color: var(--blue);
  font-style: normal;
}

.term-desc {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 1.2em;
  background: var(--blue);
  margin-left: 4px;
  animation: term-blink 1s steps(2) infinite;
  vertical-align: middle;
}

@keyframes term-blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}


.ticker-wrap {
  background: var(--blue);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  position: relative;
  z-index: 1;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 32s linear infinite;
}

.ticker-inner span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  padding: 0 32px;
}

.ticker-inner span.sep {
  color: rgba(255, 255, 255, .22);
  padding: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


section {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.section-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: attr(data-n);
  color: var(--grey-light);
  font-size: 9px;
}

.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: .03em;
  color: var(--black);
  margin-bottom: 20px;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


#about {
  background: var(--black);
  background: rgba(10, 10, 10, 0.92);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0 80px;
  align-items: center;
}

#about .section-h2 {
  color: var(--white);
}

#about .section-tag {
  color: rgba(100, 140, 255, .9);
}

#about .section-tag::before {
  color: rgba(255, 255, 255, .12);
}

.about-manifesto {
  border-left: 1px solid rgba(255, 255, 255, .08);
  padding-left: 64px;
}

.manifesto-statement {
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 28px;
}

.manifesto-statement strong {
  color: #5580FF;
  font-weight: 500;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .45);
  padding: 8px 14px;
  transition: border-color .25s, color .25s, background .25s;
  cursor: default;
}

.pill:hover {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(0, 64, 255, .15);
}


.abstract-img-wrap {
  width: 100%;
  height: 280px;
  background: var(--black);
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abstract-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
}

.abstract-img-wrap:hover .abstract-img {
  transform: scale(1.05);
  opacity: 1;
}


#services {
  background: transparent;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
  align-items: end;
}

.services-header .right p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
  max-width: 400px;
  margin-left: auto;
}

.values-h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: right;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--grey-light);
  background: var(--white);
}

.value-item {
  padding: 32px 24px;
  border-right: 1px solid var(--grey-light);
}

.value-item:last-child {
  border-right: none;
}

.value-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

.services-transition {
  padding: 48px 0;
  border-left: 1px solid var(--grey-light);
  margin-left: 60px;
  padding-left: 40px;
}

.services-transition p {
  font-size: 14px;
  color: var(--grey);
  max-width: 700px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--grey-light);
}

.service-card {
  padding: 44px 36px;
  border-right: 1px solid var(--grey-light);
  background: var(--white);
  position: relative;
  transition: background .3s;
  overflow: hidden;
  cursor: pointer;
}

.service-card:last-child {
  border-right: none;
}

.service-card svg {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-card:hover {
  background: var(--blue-pale);
}

.service-card:hover svg {
  transform: scale(1.1) rotate(5deg);
  color: var(--blue-mid);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--blue);
  margin-bottom: 18px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--blue);
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .05em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.1;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 18px;
}


.gain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
}

.gain-col {
  background: var(--white);
  padding: 40px;
}

.gain-col.active {
  background: var(--blue-pale);
  border: 1px solid var(--blue);
}

.gain-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  margin-bottom: 30px;
  color: var(--grey);
}

.gain-col.active .gain-title {
  color: var(--blue);
}

.gain-item {
  font-size: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--grey-light);
  color: var(--black);
}

.service-list {
  list-style: none;
}

.service-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 7px 0;
  border-top: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}


#process {
  background: transparent;
}

.process-header {
  margin-bottom: 52px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--grey-light);
  background: var(--white);
}

.step {
  padding: 44px 28px;
  border-right: 1px solid var(--grey-light);
  position: relative;
  transition: background .3s;
}

.step:last-child {
  border-right: none;
}

.step:hover {
  background: var(--blue-pale);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  color: #DDEAFF;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  transition: color .3s;
}

.step:hover .step-num {
  color: #C5D8FF;
}

.step-num::after {
  content: attr(data-n);
  position: absolute;
  top: 10px;
  left: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--blue);
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .05em;
  color: var(--black);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.78;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--blue);
}

.step:last-child .step-connector {
  display: none;
}


#diff {
  background: var(--white);
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0 80px;
  align-items: start;
}

#diff .left {
  position: sticky;
  top: 100px;
}

.diff-items {
  padding-top: 4px;
}

.diff-item {
  padding: 34px 0;
  border-bottom: 1px solid var(--grey-light);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
}

.diff-item:first-child {
  border-top: 1px solid var(--grey-light);
}

.diff-item-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--blue);
  padding-top: 3px;
  transition: transform .3s;
}

.diff-item:hover .diff-item-n {
  transform: translateX(4px);
}

.diff-item-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
  transition: color .2s;
}

.diff-item:hover .diff-item-title {
  color: var(--blue);
}

.diff-item-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
}


.monitor-section {
  background: transparent;
  border-bottom: 1px solid var(--grey-light);
}

.monitor-browser {
  width: 100%;
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--grey-light);
  background: var(--white);
}

.browser-chrome {
  background: #f1f1f1;
  height: 44px;
  display: flex;
  align-items: flex-end;
  padding: 0 12px;
  gap: 12px;
  border-bottom: 1px solid var(--grey-light);
}

.window-controls {
  display: flex;
  gap: 6px;
  padding-bottom: 14px;
  margin-right: 12px;
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F56;
}

.dot-yellow {
  background: #FFBD2E;
}

.dot-green {
  background: #27C93F;
}

.browser-tabs {
  display: flex;
  height: 34px;
  align-items: flex-end;
}

.m-tab {
  height: 34px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  background: #e4e4e4;
  border: 1px solid var(--grey-light);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  margin-right: -1px;
  cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--grey);
  transition: background .2s, color .2s;
}

.m-tab.active {
  background: var(--white);
  color: var(--blue);
  z-index: 2;
  height: 35px;
  font-weight: 600;
}

.address-bar-row {
  background: var(--white);
  padding: 8px 12px;
  border-bottom: 1px solid var(--grey-light);
}

.address-bar {
  background: #f8f8f8;
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  display: flex;
  gap: 10px;
}

.monitor-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1px;
  background: var(--grey-light);
}

.monitor-main {
  background: #FCFCFC;
  padding: 60px;
}

.monitor-sidebar {
  background: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m-display-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--black);
  margin-bottom: 12px;
}

.m-display-sub {
  font-size: 14px;
  color: var(--grey);
  max-width: 500px;
  margin-bottom: 48px;
}

.m-metric-group {
  margin-bottom: 32px;
}

.m-metric-header {
  display: flex;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 10px;
}

.m-val-small {
  color: var(--black);
  font-weight: 500;
}

.m-bar-bg {
  width: 100%;
  height: 2px;
  background: var(--grey-light);
  position: relative;
}

.m-bar-fill {
  height: 100%;
  background: var(--blue);
  width: 0;
  transition: width 1.2s cubic-bezier(.22, 1, .36, 1);
}

.m-lab-small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--grey);
  margin-bottom: 16px;
}

.m-status-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #27C93F;
  border-radius: 50%;
  box-shadow: 0 0 8px #27C93F;
  animation: blink 1.2s infinite;
}

.m-status-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
}

.m-telemetry {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  opacity: 0.6;
}


.mini-terminal {
  background: var(--black);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.term-header-mini {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-bottom: 8px;
  color: var(--grey);
}

.term-body-mini {
  line-height: 1.4;
  color: var(--white);
}

.term-body-mini .user {
  color: #27C93F;
}

.term-body-mini .command {
  color: var(--blue);
}

.term-body-mini .log {
  opacity: 0.6;
}

.m-conclusion-text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  border-left: 2px solid var(--blue);
  padding-left: 20px;
}


.gains-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.gains-table th {
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px;
  border-bottom: 1px solid var(--grey-light);
  color: var(--grey);
}

.gains-table td {
  padding: 20px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 14px;
}

.gains-table tr:last-child td {
  border-bottom: none;
}

.gains-table strong {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .monitor-grid {
    grid-template-columns: 1fr;
  }

  .monitor-sidebar {
    border-left: none;
    border-top: 1px solid var(--grey-light);
  }

  .monitor-main,
  .monitor-sidebar {
    padding: 40px 20px;
  }
}


#testimonials {
  background: var(--white);
}

.testi-header {
  margin-bottom: 44px;
}

.testi-track-wrap {
  overflow: hidden;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
}

.testi-card {
  background: var(--white);
  padding: 40px;
  transition: background .25s, border-color .25s;
  border-right: 1px solid var(--grey-light);
}

.testi-card:hover {
  background: var(--blue-pale);
}

.testi-quote {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.85;
  margin-bottom: 26px;
}

.testi-quote::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-initials {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--black);
  text-transform: uppercase;
}

.testi-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: .06em;
  margin-top: 2px;
}

.testi-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grey-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.testi-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}


#faq {
  background: var(--blue-pale);
}

#support {
  background: rgb(201 201 201 / 80%);
}

.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--grey-light);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--grey-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 66px;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, color .25s;
  font-size: 18px;
  color: var(--blue);
  font-family: monospace;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a-inner {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
  padding-bottom: 24px;
}


#contact {
  background: var(--black);
  background: rgba(10, 10, 10, 0.92);
  padding: 130px 60px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: 'CL';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(255, 255, 255, .018);
  line-height: 1;
  pointer-events: none;
  letter-spacing: .05em;
}

.contact-main .section-tag {
  color: rgba(100, 140, 255, .8);
}

.contact-main .section-tag::before {
  color: rgba(255, 255, 255, .1);
}

.contact-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 88px);
  color: var(--white);
  line-height: 1;
  letter-spacing: .03em;
  margin-bottom: 28px;
}

.contact-h2 span {
  color: var(--blue);
}

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 44px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}


.email-copy-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  cursor: pointer;
  transition: background .2s, border-color .25s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  text-align: left;
}

.email-copy-btn:hover {
  background: rgba(0, 64, 255, 0.08);
  border-color: rgba(0, 64, 255, 0.4);
}

.email-copy-btn.copied {
  border-color: #27C93F;
  background: rgba(39, 201, 63, 0.06);
}

.email-region {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--blue);
  background: rgba(0, 64, 255, 0.12);
  padding: 3px 7px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
}

.email-copy-btn.copied .email-region {
  background: rgba(39, 201, 63, 0.15);
  color: #27C93F;
}

.email-address {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
  letter-spacing: .03em;
  transition: color .2s;
}

.email-copy-btn:hover .email-address {
  color: rgba(255, 255, 255, 0.95);
}

.copy-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: color .2s, transform .2s;
  margin-left: auto;
  font-family: monospace;
  user-select: none;
}

.email-copy-btn:hover .copy-icon {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.15);
}

.copy-feedback {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: #27C93F;
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}

.email-copy-btn.copied .copy-icon {
  opacity: 0;
}

.email-copy-btn.copied .copy-feedback {
  opacity: 1;
  transform: translateY(0);
}

.contact-info {
  border-left: 1px solid rgba(255, 255, 255, .07);
  padding-left: 48px;
}

.contact-detail {
  margin-bottom: 26px;
}

.contact-detail .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 5px;
}

.contact-detail .val {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
}

#industrial-footer {
  background: #0D0D0D;
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  border-top: 1px solid #1A1A1A;
  position: relative;
  z-index: 10;
}

.footer-grid-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid #1A1A1A;
}

.footer-col {
  padding: 60px 40px;
  border-right: 1px solid #1A1A1A;
}

.footer-col:last-child {
  border-right: none;
}

.footer-logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-sub {
  font-size: 10px;
  color: var(--grey);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-node {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: #27C93F;
  border-radius: 50%;
  box-shadow: 0 0 8px #27C93F;
  animation: status-pulse 2s infinite;
}

.status-text {
  font-size: 9px;
  color: #27C93F;
  letter-spacing: 1px;
}

@keyframes status-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.footer-h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 11px;
  color: #666;
  text-decoration: none;
  transition: color .3s, opacity .3s;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}


.footer-monitor {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  border-bottom: 1px solid #1A1A1A;
  background: #0A0A0A;
}

.monitor-clocks,
.monitor-coords {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.monitor-clocks {
  border-right: 1px solid #1A1A1A;
}

.monitor-coords {
  border-left: 1px solid #1A1A1A;
  font-size: 10px;
  color: #444;
  text-align: right;
}

.monitor-coords .availability {
  color: var(--blue);
  margin-top: 4px;
}

.clock-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.clock-item .city {
  color: var(--grey);
}

.clock-item .time {
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.monitor-log-stream {
  height: 100px;
  overflow-y: hidden;
  padding: 20px;
  font-size: 9px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.log-entry {
  font-family: 'IBM Plex Mono', monospace;
  opacity: 0;
  animation: log-fade-in .3s forwards;
}

@keyframes log-fade-in {
  to {
    opacity: 1;
  }
}


.footer-grid-bot {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-signature .sep {
  margin: 0 15px;
  color: #1A1A1A;
}

.footer-back-top {
  background: none;
  border: none;
  color: var(--grey);
  font-family: inherit;
  font-size: 10px;
  cursor: pointer;
  transition: color .3s;
}

.footer-back-top:hover {
  color: var(--white);
}

@media (max-width: 1100px) {
  .footer-grid-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col {
    border-bottom: 1px solid #1A1A1A;
  }

  .footer-monitor {
    grid-template-columns: 1fr;
  }

  .monitor-clocks,
  .monitor-coords {
    border: none;
    text-align: left;
    align-items: flex-start;
  }

  .monitor-log-stream {
    border-top: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
  }
}

@media (max-width: 768px) {
  .footer-grid-top {
    grid-template-columns: 1fr;
  }

  .footer-grid-bot {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 150;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--blue-mid);
}

@media (max-width: 1100px) {
  nav {
    padding: 0 40px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 80px 40px;
  }

  #hero {
    grid-template-columns: 0 1fr 220px;
  }

  .hero-index {
    display: none;
  }

  .hero-main {
    padding: 80px 40px;
  }

  .hero-right {
    padding: 0 24px 60px;
  }

  .metrics-band {
    padding: 48px 40px;
  }

  footer {
    padding: 24px 40px;
  }

  #contact {
    padding: 100px 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--grey-light);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-item:nth-child(2),
  .value-item:nth-child(4) {
    border-right: none;
  }

  .value-item:nth-child(n+3) {
    border-top: 1px solid var(--grey-light);
  }

  .value-item:last-child {
    border-right: 1px solid var(--grey-light);
    grid-column: span 2;
  }

  .values-h3 {
    text-align: left;
    margin-top: 10px;
  }

  .services-transition {
    margin-left: 0;
    padding-left: 20px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(2) {
    border-right: none;
  }

  .step:nth-child(3) {
    border-top: 1px solid var(--grey-light);
  }

  .step:nth-child(2) .step-connector,
  .step:nth-child(4) .step-connector {
    display: none;
  }

  #about {
    gap: 0 48px;
  }

  .about-manifesto {
    padding-left: 40px;
  }
}


@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }


  nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 56px 20px;
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-index,
  .hero-right {
    display: none;
  }

  .hero-main {
    grid-column: 1;
    padding: 44px 20px 52px;
    justify-content: flex-end;
  }

  .hero-h1 {
    font-size: clamp(58px, 17vw, 90px);
    margin-bottom: 24px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
    font-size: 13px;
    min-height: 58px;
    padding: 20px 24px;
  }

  .btn-ghost {
    justify-content: center;
    font-size: 13px;
    min-height: 50px;
  }


  #about {
    display: block;
  }

  .about-manifesto {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-left: 0;
    padding-top: 36px;
    margin-top: 36px;
  }

  .manifesto-statement {
    font-size: 17px;
  }

  .services-header {
    display: block;
  }

  .services-header .right {
    margin-top: 14px;
  }

  .services-header .right p {
    margin-left: 0;
    max-width: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none !important;
    border-bottom: 1px solid var(--grey-light);
  }

  .value-item:last-child {
    border-bottom: none;
    grid-column: auto;
  }

  .values-h3 {
    text-align: left;
  }


  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--grey-light);
  }

  .step:last-child {
    border-bottom: none;
  }

  .step-connector {
    display: none !important;
  }

  #diff {
    display: block;
  }

  #diff .left {
    position: static;
    margin-bottom: 36px;
  }


  .metrics-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
    gap: 36px 0;
  }

  .metric {
    padding: 0 12px;
  }

  .metric:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .14);
  }

  .metric:nth-child(even) {
    border-right: none;
  }

  .metric-num {
    font-size: 52px;
  }


  .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    background: none;
    border: none;
    gap: 0;
    scrollbar-width: none;
  }

  .testi-grid::-webkit-scrollbar {
    display: none;
  }

  .testi-card {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 1px solid var(--grey-light);
    padding: 28px 20px;
  }

  .testi-dots {
    display: flex;
  }

  .testi-quote {
    font-size: 14px;
  }


  .faq-q {
    font-size: 15px;
    min-height: 64px;
  }

  .faq-list {
    max-width: none;
  }

  #contact {
    display: block;
    padding: 64px 20px;
  }

  .contact-h2 {
    font-size: clamp(40px, 14vw, 64px);
  }

  .contact-sub {
    font-size: 14px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-emails {
    flex-direction: column;
  }

  .email-copy-btn {
    padding: 14px 16px;
    gap: 10px;
  }

  .email-address {
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .btn-white,
  .btn-outline-white {
    width: 100%;
    font-size: 13px;
    min-height: 58px;
    padding: 20px 24px;
  }

  .contact-info {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-left: 0;
    padding-top: 36px;
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .contact-detail {
    margin-bottom: 0;
  }


  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }

  .footer-links {
    gap: 16px;
  }


  .back-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }


  .section-h2 {
    font-size: clamp(32px, 10vw, 52px);
  }
}


.footer-acc-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--grey);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  padding: 8px 16px;
  margin-top: 16px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
}

.footer-acc-btn:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(0, 64, 255, 0.1);
}

.acc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.acc-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #111;
  border: 1px solid var(--blue);
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.acc-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-head {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#acc-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-x {
  background: none;
  border: none;
  color: var(--grey);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-x:hover {
  color: #FF5F56;
}

.acc-grid {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.acc-row-h {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 12px;
  background: #111;
}

.nfs-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.acc-btn {
  background: #1A1A1A;
  border: none;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.acc-btn:hover {
  background: #222;
}

.acc-btn[aria-pressed="true"] .nfs-val {
  color: var(--blue);
}

.nfs-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  transition: color 0.2s;
}

.acc-foot {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0A0A0A;
}

.acc-reset-btn {
  width: 100%;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--grey);
  padding: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.acc-reset-btn:hover {
  background: var(--white);
  color: var(--black);
}


body.high-contrast {
  filter: contrast(120%) saturate(120%);
  background: #000;
  color: #FFF;
}

body.monochrome {
  filter: grayscale(100%);
}

body.reduced-motion * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

body.readable-font,
body.readable-font * {
  font-family: 'Arial', 'Helvetica', sans-serif !important;
}