/* ------------------------- Variables ------------------------------------------- */

:root {
  --color-light: var(--color-neutral-200);
  --color-dark: var(--color-neutral-800);
  --color-primary: #ff4c24;
  --color-neutral-100: #ffffff;
  --color-neutral-200: #efeeec;
  --color-neutral-300: #e3e1de;
  --color-neutral-400: #cbc8c5;
  --color-neutral-500: #818180;
  --color-neutral-600: #2c2c2c;
  --color-neutral-700: #1f1f1f;
  --color-neutral-800: #131313;
  --color-neutral-900: #000000;
  --color-white: var(--color-neutral-100);
  --color-black: var(--color-neutral-900);
  --color-error: var(--color-primary);
  --color-success: #0ba954;
  --cubic-default: cubic-bezier(0.65, 0.05, 0, 1);
  --duration-default: 0.735s;
  --animation-default: var(--duration-default) var(--cubic-default);
  --gap: 2em;
  --section-padding: calc(3.5em + (var(--gap) * 2));
  --container-padding: 2em;
  --header-height: calc(1.5em + (var(--gap) * 2));
  --footer-height: calc(2.785em + (var(--gap) * 2));
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5em;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 1em;
  }
}

/* Desktop */
:root {
  --size-unit: 16;
  /* body font-size in design - no px */
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    color: #aee6ff;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 1.13em;
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 320px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(80, 120, 255, 0.08) 0%, rgba(30, 40, 60, 0.01) 80%);
    pointer-events: auto;
    z-index: 0;
    --size-container-max: 479px;
  }
}

/* ------------------------- Hide Scrollbar -------------------------------------------------- */

body ::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Chrome, Safari, Opera */
body {
  -ms-overflow-style: none;
}

/* IE & Edge */
html {
  scrollbar-width: none;
}

/* ------------------------- Reset -------------------------------------------------- */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  -webkit-font-smoothing: antialiased;
}

svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

a {
  color: inherit;
}

/* Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}

/* ------------------------- Body Styles ------------------------------------------- */

body {
  background-color: var(--color-neutral-900);
  color: var(--color-neutral-600);
  font-size: 1vw;
  margin: 0;
  padding: 0;
  cursor: url("https://cdn.prod.website-files.com/6708f85ff3d3cba6aff436fb/671251b239d7aeb290a31ac5_cursor-default%402x.svg") 2 0, auto;
}

a,
button {
  cursor: url("https://cdn.prod.website-files.com/6708f85ff3d3cba6aff436fb/671251b212e6b71494aa67ff_cursor-pointer%402x.svg") 12 0, pointer;
}

/* ------------------------- Parallax Styles ------------------------------------------- */

.parallax {
  width: 100%;
  position: relative;
  overflow: hidden;
  contain: layout paint;
}

.parallax__header {
  z-index: 2;
  padding: var(--section-padding) var(--container-padding);
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.parallax__visuals {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 120%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.parallax__layers {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.parallax__layer-img {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 117.5%;
  position: absolute;
  top: -17.5%;
  left: 0;
  will-change: transform;
  transform: translateZ(0);
}

.parallax__layer-title {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.parallax__title {
  pointer-events: auto;
  text-align: center;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-right: .075em;
  font-family: PP Neue Corp Wide, sans-serif;
  font-size: 11vw;
  font-weight: 800;
  line-height: 1;
  position: relative;
  transform: translateY(-80px);
}

.parallax__fade {
  z-index: 30;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  --color-dark-rgb: 0, 0, 0;
  background: linear-gradient(to top, rgba(var(--color-dark-rgb), 1) 0%, rgba(var(--color-dark-rgb), 0.738) 19%, rgba(var(--color-dark-rgb), 0.541) 34%, rgba(var(--color-dark-rgb), 0.382) 47%, rgba(var(--color-dark-rgb), 0.278) 56.5%, rgba(var(--color-dark-rgb), 0.194) 65%, rgba(var(--color-dark-rgb), 0.126) 73%, rgba(var(--color-dark-rgb), 0.075) 80.2%, rgba(var(--color-dark-rgb), 0.042) 86.1%, rgba(var(--color-dark-rgb), 0.021) 91%, rgba(var(--color-dark-rgb), 0.008) 95.2%, rgba(var(--color-dark-rgb), 0.002) 98.2%, transparent 100%);
}

.parallax__black-line-overflow {
  z-index: 20;
  background-color: var(--color-black);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.parallax__content {
  padding: clamp(60px, 8vh, 120px) 0;
  justify-content: center;
  align-items: center;
  min-height: auto;
  display: flex;
  position: relative;
  z-index: 5;
  background: #000;
}

/* --- Tool Ticker --- */
.tool-ticker {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 10% 0 0;
  overflow: hidden;
}

.tool-ticker__label {
  font-family: monospace;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  text-align: center;
}

.tool-ticker__marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tool-ticker__track {
  display: flex;
  gap: 48px;
  padding-right: 48px;
  animation: tool-ticker-scroll 40s linear infinite;
  flex-shrink: 0;
}

.tool-ticker__marquee:hover .tool-ticker__track {
  animation-play-state: paused;
}

@keyframes tool-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.tool-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.tool-ticker__item:hover {
  opacity: 1;
}

.tool-ticker__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.tool-ticker__icon--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.tool-ticker__name {
  font-family: monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Transitional Strip (60vh) --- */
.services-transition-strip {
  min-height: 25vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  margin-bottom: 40px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 50%, #111 0%, #050505 70%);
}

.sts__inner {
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.sts__scan-lines:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02)0 2px, transparent 2px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: scan-flicker 6s linear infinite;
  will-change: opacity;
}

.sts__scan-lines.scroll-paused:before {
  animation-play-state: paused;
}

@keyframes scan-flicker {

  0%,
  100% {
    opacity: 0.05;
  }

  50% {
    opacity: 0.08;
  }
}

.sts__marquee {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  font-family: 'PP Neue Montreal', sans-serif;
  font-size: clamp(1.08rem, 1vw, .9rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  white-space: nowrap;
  will-change: transform;
  transform: translateZ(0);
}

.sts__marquee span {
  display: inline-block;
  animation: sts-marquee 45s linear infinite;
  padding-right: 2rem;
}

@keyframes sts-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Page Transition Portal styles removed to use shared global styles.css version for consistency. */


/* ==========================================================================
   Services Content — Styles recovered from switchboard-base.css
   Scoped to .services-content (was .demo-switchboard)
   ========================================================================== */

/* Container reset + scrollbar hiding */
.services-content,
.services-content .page {
  width: 100%;
  margin: 0;
  padding: 0;
  color: white;
  max-width: 100vw;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.services-content ::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

/* CSS Custom Properties */
.services-content {
  /* Backgrounds */
  --bg-primary: #000000;
  --bg-secondary: rgba(10, 10, 10, 0.6);
  --bg-tertiary: rgba(17, 17, 17, 0.8);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-tertiary: #888888;

  /* Brand Gradients */
  --gradient-blue: linear-gradient(135deg, #0b5fff 0%, #7b2cbf 100%);
  --gradient-purple: linear-gradient(135deg, #7b2cbf 0%, #ff006e 100%);
  --gradient-pink: linear-gradient(135deg, #ff006e 0%, #ff9e00 100%);
  --gradient-green: linear-gradient(135deg, #06ffa5 0%, #0b5fff 100%);
  --gradient-orange: linear-gradient(135deg, #ff9e00 0%, #ff006e 100%);

  /* Accent Colors */
  --accent-blue: #0b5fff;
  --accent-purple: #7b2cbf;
  --accent-pink: #ff006e;
  --accent-green: #06ffa5;
  --accent-orange: #ff9e00;

  /* Neobrutalist Shadows */
  --shadow-brutal: 8px 8px 0 rgba(0, 0, 0, 0.9);
  --shadow-brutal-blue: 8px 8px 0 rgba(11, 95, 255, 0.4);
  --shadow-brutal-green: 8px 8px 0 rgba(6, 255, 165, 0.4);
  --shadow-brutal-hover: 12px 12px 0 rgba(0, 0, 0, 0.9);

  /* Glass Effects */
  --glass-border: 4px;
  --glass-blur: 12px;

  /* Contact Cubes Neon */
  --neon: rgba(255, 255, 255, 0.85);
  --neon-glow: 0 0 8px rgba(255, 255, 255, 0.3);
}


/* Page base + box-sizing */
.services-content .page {
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.services-content * {
  font-family: monospace;
  box-sizing: border-box;
}

/* Single page layout (was part of multi-page switchboard) */
.services-content .page {
  position: relative;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: auto;
  background: #000000;
}


/* ==========================================================================
   Service Panels — Spatial navigation for service categories
   ========================================================================== */

.services-panels {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: #000;
  perspective: 1000px;
}

.sp-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}

.sp-wrap.sp-show-all {
  transform: rotateY(-12deg) scale(0.30);
}

.sp-panel-wrap {
  width: 100%;
  height: 100%;
  perspective: 2000px;
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.sp-panel-wrap.sp-animate {
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.sp-panel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  will-change: transform;
}

.sp-panel[data-x-pos="-1"] {
  left: -100%;
}

.sp-panel[data-x-pos="1"] {
  left: 100%;
}

.sp-panel[data-y-pos="-1"] {
  top: 100%;
}

.sp-panel[data-y-pos="1"] {
  top: -100%;
}

.sp-panel__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Panel backgrounds */
.sp-panel--home {
  background: #000;
}

.sp-panel--consulting {
  background: radial-gradient(ellipse at 30% 40%, rgba(11, 95, 255, 0.08) 0%, #000 70%);
}

.sp-panel--automation {
  background: radial-gradient(ellipse at 60% 50%, rgba(6, 255, 165, 0.08) 0%, #000 70%);
}

.sp-panel--development {
  background: radial-gradient(ellipse at 40% 60%, rgba(123, 44, 191, 0.08) 0%, #000 70%);
}

.sp-panel--contact {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 158, 0, 0.06) 0%, #000 70%);
}

/* --- Panel Navigation --- */
.sp-nav {
  cursor: pointer;
  position: absolute;
  user-select: none;
  z-index: 10;
  font-family: "Press Start 2P", cursive !important;
  font-size: clamp(20px, 2.25vw, 35px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  padding: 16px 28px;
  border: none;
  border-radius: 0;
  background: transparent;
  display: block;
  text-align: center;
  white-space: nowrap;

  /* 3D perspective tilt — always on */
  transform: perspective(200px) rotateX(10deg);

  /* Exact .header-wrap text-shadow from reference */
  text-shadow:
    0 -1px 0 #fff,
    0 1px 0 #004d40,
    0 2px 0 #00483B,
    0 3px 0 #004639,
    0 4px 0 #004336,
    0 5px 0 #004134,
    0 6px 0 #003F32,
    0 7px 0 #003D30,
    0 8px 0 #003A2D,
    0 9px 0 #00382B,
    0 10px 0 #003528,
    0 11px 0 #003225,
    0 12px 0 #002F22,
    0 13px 0 #002B1E,
    0 14px 0 #00281C,
    0 15px 0 #001F13,
    0 22px 30px rgba(0, 0, 0, 0.9),
    0 22px 30px rgba(0, 0, 0, 0.9),
    0 22px 15px rgba(0, 0, 0, 0.9),
    0 11px 15px rgba(0, 0, 0, 0.9),
    0 15px 20px rgba(0, 0, 0, 0.9),
    0 15px 11px rgba(0, 0, 0, 0.9),
    0 16px 11px rgba(0, 0, 0, 0.9);

  /* Delayed spring-back — exact match */
  transition: text-shadow 0.3s ease 0.3s, transform 0.3s ease 0.3s, letter-spacing 0.3s ease 0.3s;
}

/* Hover: collapse shadow, push down — exact match to .header-wrap:hover */
.sp-nav:hover {
  transition: text-shadow 0.33s ease, transform 0.3s ease, letter-spacing 0.3s ease;
  text-shadow: 0 0 0 #004134, 0 1px 0 #00483B, 0 2px 0 #003528, 0 3px 3px rgba(0, 0, 0, 0.9);
  transform: translate(0px, 15px) perspective(200px) rotateX(10deg);
  letter-spacing: 0.125em;
}

/* Interactive zone detection — subtle skew via pseudo-element (like reference .btn-left/:before) */
/* Note: transform-based zone skew removed — conflicts with positional transforms.
   JS still assigns nav-left/nav-center/nav-right classes for future use. */

.sp-nav::before,
.sp-nav::after {
  font-size: 1.5em;
  display: inline;
  opacity: 1;
  vertical-align: middle;
}

/* Directional arrow glyphs — indicate navigation direction */
.sp-nav--up::before {
  content: "▲  ";
}

.sp-nav--down::after {
  content: "  ▼";
}

.sp-nav--left::before {
  content: "▲  ";
}

/* rotated -90deg → ◄ */
.sp-nav--right::after {
  content: "  ▲";
}

/* rotated  90deg → ► */

/* Diagonal navs — no arrows, corner position implies direction */
.sp-nav--right-top::after,
.sp-nav--left-top::before,
.sp-nav--right-down::after,
.sp-nav--left-down::before {
  content: none;
}

/* Positioning — base transform includes perspective tilt */
.sp-nav--up {
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%) perspective(200px) rotateX(10deg);
}

.sp-nav--up:hover {
  transform: translateX(-50%) translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--down {
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) perspective(200px) rotateX(10deg);
}

.sp-nav--down:hover {
  transform: translateX(-50%) translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--left {
  left: 25px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(-90deg) perspective(300px) rotateX(10deg);
  transform-origin: center;
}

.sp-nav--left:hover {
  transform: translateY(-50%) translateX(-50%) rotate(-90deg) translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--right {
  right: 25px;
  top: 50%;
  transform: translateY(-50%) translateX(50%) rotate(90deg) perspective(200px) rotateX(10deg);
  transform-origin: center;
}

.sp-nav--right:hover {
  transform: translateY(-50%) translateX(50%) rotate(90deg) translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--right-top {
  right: 1.5rem;
  top: 1.5rem;
  transform: perspective(200px) rotateX(10deg);
}

.sp-nav--right-top:hover {
  transform: translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--left-top {
  left: 1.5rem;
  top: 1.5rem;
  transform: perspective(200px) rotateX(10deg);
}

.sp-nav--left-top:hover {
  transform: translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--right-down {
  right: 1.5rem;
  bottom: 1.5rem;
  transform: perspective(200px) rotateX(10deg);
}

.sp-nav--right-down:hover {
  transform: translate(0, 15px) perspective(200px) rotateX(10deg);
}

.sp-nav--left-down {
  left: 1.5rem;
  bottom: 1.5rem;
  transform: perspective(200px) rotateX(10deg);
}

.sp-nav--left-down:hover {
  transform: translate(0, 15px) perspective(200px) rotateX(10deg);
}

/* "Let's talk" shortcut on consulting panel — above the bottom row */
.sp-nav--down-talk {
  top: 5rem;
  left: 50%;
  transform: translateX(-50%) perspective(200px) rotateX(10deg);
}

.sp-nav--down-talk:hover {
  transform: translateX(-50%) translate(0, 15px) perspective(200px) rotateX(10deg);
}

/* --- Zoom Button (View All) --- same style as .header-wrap, just bigger */
.sp-zoom {
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  user-select: none;
  z-index: 20;
  font-family: "Press Start 2P", cursive !important;
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  display: block;
  text-align: center;

  /* 3D perspective tilt */
  transform: perspective(200px) rotateX(10deg);

  /* Exact .header-wrap text-shadow from reference */
  text-shadow:
    0 -1px 0 #fff,
    0 1px 0 #004d40,
    0 2px 0 #00483B,
    0 3px 0 #004639,
    0 4px 0 #004336,
    0 5px 0 #004134,
    0 6px 0 #003F32,
    0 7px 0 #003D30,
    0 8px 0 #003A2D,
    0 9px 0 #00382B,
    0 10px 0 #003528,
    0 11px 0 #003225,
    0 12px 0 #002F22,
    0 13px 0 #002B1E,
    0 14px 0 #00281C,
    0 15px 0 #001F13,
    0 22px 30px rgba(0, 0, 0, 0.9),
    0 22px 30px rgba(0, 0, 0, 0.9),
    0 22px 15px rgba(0, 0, 0, 0.9),
    0 11px 15px rgba(0, 0, 0, 0.9),
    0 15px 20px rgba(0, 0, 0, 0.9),
    0 15px 11px rgba(0, 0, 0, 0.9),
    0 16px 11px rgba(0, 0, 0, 0.9);

  /* Delayed spring-back — exact match */
  transition: text-shadow 0.3s ease 0.3s, transform 0.3s ease 0.3s, letter-spacing 0.3s ease 0.3s;
}

.sp-zoom:hover {
  transition: text-shadow 0.33s ease, transform 0.3s ease, letter-spacing 0.3s ease;
  text-shadow: 0 0 0 #004134, 0 1px 0 #00483B, 0 2px 0 #003528, 0 3px 3px rgba(0, 0, 0, 0.9);
  transform: translate(0px, 15px) perspective(200px) rotateX(10deg);
  letter-spacing: 0.125em;
}

.sp-show-all .sp-zoom {
  pointer-events: none;
}

/* Zoom-out panel overlay */
.sp-panel::before {
  background-color: transparent;
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background-color 0.3s ease;
  z-index: 20;
}

.sp-show-all .sp-panel::before {
  pointer-events: all;
  cursor: pointer;
}

.sp-show-all .sp-panel:hover::before {
  background-color: rgba(6, 255, 165, 0.06);
}

/* --- Category Panel Content --- */
.sp-category {
  width: 100%;
  max-width: 600px;
}

.sp-category__header {
  font-family: monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-category__prompt {
  color: #06ffa5;
  margin-right: 8px;
}

.sp-category__command {
  color: rgba(255, 255, 255, 0.5);
}

.sp-category__title {
  font-family: monospace;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.sp-panel--consulting .sp-category__title {
  color: #0b5fff;
}

.sp-panel--automation .sp-category__title {
  color: #06ffa5;
}

.sp-panel--development .sp-category__title {
  color: #7b2cbf;
}

.sp-category__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- Service Items --- */
.sp-service {
  appearance: none;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  font-family: monospace;
  font-size: clamp(14px, 1.2vw, 16px);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sp-service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(6, 255, 165, 0.1) 0%, transparent 100%);
  transition: width 0.3s ease;
}

.sp-service:hover::before,
.sp-service:focus::before {
  width: 100%;
}

.sp-service:hover,
.sp-service:focus {
  background: rgba(6, 255, 165, 0.06);
  border-color: #06ffa5;
  transform: translateX(4px);
  outline: none;
}

.sp-service__name {
  flex: 1;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

.sp-service:hover .sp-service__name,
.sp-service:focus .sp-service__name {
  color: #06ffa5;
}

.sp-service__price {
  color: #ff9e00;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  padding: 4px 8px;
  background: rgba(255, 158, 0, 0.08);
  border: 1px solid rgba(255, 158, 0, 0.2);
  transition: all 0.2s ease;
}

.sp-service:hover .sp-service__price,
.sp-service:focus .sp-service__price {
  color: #06ffa5;
  background: rgba(6, 255, 165, 0.08);
  border-color: rgba(6, 255, 165, 0.3);
}

/* --- Contact / CTA Panel --- */
.sp-cta {
  text-align: center;
  max-width: 700px;
}

.sp-cta__guarantee {
  font-family: monospace;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  color: #06ffa5;
  margin: 0 0 24px;
  line-height: 1.3;
}

.sp-cta__sub {
  font-family: monospace;
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 40px;
  font-style: italic;
}

/* --- Edge-indicator fade animation --- */
@keyframes edgeFadeIn {
  0% {
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/* --- Responsive: Mobile edge-indicator nav --- */
@media (max-width: 767px) {

  /* Base: strip away retro 3D, use clean glow text */
  .sp-nav {
    font-family: "Press Start 2P", cursive !important;
    font-size: 8px;
    padding: 0;
    text-shadow: 0 0 12px rgba(6, 255, 165, 0.5) !important;
    color: rgba(6, 255, 165, 0.6);
    letter-spacing: 0.1em;
    transition: color 0.3s ease, background 0.3s ease;
    animation: edgeFadeIn 5s ease-out forwards;
  }

  .sp-nav:hover,
  .sp-nav:active {
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.8) !important;
    color: rgba(6, 255, 165, 1);
    letter-spacing: 0.1em;
  }

  /* Hide desktop arrows on mobile — edge position implies direction */
  .sp-nav::before,
  .sp-nav::after {
    display: none !important;
  }

  /* ---- Top edge strip ---- */
  .sp-nav--up {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    background: linear-gradient(to bottom, rgba(6, 255, 165, 0.06) 0%, transparent 100%);
    box-shadow: inset 0 2px 0 rgba(6, 255, 165, 0.3);
  }

  .sp-nav--up:hover,
  .sp-nav--up:active {
    transform: none;
    background: linear-gradient(to bottom, rgba(6, 255, 165, 0.12) 0%, transparent 100%);
    box-shadow: inset 0 2px 0 rgba(6, 255, 165, 0.6);
  }

  /* ---- Bottom edge strip ---- */
  .sp-nav--down {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    background: linear-gradient(to top, rgba(6, 255, 165, 0.06) 0%, transparent 100%);
    box-shadow: inset 0 -2px 0 rgba(6, 255, 165, 0.3);
  }

  .sp-nav--down:hover,
  .sp-nav--down:active {
    transform: none;
    background: linear-gradient(to top, rgba(6, 255, 165, 0.12) 0%, transparent 100%);
    box-shadow: inset 0 -2px 0 rgba(6, 255, 165, 0.6);
  }

  /* ---- Left edge strip ---- */
  .sp-nav--left {
    left: 0;
    top: 40px;
    bottom: 40px;
    right: auto;
    width: 28px;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    transform-origin: center;
    font-size: 7px;
    background: linear-gradient(to right, rgba(6, 255, 165, 0.04) 0%, transparent 100%);
    box-shadow: inset 2px 0 0 rgba(6, 255, 165, 0.25);
  }

  .sp-nav--left:hover,
  .sp-nav--left:active {
    transform: rotate(180deg);
    background: linear-gradient(to right, rgba(6, 255, 165, 0.1) 0%, transparent 100%);
    box-shadow: inset 2px 0 0 rgba(6, 255, 165, 0.6);
  }

  /* ---- Right edge strip ---- */
  .sp-nav--right {
    right: 0;
    top: 40px;
    bottom: 40px;
    left: auto;
    width: 28px;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    transform: none;
    transform-origin: center;
    font-size: 7px;
    background: linear-gradient(to left, rgba(6, 255, 165, 0.04) 0%, transparent 100%);
    box-shadow: inset -2px 0 0 rgba(6, 255, 165, 0.25);
  }

  .sp-nav--right:hover,
  .sp-nav--right:active {
    transform: none;
    background: linear-gradient(to left, rgba(6, 255, 165, 0.1) 0%, transparent 100%);
    box-shadow: inset -2px 0 0 rgba(6, 255, 165, 0.6);
  }

  /* ---- Corner labels ---- */
  .sp-nav--left-top {
    left: 6px;
    top: 6px;
    bottom: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: 8px;
    transform: none;
    font-size: 7px;
  }

  .sp-nav--left-top:hover {
    transform: none;
  }

  .sp-nav--right-top {
    right: 6px;
    top: 6px;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 8px;
    transform: none;
    font-size: 7px;
  }

  .sp-nav--right-top:hover {
    transform: none;
  }

  .sp-nav--left-down {
    left: 6px;
    bottom: 6px;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: 8px;
    transform: none;
    font-size: 7px;
  }

  .sp-nav--left-down:hover {
    transform: none;
  }

  .sp-nav--right-down {
    right: 6px;
    bottom: 6px;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 8px;
    transform: none;
    font-size: 7px;
  }

  .sp-nav--right-down:hover {
    transform: none;
  }

  /* "Let's talk" shortcut — mobile: corner label */
  .sp-nav--down-talk {
    bottom: 6px;
    left: 50%;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: 8px;
    transform: translateX(-50%);
    font-size: 7px;
  }

  .sp-nav--down-talk:hover {
    transform: translateX(-50%);
  }

  /* ---- View All — inside top strip, right side ---- */
  .sp-zoom {
    right: 10px;
    top: 8px;
    left: auto;
    bottom: auto;
    font-size: 7px;
    text-shadow: 0 0 12px rgba(6, 255, 165, 0.4) !important;
    color: rgba(6, 255, 165, 0.35);
    transform: none !important;
    animation: edgeFadeIn 5s ease-out forwards;
  }

  .sp-zoom:hover,
  .sp-zoom:active {
    transform: none !important;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.8) !important;
    color: rgba(6, 255, 165, 1);
  }

  /* Give panel content room to clear side edge strips */
  .sp-panel__content {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }

  /* ---- Non-nav mobile overrides ---- */
  .sp-wrap.sp-show-all {
    transform: rotateY(-8deg) scale(0.26);
  }

  .sp-category {
    max-width: 100%;
  }

  .sp-service {
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-panel-wrap {
    transition: none;
  }

  .sp-wrap {
    transition: none;
  }

  .sp-service::before {
    display: none;
  }

  .sp-nav,
  .sp-zoom {
    animation: none;
    opacity: 0.3;
  }
}


.services-content .service-details {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 70vh;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border-top: 4px solid var(--accent-green);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.7);
}

.services-content .service-details[aria-hidden="false"] {
  transform: translateY(0);
}

.services-content .service-details__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: system-ui;
  font-weight: 300;
}

.services-content .service-details__close:hover,
.services-content .service-details__close:focus {
  background: rgba(255, 0, 110, 0.15);
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  transform: rotate(90deg);
}

.services-content .service-details__content {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .services-content .service-details__content {
    padding: 32px 24px;
  }
}

.services-content .service-details__header {
  font-family: Futura, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-content .service-details__prompt {
  display: none;
}

.services-content .service-details__command {
  color: var(--text-tertiary);
}

.services-content .service-details__body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .services-content .service-details__body {
    font-size: 15px;
  }
}

.services-content .service-details__body h3 {
  color: var(--text-primary);
  font-family: Futura, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #0b5fff, #7b2cbf, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-content .service-details__body p {
  margin: 0 0 20px;
  color: var(--text-secondary);
}

.services-content .service-details__body .detail-section {
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.services-content .service-details__body .detail-label {
  color: var(--accent-blue);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: Futura, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.services-content .service-details__body .detail-value {
  color: var(--text-secondary);
  padding-left: 0;
  line-height: 1.7;
}

.services-content .service-details__body .detail-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  text-decoration: none;
  font-family: Futura, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.services-content .service-details__body .detail-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-green);
  transition: left 0.3s ease;
  z-index: -1;
}

.services-content .service-details__body .detail-cta:hover::before,
.services-content .service-details__body .detail-cta:focus::before {
  left: 0;
}

.services-content .service-details__body .detail-cta:hover,
.services-content .service-details__body .detail-cta:focus {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 255, 165, 0.3);
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .services-content .service-details {
    transition: transform 0.1s ease;
  }
}


.services-content #p1 {
  display: block;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  position: relative;
}

.services-content .lander {
  width: 100%;
  min-height: 90%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas:
    "content visual"
    "action  visual";
  grid-template-rows: auto auto;
  align-items: start;
  gap: 48px;
  padding: clamp(44px, 6vh, 72px) clamp(24px, 6vw, 80px) clamp(44px, 6vh, 72px);
  position: relative;
  overflow: hidden;
}

/* Animated background lines */
.services-content .lander__bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 255, 165, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 255, 165, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  animation: linesMove 20s linear infinite;
  pointer-events: none;
}

@keyframes linesMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(80px, 80px);
  }
}

.services-content .lander__content {
  grid-area: content;
  position: relative;
  z-index: 1;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 0;
}

.services-content .lander__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 32px;
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--accent-green);
  background: rgba(6, 255, 165, 0.05);
}

.services-content .lander__headline {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 20px 0 40px 0;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.services-content .lander__headline-line {
  display: block;
}

.services-content .lander__headline-line--accent {
  background: linear-gradient(135deg, #06ffa5 0%, #0b5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.services-content .lander__headline-line--accent::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--gradient-green);
}

.services-content .lander__punch {
  font-size: 30px;
  font-weight: 400;
  color: rgb(234 244 255 / 70%);
  margin: 0 0 28px 0;
  line-height: 1.3;
}

.services-content .lander__action {
  grid-area: action;
  display: flex;
  gap: 20px;
  flex-direction: row;
  margin-top: 24px;
  min-width: 0;
}

.services-content .lander__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 4px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.services-content .lander__btn--primary {
  background: var(--gradient-green);
  border-color: rgba(0, 0, 0, 0.9);
  color: #000000;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.9);
}

.services-content .lander__btn--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.9);
}

.services-content .lander__btn--ghost {
  background: transparent;
  border-color: rgba(9, 153, 255, 0.632);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.1);
}

.services-content .lander__btn--ghost:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(11, 95, 255, 0.05);
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(11, 95, 255, 0.2);
}

.services-content .lander__btn-arrow {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.services-content .lander__btn:hover .lander__btn-arrow {
  transform: translateX(4px);
}

.services-content .lander__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.services-content .lander__proof-item {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-content .lander__proof-divider {
  font-size: 18px;
  opacity: 0.3;
}

/* Terminal visual */
.services-content .lander__visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
}

.services-content .lander__terminal {
  width: min(620px, 100%);
  max-width: 100%;
  min-width: 0;
  background: rgba(0, 0, 0, 0.6);
  border: 4px solid rgba(6, 255, 165, 0.4);
  box-shadow: 12px 12px 0 rgba(6, 255, 165, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

.services-content .lander__terminal-header {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(6, 255, 165, 0.1) 0%, transparent 100%);
  border-bottom: 2px solid rgba(6, 255, 165, 0.2);
}

.services-content .lander__terminal-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.services-content .lander__terminal-dot:nth-child(1) {
  background: rgba(255, 0, 110, 0.5);
  border-color: var(--accent-pink);
}

.services-content .lander__terminal-dot:nth-child(2) {
  background: rgba(255, 158, 0, 0.5);
  border-color: var(--accent-orange);
}

.services-content .lander__terminal-dot:nth-child(3) {
  background: rgba(6, 255, 165, 0.5);
  border-color: var(--accent-green);
}

.services-content .lander__terminal-body {
  padding: 18px 18px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
  min-width: 0;
}

/* Scrolling ASCII banner */
.services-content .lander__banner-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  padding: 4px 0 10px;
  max-width: 100%;
  min-width: 0;
  contain: layout paint;
  margin-bottom: 20px;
  margin-top: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.services-content .lander__banner-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  animation: landerBannerMarquee 18s linear infinite;
}

.services-content .lander__ascii-banner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: max-content;
  padding-right: 64px;
}

.services-content .lander__banner-line {
  white-space: pre;
  word-break: keep-all;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: clamp(11px, 0.75vw, 13px);
  line-height: 1.05;
  letter-spacing: 0;
  font-variant-ligatures: none;
  color: rgba(214, 190, 255, 0.85);
}

.services-content .lander__banner-line span {
  transition: color 0.08s linear;
}

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

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

.services-content .lander__terminal-line {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.services-content .lander__terminal-prompt {
  color: var(--accent-green);
  margin-right: 8px;
  font-weight: 700;
}

.services-content .lander__terminal-line--success {
  color: var(--accent-green);
  padding-left: 24px;
  margin-bottom: 12px;
}

.services-content .lander__terminal-line--cursor {
  display: flex;
  align-items: center;
}

.services-content .lander__cursor {
  display: inline-block;
  width: 10px;
  height: 16px;
  background: var(--accent-green);
  animation: cursorBlink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes cursorBlink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .services-content .lander {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "action";
    grid-template-rows: auto auto auto;
    gap: 20px;
    padding: 24px;
  }

  .services-content .lander__headline {
    font-size: clamp(36px, 9vw, 56px);
  }

  .services-content .lander__punch {
    font-size: clamp(20px, 5vw, 28px);
  }

  .services-content .lander__action {
    flex-direction: column;
    gap: 14px;
  }

  .services-content .lander__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .services-content .lander__terminal-body {
    font-size: 12px;
    padding: 16px 14px;
  }

  .services-content .lander__banner-marquee {
    height: 96px;
  }

  .services-content .lander__banner-track {
    animation-duration: 24s;
  }
}

@media (prefers-reduced-motion: reduce) {

  .services-content .lander__bg-lines,
  .services-content .lander__cursor {
    animation: none !important;
  }

  .services-content .lander__banner-track {
    animation-duration: 34s;
  }
}

/* ==========================================================================
   Lander overrides inside Service Panels — single column centered
   ========================================================================== */

.services-panels .lander {
  grid-template-columns: 1fr;
  grid-template-areas: "content" "action";
  grid-template-rows: auto auto;
  gap: clamp(12px, 2vh, 24px);
  min-height: auto;
  max-width: min(800px, 90vw);
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  padding: clamp(16px, 3vh, 60px) clamp(16px, 3vw, 60px);
  overflow: visible;
}

/* Hide the blue accent underline bar */
.services-panels .lander__headline-line--accent::after {
  display: none;
}

/* Hide decorative bg-lines inside panels */
.services-panels .lander__bg-lines {
  display: none;
}

.services-panels .lander__headline {
  text-align: center;
  font-size: clamp(24px, 5vw, 50px);
  margin: 0 0 clamp(8px, 1.5vh, 20px) 0;
}

.services-panels .lander__punch {
  text-align: center;
  font-size: clamp(16px, 2.5vw, 30px);
  margin: 0 0 clamp(8px, 1.5vh, 16px) 0;
}

.services-panels .lander__action {
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 20px);
}

.services-panels .lander__btn {
  padding: clamp(10px, 1.5vh, 18px) clamp(16px, 2.5vw, 32px);
  font-size: clamp(11px, 1.2vw, 14px);
}

.services-panels .lander__visual {
  display: none;
}