@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css);
/* -------------------------------------------

main

------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 150%;
  overscroll-behavior: none;
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 15px;
  }
}

*::selection {
  color: #fff;
  background-color: var(--accent, rgb(0, 113, 227));
}

.mil-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.container {
  pointer-events: all;
}

.mil-relative {
  position: relative;
}

.mil-o-hidden {
  overflow: hidden;
}

.mil-flex {
  display: flex;
}

.mil-vert-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .mil-mobile-hidden {
    display: none;
  }
}

section {
  position: relative;
  overflow: hidden;
}

/* -------------------------------------------

typography

------------------------------------------- */
h1,
.mil-h1,
h2,
.mil-h12,
h3,
.mil-h3,
h4,
.mil-h4,
h5,
.mil-h5,
h6,
.mil-h6 {
  font-family: "Outfit", sans-serif;
  color: rgb(0, 0, 0);
  font-weight: 500;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  h1 br,
  .mil-h1 br,
  h2 br,
  .mil-h12 br,
  h3 br,
  .mil-h3 br,
  h4 br,
  .mil-h4 br,
  h5 br,
  .mil-h5 br,
  h6 br,
  .mil-h6 br {
    display: none;
  }
}

h1,
.mil-h1 {
  font-size: 86px;
}
@media screen and (max-width: 1400px) {
  h1,
  .mil-h1 {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  h1,
  .mil-h1 {
    font-size: 72px;
  }
}
@media screen and (max-width: 992px) {
  h1,
  .mil-h1 {
    font-size: 58px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  .mil-h1 {
    font-size: 34px;
  }
}

h2,
.mil-h2 {
  font-size: 68px;
  line-height: 120%;
}
@media screen and (max-width: 1200px) {
  h2,
  .mil-h2 {
    font-size: 56px;
  }
}
@media screen and (max-width: 992px) {
  h2,
  .mil-h2 {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  h2,
  .mil-h2 {
    font-size: 36px;
  }
}

h3,
.mil-h3 {
  font-size: 42px;
}
@media screen and (max-width: 1200px) {
  h3,
  .mil-h3 {
    font-size: 39px;
  }
}
@media screen and (max-width: 992px) {
  h3,
  .mil-h3 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  h3,
  .mil-h3 {
    font-size: 30px;
  }
}

h4,
.mil-h4 {
  font-size: 28px;
}
@media screen and (max-width: 1200px) {
  h4,
  .mil-h4 {
    font-size: 26px;
  }
}
@media screen and (max-width: 992px) {
  h4,
  .mil-h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h4,
  .mil-h4 {
    font-size: 22px;
  }
}

h5,
.mil-h5 {
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  h5,
  .mil-h5 {
    font-size: 18px;
  }
}

h6,
.mil-h6 {
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 1200px) {
  h6,
  .mil-h6 {
    font-size: 17px;
  }
}
@media screen and (max-width: 992px) {
  h6,
  .mil-h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  h6,
  .mil-h6 {
    font-size: 21px;
  }
}

.mil-no-wrap {
  white-space: nowrap;
}

blockquote {
  padding: 60px;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-style: italic;
  border-left: solid 4px rgb(0, 113, 227);
}
@media screen and (max-width: 768px) {
  blockquote {
    padding: 30px;
    font-size: 16px;
  }
}

.mil-text-sm {
  font-size: 15px;
}

.mil-text-lg {
  font-size: 18px;
  line-height: 170%;
}

.mil-text-xl {
  font-size: 22px;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .mil-text-xl {
    font-size: 20px;
  }
}

.mil-upper {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
}

.mil-bold {
  font-weight: 500;
}

.mil-thin {
  font-weight: 100;
}

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

.mil-complex-title {
  line-height: normal;
}

.mil-accent {
  color: rgb(0, 113, 227);
}

.mil-light {
  color: rgb(255, 255, 255) !important;
}
.mil-light a {
  color: rgb(255, 255, 255) !important;
}

.mil-muted {
  color: rgba(255, 255, 255, 0.9);
}

.mil-dark {
  color: rgb(0, 0, 0);
}

.mil-light-soft {
  color: rgba(255, 255, 255, 0.4);
}

.mil-dark-soft {
  color: rgba(0, 0, 0, 0.5);
}

.mil-marker {
  background-color: rgb(0, 113, 227);
  padding: 0 5px;
}

.mil-center {
  text-align: center;
}

.mil-left {
  text-align: left;
}

.mil-right {
  text-align: right;
}

@media screen and (max-width: 576px) {
  .mil-sm-center {
    text-align: center;
  }
}

.mil-suptitle {
  position: relative;
  display: block;
  margin-bottom: 60px;
}
.mil-suptitle:before {
  content: "";
  position: absolute;
  right: calc(100% + 30px);
  top: 10px;
  width: 600px;
  height: 1px;
  background-color: rgb(255, 255, 255);
  opacity: 0.2;
}
.mil-suptitle.mil-suptitle-right {
  text-align: right;
}
.mil-suptitle.mil-suptitle-right:before {
  left: calc(100% + 30px);
}
@media screen and (max-width: 768px) {
  .mil-suptitle.mil-suptitle-right {
    text-align: center;
  }
  .mil-suptitle.mil-suptitle-right:before {
    display: none;
  }
}
.mil-suptitle.mil-suptitle-dark:before {
  background-color: rgb(0, 0, 0);
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .mil-suptitle {
    margin-bottom: 60px;
  }
}

.mil-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.mil-img-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 140%;
}
.mil-img-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* -------------------------------------------

link

------------------------------------------- */
.mil-link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.mil-link svg {
  margin-left: 15px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link svg path {
  fill: rgb(255, 255, 255);
}
.mil-link.mil-accent svg {
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link.mil-accent svg path {
  fill: rgb(0, 113, 227);
}
.mil-link.mil-dark svg {
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link.mil-dark svg path {
  fill: rgb(0, 0, 0);
}
.mil-link:hover svg {
  transform: scale(1.15);
}
.mil-link.mil-down-arrow svg {
  transform: rotate(90deg);
}
.mil-link.mil-down-arrow:hover svg {
  transform: scale(1.15) rotate(90deg);
}
.mil-link.mil-icon-left {
  display: flex;
  flex-direction: row-reverse;
}
.mil-link.mil-icon-left svg {
  margin-left: 0;
  margin-right: 15px;
  transform: rotate(180deg);
}
.mil-link.mil-icon-left:hover svg {
  transform: scale(1.15) rotate(180deg);
}

/* -------------------------------------------

button

------------------------------------------- */
.mil-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  letter-spacing: 2px;
  font-size: 12px;
  background-color: rgb(0, 113, 227);
  color: rgb(0, 0, 0);
  border-radius: 70px;
  padding: 0 15px 0 50px;
  height: 70px;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-button span {
  white-space: nowrap;
}
.mil-button svg {
  margin-left: 30px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgb(0, 0, 0);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-button svg path {
  fill: rgb(0, 113, 227);
}
.mil-button.mil-icon-button {
  padding: 15px;
}
.mil-button.mil-icon-button svg {
  margin-left: 0;
}
.mil-button.mil-icon-button-sm {
  padding: 0;
  height: 40px;
}
.mil-button.mil-icon-button-sm svg {
  margin-left: 0;
  background-color: rgb(0, 113, 227);
}
.mil-button.mil-icon-button-sm svg path {
  fill: rgb(0, 0, 0);
}
.mil-button:hover {
  transform: scale(1.015);
  filter: brightness(110%);
}
.mil-button:hover svg {
  transform: scale(1.15);
}
.mil-button.mil-arrow-down svg {
  transform: rotate(90deg);
}
.mil-button.mil-arrow-down:hover {
  transform: scale(1.015);
  filter: brightness(110%);
}
.mil-button.mil-arrow-down:hover svg {
  transform: scale(1.15) rotate(90deg);
}
@media screen and (max-width: 992px) {
  .mil-button {
    height: 60px;
    padding: 0 10px 0 40px;
  }
  .mil-button svg {
    margin-left: 25px;
  }
}

/* -------------------------------------------

form

------------------------------------------- */
input,
textarea {
  position: relative;
  height: 70px;
  padding: 0 30px;
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  color: rgb(0, 0, 0);
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
input:focus,
textarea:focus {
  outline: inherit;
}
input::placeholder,
textarea::placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

textarea {
  padding: 15px 30px;
  height: 300px;
}

/* -------------------------------------------

breadcrumbs

------------------------------------------- */
.mil-breadcrumbs {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.mil-breadcrumbs:before {
  content: "";
  position: absolute;
  right: calc(100% + 30px);
  top: 10px;
  width: 100vw;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.mil-breadcrumbs li {
  list-style-type: none;
}
.mil-breadcrumbs li:after {
  content: "/";
  margin: 0 15px;
  color: rgb(0, 0, 0);
}
.mil-breadcrumbs li a {
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-breadcrumbs li a:hover {
  color: rgb(0, 113, 227);
}
.mil-breadcrumbs li:last-child {
  margin-right: 0;
  cursor: not-allowed;
}
.mil-breadcrumbs li:last-child a {
  opacity: 0.4;
  pointer-events: none;
}
.mil-breadcrumbs li:last-child:after {
  display: none;
}
.mil-breadcrumbs.mil-light:before {
  background-color: rgba(255, 255, 255, 0.1);
}
.mil-breadcrumbs.mil-light li:after {
  color: rgba(255, 255, 255, 0.9);
}
.mil-breadcrumbs.mil-light li a:hover {
  color: rgb(0, 113, 227) !important;
}
.mil-breadcrumbs.mil-center {
  justify-content: center;
}

/* -------------------------------------------

backgrounds

------------------------------------------- */
/* Apple-style per-section theme tokens — each section reads its own --bg/--fg
   from a wrapping class. Replaces the old backdrop-filter:invert(100%) hack. */
:root {
  --bg: rgb(255, 255, 255);
  --fg: rgb(0, 0, 0);
  --fg-soft: rgba(0, 0, 0, 0.6);
  --fg-mute: rgba(0, 0, 0, 0.4);
  --border: rgba(0, 0, 0, .08);
  --accent: rgb(0, 113, 227);
  --surface: rgb(242, 242, 242);
}

.mil-section-light,
.mil-light-bg {
  --bg: rgb(255, 255, 255);
  --fg: rgb(0, 0, 0);
  --fg-soft: rgba(0, 0, 0, 0.6);
  --fg-mute: rgba(0, 0, 0, 0.4);
  --border: rgba(0, 0, 0, .08);
  --surface: rgb(242, 242, 242);
  background-color: var(--bg);
  color: var(--fg);
}

.mil-section-soft,
.mil-soft-bg {
  --bg: #f5f5f7;
  --fg: rgb(0, 0, 0);
  --fg-soft: rgba(0, 0, 0, 0.6);
  --fg-mute: rgba(0, 0, 0, 0.4);
  --border: rgba(0, 0, 0, .06);
  --surface: rgb(255, 255, 255);
  background-color: var(--bg);
  color: var(--fg);
}

.mil-section-dark,
.mil-dark-bg {
  --bg: #000;
  --fg: rgb(255, 255, 255);
  --fg-soft: rgba(255, 255, 255, 0.7);
  --fg-mute: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, .12);
  --surface: #0a0a0a;
  background-color: var(--bg);
  color: var(--fg);
}
.mil-section-dark h1, .mil-section-dark .mil-h1,
.mil-section-dark h2, .mil-section-dark .mil-h12,
.mil-section-dark h3, .mil-section-dark .mil-h3,
.mil-section-dark h4, .mil-section-dark .mil-h4,
.mil-section-dark h5, .mil-section-dark .mil-h5,
.mil-section-dark h6, .mil-section-dark .mil-h6,
.mil-dark-bg h1,
.mil-dark-bg .mil-h1,
.mil-dark-bg h2,
.mil-dark-bg .mil-h12,
.mil-dark-bg h3,
.mil-dark-bg .mil-h3,
.mil-dark-bg h4,
.mil-dark-bg .mil-h4,
.mil-dark-bg h5,
.mil-dark-bg .mil-h5,
.mil-dark-bg h6,
.mil-dark-bg .mil-h6 {
  color: var(--fg);
}
.mil-section-dark p,
.mil-dark-bg p {
  color: var(--fg-soft);
}
.mil-section-dark .mil-muted,
.mil-dark-bg .mil-muted {
  color: var(--fg) !important;
}
.mil-section-dark .mil-light-soft,
.mil-dark-bg .mil-light-soft {
  color: var(--fg-soft) !important;
}

/* Inert wrappers kept for backwards-compat with markup that still uses them.
   Old behaviour relied on backdrop-filter:invert; new approach uses real colors. */
.mi-invert-fix {
  position: relative;
  height: 100%;
}
.mi-invert-fix .container {
  pointer-events: all;
}

/* -------------------------------------------

spaces

------------------------------------------- */
.mil-mr-30 {
  margin-right: 30px;
}

.mil-mb-5 {
  margin-bottom: 5px;
}

.mil-mb-10 {
  margin-bottom: 10px;
}

.mil-mb-15 {
  margin-bottom: 15px;
}

.mil-mb-20 {
  margin-bottom: 15px;
}

.mil-mb-30 {
  margin-bottom: 30px;
}

.mil-mb-60 {
  margin-bottom: 60px;
}

.mil-mb-90 {
  margin-bottom: 90px;
}

.mil-mb-120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .mil-mb-120 {
    margin-bottom: 90px;
  }
}

.mil-mt-suptitle-offset {
  margin-top: 70px;
}
@media screen and (max-width: 992px) {
  .mil-mt-suptitle-offset {
    margin-top: 30px;
  }
}

.mil-p-120-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .mil-p-120-120 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.mil-p-120-90 {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
  .mil-p-120-90 {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

.mil-p-0-120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .mil-p-0-120 {
    padding-bottom: 90px;
  }
}

.mil-p-120-0 {
  padding-top: 120px;
}
@media screen and (max-width: 992px) {
  .mil-p-120-0 {
    padding-top: 90px;
  }
}

.mil-p-120-60 {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .mil-p-120-60 {
    padding-top: 90px;
    padding-bottom: 30px;
  }
}

.mil-p-90-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
  .mil-p-90-90 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.mil-p-90-120 {
  padding-top: 90px;
  padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .mil-p-90-120 {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.mil-p-0-90 {
  padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
  .mil-p-0-90 {
    padding-bottom: 60px;
  }
}

.mil-p-0-30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .mil-p-0-30 {
    padding-bottom: 0;
  }
}

.mil-p-120-30 {
  padding-top: 120px;
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .mil-p-120-30 {
    padding-top: 90px;
    padding-bottom: 0;
  }
}

.mil-p-60-30 {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .mil-p-60-30 {
    padding-top: 45px;
    padding-bottom: 0;
  }
}

.mil-adaptive-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .mil-adaptive-right {
    justify-content: flex-start;
  }
}

.mil-btn-space {
  margin-right: 30px;
}
@media screen and (max-width: 500px) {
  .mil-btn-space {
    margin-right: 50px;
    margin-bottom: 30px;
  }
}

/* -------------------------------------------

preloader

------------------------------------------- */
.mil-preloader {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
}
.mil-preloader .mil-preloader-animation {
  opacity: 0;
  position: relative;
  height: 100vh;
  color: rgb(255, 255, 255);
}
.mil-preloader .mil-preloader-animation .mil-pos-abs {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-preloader .mil-preloader-animation .mil-pos-abs p {
  opacity: 0;
  margin-right: 15px;
}
@media screen and (max-width: 992px) {
  .mil-preloader .mil-preloader-animation .mil-pos-abs {
    flex-direction: column;
  }
  .mil-preloader .mil-preloader-animation .mil-pos-abs p {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.mil-preloader .mil-preloader-animation .mil-pos-abs .mil-reveal-frame {
  position: relative;
  padding: 0 30px;
}
.mil-preloader .mil-preloader-animation .mil-pos-abs .mil-reveal-frame .mil-reveal-box {
  z-index: 4;
  position: absolute;
  opacity: 0;
  height: 100%;
  background-color: rgb(0, 113, 227);
}
.mil-preloader.mil-hidden {
  pointer-events: none;
}

/* -------------------------------------------

cursor

------------------------------------------- */
.mil-ball {
  width: 20px;
  height: 20px;
  position: fixed;
  z-index: 10;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.1;
}
.mil-ball .mil-icon-1 {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: scale(0);
}
.mil-ball .mil-icon-1 svg {
  fill: rgba(255, 255, 255, 0.9);
}
.mil-ball .mil-more-text, .mil-ball .mil-choose-text {
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: scale(0);
}
.mil-ball.mil-accent .mil-icon-1 svg {
  fill: rgb(0, 0, 0);
}
.mil-ball.mil-accent .mil-more-text, .mil-ball.mil-accent .mil-choose-text {
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 1200px) {
  .mil-ball {
    display: none;
  }
}

/* -------------------------------------------

hidden elements

------------------------------------------- */
.mil-hidden-elements .mil-dodecahedron, .mil-hidden-elements .mil-lines, .mil-hidden-elements .mil-arrow {
  display: none;
}

/* -------------------------------------------

scrollbar

------------------------------------------- */
::-webkit-scrollbar {
  display: none;
}

.mil-progress-track {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: rgb(0, 0, 0);
}
.mil-progress-track .mil-progress {
  width: 4px;
  height: 0;
  background-color: rgb(0, 113, 227);
}
@media screen and (max-width: 992px) {
  .mil-progress-track {
    display: none;
  }
}

/* -------------------------------------------

frame

------------------------------------------- */
.mil-logo {
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 992px) {
  .mil-logo {
    font-size: 36px;
  }
}

.mil-frame {
  padding: 50px 60px 60px 60px;
  position: fixed;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .mil-frame {
    padding: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .mil-frame {
    padding: 0;
    z-index: 999;
    height: 90px;
  }
}
@media screen and (max-width: 1200px) {
  .mil-frame .mil-frame-top {
    height: 90px;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    padding: 0 30px;
    backdrop-filter: blur(8px);
  }
  .mil-frame .mil-frame-top .mil-logo {
    color: rgb(255, 255, 255);
  }
  .mil-frame .mil-frame-top .mil-menu-btn span, .mil-frame .mil-frame-top .mil-menu-btn span:after, .mil-frame .mil-frame-top .mil-menu-btn span:before {
    background: rgb(255, 255, 255);
  }
}
.mil-frame .mil-frame-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  .mil-frame .mil-frame-bottom {
    display: none;
  }
}
.mil-frame .mil-frame-bottom .mil-current-page {
  pointer-events: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  width: 300px;
  color: rgb(0, 0, 0);
  transform: rotate(-90deg) translateX(138px) translateY(-138px);
}
.mil-frame .mil-frame-bottom .mil-back-to-top {
  width: 300px;
  transform: rotate(-90deg) translateX(130px) translateY(130px);
  pointer-events: all;
}

.mil-frame-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mil-frame-top .mil-logo {
  pointer-events: all;
  color: rgb(0, 0, 0);
}

/* -------------------------------------------

menu button

------------------------------------------- */
.mil-menu-btn {
  pointer-events: all;
  height: 28px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 992px) {
  .mil-menu-btn {
    transform: scale(0.85);
  }
}
.mil-menu-btn span, .mil-menu-btn span:after, .mil-menu-btn span:before {
  content: "";
  display: block;
  width: 28px;
  height: 2.5px;
  background: rgb(0, 0, 0);
  backface-visibility: hidden;
  transition: inherit;
}
.mil-menu-btn span {
  position: relative;
}
.mil-menu-btn span:after, .mil-menu-btn span:before {
  position: absolute;
}
.mil-menu-btn span:before {
  top: -9px;
}
.mil-menu-btn span:after {
  width: 18px;
  top: 9px;
}
.mil-menu-btn.mil-active span {
  transform: rotate(45deg);
}
.mil-menu-btn.mil-active span:before {
  transform: translate(0px, 9px) rotate(-90deg);
}
.mil-menu-btn.mil-active span:after {
  opacity: 0;
  width: 24px;
  transform: translate(0px, -9px) rotate(-90deg);
}

/* -------------------------------------------

menu

------------------------------------------- */
.mil-menu-frame {
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-frame .container {
  pointer-events: none;
}
.mil-menu-frame .mil-frame-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 60px;
}
@media screen and (max-width: 1200px) {
  .mil-menu-frame .mil-frame-top {
    display: none;
  }
}
.mil-menu-frame .mil-frame-top .mil-logo {
  color: rgb(255, 255, 255);
}
.mil-menu-frame .mil-frame-top .mil-menu-btn span, .mil-menu-frame .mil-frame-top .mil-menu-btn span:after, .mil-menu-frame .mil-frame-top .mil-menu-btn span:before {
  background-color: rgb(255, 255, 255);
}
.mil-menu-frame .mil-main-menu {
  transform: translateX(-30px);
  opacity: 0;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 1200px) {
  .mil-menu-frame .mil-main-menu {
    transform: translateY(30px);
  }
}
.mil-menu-frame .mil-menu-right-frame {
  padding-left: 60px;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  border-left: solid 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-frame .mil-menu-right-frame .mil-menu-right {
  padding-bottom: 60px;
}
.mil-menu-frame .mil-menu-right-frame .mil-animation-in {
  position: absolute;
  top: -320px;
  right: 0;
  opacity: 0;
  transform: translateY(-60px);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 1200px) {
  .mil-menu-frame .mil-menu-right-frame {
    display: none;
  }
}
@media screen and (max-height: 800px) {
  .mil-menu-frame .mil-menu-right-frame {
    display: none;
  }
}
.mil-menu-frame.mil-active {
  opacity: 1;
  pointer-events: all;
}
.mil-menu-frame.mil-active .container {
  pointer-events: all;
}
.mil-menu-frame.mil-active .mil-main-menu {
  transform: translateX(0);
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.mil-menu-frame.mil-active .mil-menu-right-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.mil-menu-frame.mil-active .mil-menu-right-frame .mil-animation-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.mil-menu-list li {
  list-style-type: none;
  margin-bottom: 15px;
}
.mil-menu-list li:last-child {
  margin-bottom: 0;
}
.mil-menu-list li a {
  display: block;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-list li a:hover {
  transform: translateX(5px);
  color: rgb(255, 255, 255);
}
.mil-menu-list.mil-hori-list {
  display: flex;
}
.mil-menu-list.mil-hori-list li {
  margin-bottom: 0;
  margin-right: 30px;
}
.mil-menu-list.mil-dark li a {
  color: rgb(0, 0, 0);
}

.mil-main-menu {
  height: 100vh;
  display: flex;
  align-items: center;
}
.mil-main-menu ul {
  padding: 0;
  margin: 0;
}
.mil-main-menu ul li {
  margin-bottom: 40px;
}
.mil-main-menu ul li:last-child {
  margin-bottom: 0;
}
.mil-main-menu ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-size: 34px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 992px) {
  .mil-main-menu ul li a {
    font-size: 26px;
  }
}
.mil-main-menu ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu ul li a:hover {
  color: rgb(255, 255, 255);
}
.mil-main-menu ul li a.mil-active {
  padding-left: 25px;
}
.mil-main-menu ul li a.mil-active:before {
  transform: scale(1);
  background-color: rgb(0, 113, 227);
}
.mil-main-menu ul li.mil-active > a {
  color: rgb(0, 113, 227);
}
.mil-main-menu ul li.mil-active > a:hover {
  color: rgb(0, 113, 227) !important;
  filter: brightness(110%);
}
.mil-main-menu ul li.mil-has-children > a:hover {
  color: rgb(255, 255, 255);
  padding-left: 25px;
}
.mil-main-menu ul li.mil-has-children > a:hover:before {
  transform: scale(1);
}
.mil-main-menu ul li.mil-has-children ul {
  padding-left: 25px;
  overflow: hidden;
  max-height: 0;
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu ul li.mil-has-children ul li {
  margin-bottom: 5px;
}
.mil-main-menu ul li.mil-has-children ul li:first-child {
  margin-top: 40px;
}
.mil-main-menu ul li.mil-has-children ul li a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}
.mil-main-menu ul li.mil-has-children ul li a:before {
  display: none;
}
.mil-main-menu ul li.mil-has-children ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}
.mil-main-menu ul li.mil-has-children ul.mil-active {
  max-height: 200px;
}
@media screen and (max-width: 1200px) {
  .mil-main-menu {
    justify-content: center;
  }
  .mil-main-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mil-main-menu ul li {
    margin-bottom: 30px;
  }
  .mil-main-menu ul li a {
    justify-content: center;
  }
  .mil-main-menu ul li a:before {
    display: none;
  }
  .mil-main-menu ul li a.mil-active {
    padding-left: 0 !important;
  }
  .mil-main-menu ul li.mil-has-children ul {
    padding-left: 0;
  }
  .mil-main-menu ul li.mil-has-children ul li:first-child {
    margin-top: 30px;
  }
}

/* -------------------------------------------

mobile menu overlay — redesigned panel (animation untouched, see .mil-active)

------------------------------------------- */
@media screen and (max-width: 1200px) {
  .mil-menu-frame {
    background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%), rgb(0, 0, 0);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mil-menu-frame .container, .mil-menu-frame .mil-menu-content, .mil-menu-frame .row, .mil-menu-frame [class*=col-] {
    height: 100%;
  }
  .mil-main-menu {
    padding: 96px 24px 48px;
    box-sizing: border-box;
  }
  .mil-main-menu > ul {
    width: 100%;
    max-width: 420px;
  }
  .mil-main-menu > ul > li {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mil-main-menu > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mil-main-menu > ul > li > a {
    justify-content: center;
    width: 100%;
    padding: 22px 8px;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  }
  .mil-main-menu > ul > li > a:hover, .mil-main-menu > ul > li > a:active {
    color: rgb(255, 255, 255);
    transform: none;
  }
  .mil-main-menu > ul > li.mil-has-children ul {
    padding-left: 0;
  }
  .mil-main-menu > ul > li.mil-has-children ul li {
    margin-bottom: 0;
  }
  .mil-main-menu > ul > li.mil-has-children ul li:first-child {
    margin-top: 4px;
  }
  .mil-main-menu > ul > li.mil-has-children ul li a {
    text-align: center;
    padding: 10px 8px;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
  }
  .mil-main-menu > ul > li.mil-has-children ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: none;
  }
  .mil-main-menu > ul > li.mil-has-children ul.mil-active {
    max-height: 200px;
    padding-bottom: 12px;
  }
  .mil-main-menu > ul > li.mil-active > a, .mil-main-menu > ul > li > a.mil-active {
    color: rgb(0, 113, 227);
    padding-left: 8px;
  }
}
@media screen and (max-width: 420px) {
  .mil-main-menu {
    padding: 88px 20px 40px;
  }
  .mil-main-menu > ul > li > a {
    font-size: 22px;
    padding: 20px 8px;
  }
}
/* -------------------------------------------

banner

------------------------------------------- */
.mil-banner {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  /* Override the global section clip so the globe canvas (which extends
     below the banner) can scatter dots into the next section. The
     decorative animation frame keeps its own clipping instead. */
  overflow: visible;
  /* Scale headline by viewport BOTH dimensions so it never overflows.
     The smaller of (vw, vh) wins → fits any aspect ratio. */
}
.mil-banner > .mil-animation-frame {
  overflow: hidden;
}
.mil-banner > .container {
  width: 100%;
  padding-top: 110px;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .mil-banner > .container {
    padding-top: 100px;
    padding-bottom: 48px;
  }
}
.mil-banner .mil-banner-content {
  width: 100%;
  position: relative;
}
.mil-banner .mil-lines-place {
  position: absolute;
  left: 0;
  bottom: calc(100% + 120px);
}
.mil-banner h1 {
  font-size: clamp(40px, min(7.4vw, 11.5vh), 108px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: clamp(20px, 3vh, 36px);
}
@media screen and (max-width: 768px) {
  .mil-banner h1 {
    font-size: clamp(36px, 10vw, 60px);
    letter-spacing: -0.025em;
    line-height: 1.06;
    margin-bottom: 20px;
  }
  .mil-banner h1 br {
    display: inline;
  }
}
.mil-banner h1 em, .mil-banner h1 .mil-thin {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}
.mil-banner p {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.55;
  max-width: 52ch;
  color: var(--fg-soft);
  margin-bottom: clamp(24px, 3.5vh, 48px);
}
.mil-banner .mil-button, .mil-banner .mil-link {
  vertical-align: middle;
}

#banner-bg-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.mil-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media screen and (max-width: 992px) {
  .mil-banner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .mil-banner-grid {
    gap: 16px;
    text-align: center;
  }
}

.mil-banner-text {
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .mil-banner-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .mil-banner-text .mil-button {
    display: flex;
    width: fit-content;
    margin: 0 auto 20px;
  }
  .mil-banner-text .mil-btn-space {
    margin-right: auto;
  }
  .mil-banner-text .mil-link {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }
}

.mil-banner-globe {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Invisible placeholder reserves the globe's grid spot; JS reads its
     rect to position the sphere. Capped by viewport height so the globe
     never pushes the banner taller than the viewport. */
  /* The canvas overlays the entire banner and extends below it so the
     scroll "open up" can scatter dots past the hero through the
     Trusted-by and About sections instead of clipping in a box. Its
     positioned ancestor is the centered .container, so it breaks out
     to full viewport width with a 50vw offset — the scatter reaches
     the screen edges. */
  /* Small phones: shrink the globe so the headline + CTAs still land
     in the first viewport instead of being pushed below the fold. */
}
.mil-banner-globe::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: min(768px, 78vh);
}
.mil-banner-globe canvas {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% + 175vh);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .mil-banner-globe {
    /* Move globe above the text on mobile so it reads as a hero visual
       rather than a stray element under the CTAs. */
    order: -1;
  }
  .mil-banner-globe::before {
    max-width: min(430px, 46vh);
  }
}
@media screen and (max-width: 768px) {
  .mil-banner-globe::before {
    max-width: min(360px, 40vh);
  }
}
@media screen and (max-width: 480px) {
  .mil-banner-globe::before {
    max-width: min(280px, 32vh);
  }
}

.mil-inner-banner {
  position: relative;
  overflow: hidden;
}
.mil-inner-banner .mil-banner-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 0 0;
}
@media screen and (max-width: 1200px) {
  .mil-inner-banner .mil-banner-content {
    padding: 180px 0 0 0;
  }
}

/* Contact page: animated dodecahedron background sits behind the glass card */
.mil-contact-section {
  position: relative;
  overflow: hidden;
}
.mil-contact-section > .mil-animation-frame {
  height: 100%;
}

/* -------------------------------------------

contact page — 2026 hero + studio redesign

------------------------------------------- */
/* Split hero: headline + intro on the left, direct contact channels on the
   right — mirrors the homepage banner so the page no longer opens on a
   centred title floating in empty space. */
.mil-contact-hero {
  position: relative;
  overflow: hidden;
}
.mil-contact-hero > .mil-animation-frame {
  height: 100%;
}
.mil-contact-hero .mil-contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(150px, 18vh, 240px) 0 clamp(80px, 10vw, 130px);
}
@media screen and (max-width: 992px) {
  .mil-contact-hero .mil-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 180px 0 80px;
  }
}
.mil-contact-hero .mil-contact-hero-text h1 {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.mil-contact-hero .mil-contact-hero-text h1 em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}
.mil-contact-hero .mil-contact-hero-lede {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 48ch;
}

.mil-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mil-channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0, 0, 0.3642, 1), border-color 0.4s cubic-bezier(0, 0, 0.3642, 1), background 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-channel-card .mil-channel-ico {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 113, 227, 0.14);
  color: var(--accent, rgb(0, 113, 227));
  font-size: 18px;
}
.mil-channel-card .mil-channel-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.mil-channel-card .mil-channel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.mil-channel-card .mil-channel-value {
  font-size: 17px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  overflow: hidden;
  text-overflow: ellipsis;
}
.mil-channel-card .mil-channel-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.4s cubic-bezier(0, 0, 0.3642, 1), color 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-channel-card .mil-channel-arrow svg {
  width: 100%;
  height: 100%;
}
.mil-channel-card:not(.mil-channel-static):hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.mil-channel-card:not(.mil-channel-static):hover .mil-channel-arrow {
  color: var(--accent, rgb(0, 113, 227));
  transform: translate(3px, -3px);
}

.mil-channel-static {
  cursor: default;
}

/* Time-aware hero greeting — a small, warm touch with a "live" pulsing dot
   that echoes the live indicators on the homepage dashboard. */
.mil-hero-greeting {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.mil-hero-greeting .mil-greeting-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, rgb(0, 113, 227));
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.45);
  animation: mil-greeting-pulse 2.4s ease-out infinite;
}

@keyframes mil-greeting-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 113, 227, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mil-hero-greeting .mil-greeting-dot {
    animation: none;
  }
}
/* Studio / location: large framed map with a floating glass address card
   overlapping it, instead of text sitting beside the map. */
.mil-studio-section {
  position: relative;
  overflow: hidden;
}

.mil-studio-head {
  margin-bottom: clamp(32px, 4vw, 56px);
}
.mil-studio-head h2 {
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg);
}
.mil-studio-head h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}

.mil-studio-stage {
  position: relative;
}
.mil-studio-stage .mil-map-frame {
  height: clamp(420px, 56vh, 620px);
  margin: 0;
}
.mil-studio-stage .mil-studio-card {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 3;
  width: min(340px, 100% - 80px);
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.82) 0%, rgba(10, 10, 10, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.mil-studio-stage .mil-studio-card .mil-eyebrow {
  margin-bottom: 14px;
}
.mil-studio-stage .mil-studio-address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .mil-studio-stage .mil-map-frame {
    height: 380px;
  }
  .mil-studio-stage .mil-studio-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    left: auto;
    bottom: auto;
  }
}

.mil-banner-personal {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
}
.mil-banner-personal .mil-banner-content {
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 992px) {
  .mil-banner-personal .mil-banner-content {
    padding-top: 180px;
  }
}
.mil-banner-personal .mil-banner-content .mil-personal-text {
  margin-bottom: 300px;
}
@media screen and (max-width: 992px) {
  .mil-banner-personal .mil-banner-content .mil-personal-text {
    margin-bottom: 80px;
    text-align: center;
  }
}
.mil-banner-personal .mil-banner-content .mil-banner-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 90px;
  background-color: rgb(255, 255, 255);
  height: 180px;
  position: absolute;
  top: calc(100vh - 180px);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .mil-banner-personal .mil-banner-content .mil-banner-panel {
    flex-direction: column;
    height: auto;
    padding: 60px 30px;
  }
  .mil-banner-personal .mil-banner-content .mil-banner-panel h5 {
    margin-bottom: 60px;
    text-align: center;
    width: 80%;
  }
}
.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right {
  display: flex;
}
.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right .mil-social-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  padding: 0 50px;
  background-color: rgba(0, 0, 0, 0.1);
  height: 70px;
  border-radius: 70px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right .mil-social-frame:hover {
  transform: scale(1.015);
}
@media screen and (max-width: 992px) {
  .mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right {
    flex-direction: column;
  }
  .mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right .mil-social-frame {
    margin-right: 0;
    margin-bottom: 30px;
    height: 60px;
  }
}
.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-button {
  margin: 0 !important;
}
@media screen and (max-width: 992px) {
  .mil-banner-personal .mil-banner-content .mil-banner-panel {
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 768px) {
  .mil-banner-personal .mil-banner-content .mil-banner-panel {
    position: static;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 992px) {
  .mil-banner-personal {
    height: auto;
  }
}

.mil-portrait-frame {
  position: relative;
}
.mil-portrait-frame img {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mil-portrait-frame .mil-nimbus {
  background: radial-gradient(50% 50% at 50% 50%, rgb(0, 113, 227) 0%, rgba(250, 168, 69, 0) 100%);
  width: 100%;
  padding-bottom: 100%;
  position: absolute;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .mil-portrait-frame {
    height: 400px;
  }
  .mil-portrait-frame img {
    object-fit: cover;
    object-position: top;
  }
}

/* -------------------------------------------

circle text

------------------------------------------- */
.mil-circle-text {
  position: absolute;
  right: 0;
  bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
}
.mil-circle-text .mil-ct-svg {
  transform: scale(2);
  width: 140px;
  height: 140px;
}
.mil-circle-text .mil-ct-svg text {
  fill: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-circle-text .mil-button {
  position: absolute;
}
.mil-circle-text:hover svg text {
  fill: rgb(255, 255, 255);
}
@media screen and (max-width: 992px) {
  .mil-circle-text {
    display: none;
  }
}

/* -------------------------------------------

lines

------------------------------------------- */
@keyframes move {
  from {
    transform: translateY(-75px);
  }
  50% {
    transform: translateY(75px);
  }
  to {
    transform: translateY(-75px);
  }
}
.mil-lines-place .mil-lines {
  opacity: 0.05;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .mil-lines-place .mil-lines {
    display: none;
  }
}
.mil-lines-place .mil-lines path, .mil-lines-place .mil-lines rect, .mil-lines-place .mil-lines line {
  stroke: rgb(0, 0, 0);
}
.mil-lines-place .mil-lines .mil-move {
  animation: move 10s linear infinite;
}
.mil-lines-place.mil-light .mil-lines {
  opacity: 0.2;
}
.mil-lines-place.mil-light .mil-lines path, .mil-lines-place.mil-light .mil-lines rect, .mil-lines-place.mil-light .mil-lines line {
  stroke: rgb(255, 255, 255);
}

/* -------------------------------------------

dodecahedron

------------------------------------------- */
.mil-animation-frame {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  animation: jump 10s linear infinite;
  pointer-events: none;
}

.mil-animation {
  position: absolute;
  display: inline-block;
  width: 300px;
  height: 300px;
  opacity: 0.2;
  pointer-events: none;
}

.mil-position-1 {
  top: 100px;
  right: 100px;
}
.mil-position-1 .mil-pentagon div {
  border-top: 0.1px solid rgb(255, 255, 255);
}

.mil-position-2 {
  top: -60px;
  left: 15%;
}
.mil-position-2 .mil-pentagon div {
  border-top: 1px solid rgb(255, 255, 255);
}
.mil-position-2 .mil-dodecahedron {
  animation-delay: 0.5s;
}
@media screen and (max-width: 1400px) {
  .mil-position-2 {
    display: none;
  }
}

.mil-position-3 {
  bottom: -100px;
  right: 35%;
}
.mil-position-3 .mil-pentagon div {
  border-top: 1px solid rgb(255, 255, 255);
}
.mil-position-3 .mil-dodecahedron {
  animation-delay: 1s;
}
@media screen and (max-width: 1400px) {
  .mil-position-3 {
    display: none;
  }
}

.mil-position-4 {
  top: -60px;
  right: 20%;
}
.mil-position-4 .mil-pentagon div {
  border-top: 0.1px solid rgb(255, 255, 255);
}
.mil-position-4 .mil-dodecahedron {
  animation-delay: 0.5s;
}
@media screen and (max-width: 1400px) {
  .mil-position-4 {
    display: none;
  }
}
.mil-position-4.mil-dark .mil-pentagon div {
  border-top: 0.1px solid rgb(0, 0, 0);
}

.mil-dodecahedron {
  position: relative;
  left: 100px;
  top: 40px;
  width: 100px;
  height: 223px;
  transform-style: preserve-3d;
  animation: rotate 100s infinite linear;
}
@keyframes rotate {
  from {
    transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
  }
  to {
    transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
  }
}

.mil-pentagon {
  position: absolute;
  width: 100px;
}
.mil-pentagon:nth-child(1) {
  transform: rotateY(0.2turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(6) {
  bottom: 0;
  transform: rotateY(0.2turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(2) {
  transform: rotateY(0.4turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(7) {
  bottom: 0;
  transform: rotateY(0.4turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(3) {
  transform: rotateY(0.6turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(8) {
  bottom: 0;
  transform: rotateY(0.6turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(4) {
  transform: rotateY(0.8turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(9) {
  bottom: 0;
  transform: rotateY(0.8turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(5) {
  transform: rotateY(1turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(10) {
  bottom: 0;
  transform: rotateY(1turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(11) {
  transform: translateZ(69px) rotateX(-90deg);
}
.mil-pentagon:nth-child(12) {
  bottom: 0;
  transform: translateZ(-69px) rotateX(90deg);
}
.mil-pentagon div {
  position: absolute;
  width: 100px;
  height: 69px;
  transform-origin: bottom;
}
.mil-pentagon div:nth-child(1) {
  transform: rotate(0.2turn);
}
.mil-pentagon div:nth-child(2) {
  transform: rotate(0.4turn);
}
.mil-pentagon div:nth-child(3) {
  transform: rotate(0.6turn);
}
.mil-pentagon div:nth-child(4) {
  transform: rotate(0.8turn);
}
.mil-pentagon div:nth-child(5) {
  transform: rotate(1turn);
}

@keyframes jump {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(-30px);
  }
}
/* -------------------------------------------

about

------------------------------------------- */
.mil-about-quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mil-about-quote .mil-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
}
.mil-about-quote .mil-avatar:after {
  content: ' " ';
  color: rgb(0, 0, 0);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(0, 113, 227);
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding-top: 12px;
  justify-content: center;
  font-size: 36px;
}
.mil-about-quote .mil-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mil-about-quote .mil-quote {
  padding-left: 30px;
  width: calc(100% - 90px);
}
@media screen and (max-width: 992px) {
  .mil-about-quote .mil-avatar {
    width: 70px;
    height: 70px;
  }
  .mil-about-quote .mil-avatar:after {
    padding-top: 7px;
    width: 25px;
    height: 25px;
    font-size: 24px;
  }
  .mil-about-quote .mil-quote {
    font-size: 16px;
    padding-left: 30px;
    width: calc(100% - 70px);
  }
}

.mil-about-photo {
  position: relative;
  /* When the about columns stack on tablet/mobile, the interactive
     dashboard would otherwise sit flush against the body copy — give it
     clear separation so it reads as its own showcase. */
}
.mil-about-photo .mil-lines-place {
  position: absolute;
  top: -120px;
  left: -27%;
}
@media screen and (max-width: 992px) {
  .mil-about-photo {
    margin-top: clamp(24px, 6vw, 48px);
  }
}

/* -------------------------------------------

partners

------------------------------------------- */
.mil-infinite-show.mil-clients-marquee .swiper-wrapper {
  transition-timing-function: linear;
}
.mil-infinite-show.mil-clients-marquee .swiper-slide {
  width: auto;
}
.mil-infinite-show:not(.mil-clients-marquee) .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.mil-infinite-show:not(.mil-clients-marquee) .swiper-slide {
  width: auto;
}

.mil-partner-frame {
  display: block;
}
.mil-partner-frame img {
  width: 100%;
}

/* -------------------------------------------

services

------------------------------------------- */
.mil-complex-text {
  display: flex;
  align-items: center;
}
.mil-complex-text .mil-button {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .mil-complex-text {
    flex-direction: column;
  }
  .mil-complex-text .mil-button {
    margin-left: 0;
    margin-top: 60px;
  }
}

.mil-text-image {
  height: 80px;
  width: 250px;
  display: inline-block;
  overflow: hidden;
  border-radius: 70px;
  margin-right: 30px;
}
.mil-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text-image:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .mil-text-image {
    display: none;
  }
}

.mil-service-card-sm {
  position: relative;
  display: block;
  padding: 60px 30px;
}
.mil-service-card-sm p {
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-card-sm .mil-button {
  transform: scale(0.3);
  filter: grayscale(100%);
  opacity: 0.4;
}
.mil-service-card-sm:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: rgb(0, 113, 227);
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-card-sm:hover p {
  opacity: 1;
  transform: translateY(0);
}
.mil-service-card-sm:hover .mil-button {
  transform: scale(1);
  filter: grayscale(0);
  opacity: 1;
}
.mil-service-card-sm:hover:before {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .mil-service-card-sm p {
    opacity: 1;
    transform: translateY(0);
  }
  .mil-service-card-sm .mil-button {
    transform: scale(1);
    filter: grayscale(0);
    opacity: 1;
  }
}

.mil-services-grid {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.mil-services-grid .mil-services-grid-item {
  border-right: solid 1px rgba(255, 255, 255, 0.1);
}
.mil-services-grid .mil-services-grid-item:first-child {
  border-left: solid 1px rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 992px) {
  .mil-services-grid {
    padding-bottom: 90px;
  }
  .mil-services-grid .mil-services-grid-item {
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  }
  .mil-services-grid .mil-services-grid-item:nth-child(3) {
    border-left: solid 1px rgba(255, 255, 255, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .mil-services-grid {
    padding-bottom: 90px;
  }
  .mil-services-grid .mil-services-grid-item {
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  }
}

.mil-service-card-lg {
  display: block;
}
.mil-service-card-lg .mil-descr {
  padding-right: 30px;
}
.mil-service-card-lg.mil-offset {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .mil-service-card-lg.mil-offset {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .mil-service-card-lg {
    margin-bottom: 60px;
  }
}
.mil-service-card-lg.mil-other-card {
  overflow: hidden;
  position: relative;
  border: solid 1px rgb(229, 229, 229);
  padding: 60px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-card-lg.mil-other-card .mil-descr {
  padding-right: 0;
}
.mil-service-card-lg.mil-other-card:hover {
  background-color: rgb(0, 113, 227);
}
.mil-service-card-lg.mil-other-card:hover .mil-link svg {
  background-color: rgb(0, 0, 0);
}
.mil-service-card-lg.mil-other-card:hover .mil-link svg path {
  fill: rgb(0, 113, 227);
}
@media screen and (max-width: 1200px) {
  .mil-service-card-lg.mil-other-card {
    padding: 30px;
  }
}

.mil-service-list li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  list-style-type: none;
  padding: 15px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 12px;
}
.mil-service-list li:first-child {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.mil-service-list.mil-light li {
  color: rgba(255, 255, 255, 0.6);
}
.mil-service-list.mil-dark li {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.mil-service-list.mil-dark li:first-child {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------

team

------------------------------------------- */
.mil-team-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 130%;
}
.mil-team-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: rgb(0, 113, 227);
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.05);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card.mil-offset-card {
  transform: translateY(60px);
}
@media screen and (max-width: 992px) {
  .mil-team-card.mil-offset-card {
    transform: none;
  }
}
.mil-team-card .mil-description {
  opacity: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card .mil-description .mil-secrc-text {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition-delay: 0s;
}
.mil-team-card .mil-description .mil-secrc-text a {
  color: rgb(255, 255, 255);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card .mil-description .mil-secrc-text a:hover {
  color: rgb(0, 113, 227);
}
.mil-team-card:hover img {
  transform: scale(1);
}
.mil-team-card:hover:after {
  width: 100%;
}
.mil-team-card:hover .mil-description {
  opacity: 1;
  pointer-events: all;
}
.mil-team-card:hover .mil-description .mil-secrc-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.mil-team-list {
  position: relative;
}
.mil-team-list .mil-lines-place {
  position: absolute;
  top: -120px;
  left: -22.5%;
}

/* -------------------------------------------

social icons

------------------------------------------- */
.mil-social-icons {
  padding: 0;
  margin: 0;
  display: flex;
}
.mil-social-icons.mil-center {
  justify-content: center;
}
.mil-social-icons li {
  list-style-type: none;
  margin-right: 15px;
}
.mil-social-icons li:last-child {
  margin-right: 0;
}
.mil-social-icons li a {
  color: rgb(255, 255, 255);
  font-size: 18px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-social-icons li a:hover {
  color: rgb(0, 113, 227);
}
.mil-social-icons.mil-dark li a {
  color: rgb(0, 0, 0);
}
.mil-social-icons.mil-dark li a:hover {
  color: rgb(0, 113, 227);
}

/* -------------------------------------------

blog

------------------------------------------- */
.mil-blog-card {
  display: block;
}
.mil-blog-card .mil-cover-frame {
  position: relative;
  overflow: hidden;
  padding-bottom: 65%;
  margin-bottom: 30px;
}
.mil-blog-card .mil-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card .mil-post-descr {
  padding: 30px 30px 0 0;
}
.mil-blog-card .mil-post-descr .mil-post-text {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mil-blog-card:hover .mil-cover-frame img {
  transform: scale(1.05);
}
.mil-blog-card.mil-blog-card-hori {
  padding-top: 60px;
  border-top: solid 1px rgb(229, 229, 229);
  display: flex;
  align-items: center;
}
.mil-blog-card.mil-blog-card-hori .mil-cover-frame {
  margin-bottom: 0;
  width: 450px;
  padding-bottom: 27%;
}
.mil-blog-card.mil-blog-card-hori .mil-post-descr {
  width: calc(100% - 450px);
  padding: 0;
  padding-left: 60px;
}
@media screen and (max-width: 992px) {
  .mil-blog-card.mil-blog-card-hori {
    display: block;
    padding-top: 0;
    border: none;
  }
  .mil-blog-card.mil-blog-card-hori .mil-cover-frame {
    width: 100%;
    padding-bottom: 65%;
    margin-bottom: 30px;
  }
  .mil-blog-card.mil-blog-card-hori .mil-post-descr {
    width: 100%;
    padding: 30px 30px 0 0;
  }
}

.mil-labels {
  display: flex;
  align-items: center;
  padding: 0;
}
.mil-labels .mil-label {
  margin-right: 15px;
}
.mil-labels .mil-label:last-child {
  margin-right: 0;
}

.mil-pagination {
  padding-top: 60px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.mil-pagination-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgb(0, 0, 0);
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin-right: 10px;
}

.mil-pagination-btn.mil-active {
  background-color: rgb(0, 113, 227);
}

.mil-category-list {
  display: flex;
}
.mil-category-list li {
  list-style-type: none;
  margin-right: 10px;
}
.mil-category-list li:last-child {
  margin-right: 0;
}
.mil-category-list li a {
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 0 20px;
  border-radius: 40px;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-category-list li a:hover {
  background-color: rgb(229, 229, 229);
}
.mil-category-list li a.mil-active {
  background-color: rgb(0, 113, 227);
}
@media screen and (max-width: 768px) {
  .mil-category-list {
    flex-direction: column;
  }
  .mil-category-list li {
    margin-right: 0;
    margin-bottom: 10px;
    align-items: flex-start;
  }
  .mil-category-list li:last-child {
    margin-bottom: 0;
  }
  .mil-category-list li a {
    justify-content: flex-start;
  }
}

/* -------------------------------------------

footer

------------------------------------------- */
.mil-footer-menu {
  margin-bottom: 120px;
}
.mil-footer-menu ul li {
  list-style-type: none;
  margin-bottom: 30px;
}
.mil-footer-menu ul li a {
  display: block;
  font-weight: 500;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-footer-menu ul li a:hover {
  transform: translateX(10px);
  color: rgb(0, 113, 227);
}
@media screen and (max-width: 768px) {
  .mil-footer-menu ul li a {
    font-size: 22px;
  }
}
.mil-footer-menu ul li.mil-active a {
  color: rgb(0, 113, 227);
}
.mil-footer-menu ul li.mil-active a:hover {
  transform: none;
}
@media screen and (max-width: 768px) {
  .mil-footer-menu {
    margin-bottom: 60px;
  }
}

.mil-subscribe-form {
  position: relative;
  height: 70px;
  width: 100%;
}
.mil-subscribe-form input {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 70px;
  padding: 0 0 0 50px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-subscribe-form input::placeholder {
  color: rgb(128, 128, 128);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mil-subscribe-form input:focus {
  background-color: rgb(255, 255, 255);
  outline: inherit;
}
.mil-subscribe-form input:hover {
  background-color: rgb(255, 255, 255);
}
.mil-subscribe-form .mil-button {
  position: absolute;
  top: 15px;
  right: 15px;
}
.mil-subscribe-form.mil-subscribe-form-2 input {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------

legacy footer (pages without .mil-footer) — centre content on phones so it
doesn't read as a left-stranded column stack.

------------------------------------------- */
@media screen and (max-width: 768px) {
  footer.mil-section-dark:not(.mil-footer) {
    text-align: center;
  }
  footer.mil-section-dark:not(.mil-footer) .mil-footer-menu ul, footer.mil-section-dark:not(.mil-footer) .mil-menu-list, footer.mil-section-dark:not(.mil-footer) .mil-social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer.mil-section-dark:not(.mil-footer) .mil-social-icons {
    flex-direction: row;
    justify-content: center;
  }
  footer.mil-section-dark:not(.mil-footer) .mil-subscribe-form {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  footer.mil-section-dark:not(.mil-footer) .mil-footer-menu a:hover {
    transform: none;
  }
}
.mil-footer {
  position: relative;
  overflow: hidden;
}

#footer-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.mil-footer-inner {
  position: relative;
  z-index: 2;
}

/* brand statement band */
.mil-footer-statement {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 80px);
  flex-wrap: wrap;
}
.mil-footer-statement .mil-logo {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .mil-footer-statement {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}

.mil-footer-brand {
  min-width: 0;
}

.mil-footer-tagline {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 22ch;
}
@media screen and (max-width: 768px) {
  .mil-footer-tagline {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mil-footer-cta {
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .mil-footer-cta {
    margin-top: 24px;
  }
  .mil-footer-cta .mil-button {
    margin-left: auto;
    margin-right: auto;
  }
}

/* hairline dividers */
.mil-footer-divider {
  height: 1px;
  width: 100%;
  background-color: var(--border, rgba(255, 255, 255, 0.12));
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .mil-footer-divider {
    margin: 40px 0;
  }
}

/* condensed three-column link row */
.mil-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  /* condensed menu: smaller type than the old hero-sized footer nav */
}
@media screen and (max-width: 768px) {
  .mil-footer-cols {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}
.mil-footer-cols .mil-footer-menu {
  margin-bottom: 0;
}
.mil-footer-cols .mil-footer-menu ul li {
  margin-bottom: 16px;
}
.mil-footer-cols .mil-footer-menu ul li a {
  font-size: 18px;
  font-weight: 500;
}
.mil-footer-cols .mil-menu-list li {
  margin-bottom: 16px;
}
.mil-footer-cols .mil-address-line {
  margin-top: 16px;
  line-height: 1.6;
}
.mil-footer-cols .mil-link {
  margin-top: 20px;
}

/* bottom strip */
.mil-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mil-footer-bottom .mil-social-icons {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mil-footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}

/* -------------------------------------------

portfolio

------------------------------------------- */
.mil-portfolio-item {
  display: block;
}
.mil-portfolio-item .mil-cover-frame {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.mil-portfolio-item .mil-cover-frame .mil-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mil-portfolio-item .mil-cover-frame .mil-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-portfolio-item .mil-cover-frame.mil-vert {
  padding-bottom: 130%;
}
.mil-portfolio-item .mil-cover-frame.mil-hori {
  padding-bottom: 65%;
}
.mil-portfolio-item:hover .mil-cover-frame .mil-cover img {
  transform: scale(1.05);
}
.mil-portfolio-item.mil-slider-item .mil-cover-frame {
  margin-bottom: 30px;
  height: calc(100vh - 360px);
}
@media screen and (max-width: 992px) {
  .mil-portfolio-item.mil-slider-item .mil-cover-frame {
    height: auto;
    padding-bottom: 100%;
  }
}
.mil-portfolio-item.mil-slider-item .mil-descr {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 180px;
  background-color: rgb(242, 242, 242);
  padding: 0 60px;
}
@media screen and (max-width: 992px) {
  .mil-portfolio-item.mil-slider-item .mil-descr {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .mil-portfolio-item.mil-slider-item .mil-descr .mil-descr-text {
    margin-bottom: 30px;
  }
}
.mil-portfolio-item.mil-slider-item:hover .mil-cover-frame .mil-cover img {
  transform: none;
}

.swiper-slide .mil-portfolio-item .mil-descr {
  pointer-events: none;
}
.swiper-slide.swiper-slide-active .mil-portfolio-item .mil-descr {
  pointer-events: all;
}

.mil-portfolio {
  position: relative;
}
.mil-portfolio .mil-lines-place {
  position: absolute;
  left: 40.7%;
}
.mil-portfolio .mil-lines-place.mil-lines-long {
  top: 1289px;
}

.mil-portfolio-slider-frame {
  z-index: 0;
  padding-top: 150px;
}
@media screen and (max-width: 992px) {
  .mil-portfolio-slider-frame {
    padding-top: 180px;
  }
}

.mil-portfolio-nav {
  background-color: rgb(242, 242, 242);
  width: 100%;
  padding: 0 60px;
  height: 180px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mil-portfolio-nav .mil-portfolio-btns-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 70px;
  border-radius: 70px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 992px) {
  .mil-portfolio-nav {
    position: static;
    height: auto;
    padding: 30px 0 90px;
    justify-content: flex-start;
    background-color: rgb(255, 255, 255);
  }
  .mil-portfolio-nav .mil-portfolio-btns-frame {
    width: 100%;
    height: auto;
    padding: 0;
  }
}

.swiper-portfolio-pagination {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 15px;
}

.mil-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  align-items: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .mil-info {
    flex-direction: column;
    height: auto;
    padding: 30px;
  }
}

.mil-works-nav {
  padding-top: 60px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mil-works-nav .mil-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  .mil-works-nav {
    padding-top: 0;
    border-top: none;
    justify-content: center;
  }
  .mil-works-nav .mil-link {
    display: none;
  }
  .mil-works-nav .mil-link:last-child {
    display: flex;
  }
}

/***************************

map

***************************/
.mil-map-frame {
  background-color: #050505;
  pointer-events: all;
  height: 600px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 30px 60px rgba(0, 0, 0, 0.5);
}
.mil-map-frame .mil-map {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-map-frame .mil-map iframe {
  width: 100%;
  height: 100%;
  /* Blend the bright Google map into the black theme */
  filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.95);
}
/* -------------------------------------------

accordion

------------------------------------------- */
.mil-accordion-group {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
.mil-accordion-group .mil-accordion-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 30px;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: rgb(0, 0, 0);
  background-color: rgb(229, 229, 229);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-plus, .mil-accordion-group .mil-accordion-menu .mil-symbol .mil-minus {
  position: absolute;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-minus {
  transform: translateY(-2px);
}
.mil-accordion-group .mil-accordion-menu .mil-accordion-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

.mil-accordion-content {
  height: 0;
  overflow: hidden;
}

/***************************

price

***************************/
.mil-price-card {
  display: block;
  width: 100%;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
}
.mil-price-card .mil-price-number {
  padding-top: 10px;
  line-height: 70%;
  font-size: 54px;
  font-weight: 500;
}
.mil-price-card .mil-price-number .mil-thin {
  font-weight: 200;
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  .mil-price-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px 24px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  }
  .mil-price-card:active {
    background: rgba(255, 255, 255, 0.05);
  }
  .mil-price-card .row {
    margin: 0;
  }
  .mil-price-card [class*=col-] {
    padding: 0;
  }
  .mil-price-card .mil-price-number {
    padding-top: 0;
    line-height: 1;
    margin-bottom: 12px !important;
  }
  .mil-price-card h5 {
    margin-bottom: 12px !important;
  }
  .mil-price-card p {
    margin-bottom: 0 !important;
    font-size: 15px;
  }
  .mil-price-card .mil-adaptive-right {
    display: none;
  }
}

/***************************

404

***************************/
.mil-404-banner .mil-animation-frame {
  z-index: 2;
}

.mil-404-frame {
  padding-top: 100px;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.mil-404-text {
  display: block;
  text-align: center;
  color: rgb(255, 255, 255);
}

.mil-scale-frame {
  transform: scale(2.3);
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 530px) {
  .mil-scale-frame {
    transform: scale(1.3);
    margin-bottom: 50px;
  }
}

.mil-404 {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 6em;
  font-weight: 500;
  animation: glitch-skew 1s infinite linear alternate-reverse;
}
.mil-404::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: 2px;
  text-shadow: -2px 0 rgb(0, 113, 227);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}
.mil-404::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: -2px;
  text-shadow: -2px 0 rgb(153, 153, 153), 2px 2px rgb(229, 229, 229);
  animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(100px, 9999px, 3px, 0);
    transform: skew(0.96deg);
  }
  5% {
    clip: rect(2px, 9999px, 93px, 0);
    transform: skew(0.17deg);
  }
  10% {
    clip: rect(66px, 9999px, 12px, 0);
    transform: skew(0.09deg);
  }
  15% {
    clip: rect(100px, 9999px, 78px, 0);
    transform: skew(0.7deg);
  }
  20% {
    clip: rect(71px, 9999px, 51px, 0);
    transform: skew(0.1deg);
  }
  25% {
    clip: rect(34px, 9999px, 33px, 0);
    transform: skew(0.94deg);
  }
  30% {
    clip: rect(97px, 9999px, 92px, 0);
    transform: skew(0.17deg);
  }
  35% {
    clip: rect(72px, 9999px, 48px, 0);
    transform: skew(0.06deg);
  }
  40% {
    clip: rect(72px, 9999px, 48px, 0);
    transform: skew(0.02deg);
  }
  45% {
    clip: rect(40px, 9999px, 75px, 0);
    transform: skew(0.42deg);
  }
  50% {
    clip: rect(11px, 9999px, 33px, 0);
    transform: skew(0.36deg);
  }
  55% {
    clip: rect(6px, 9999px, 29px, 0);
    transform: skew(0.73deg);
  }
  60% {
    clip: rect(14px, 9999px, 67px, 0);
    transform: skew(0.39deg);
  }
  65% {
    clip: rect(45px, 9999px, 89px, 0);
    transform: skew(0.55deg);
  }
  70% {
    clip: rect(2px, 9999px, 27px, 0);
    transform: skew(0.69deg);
  }
  75% {
    clip: rect(33px, 9999px, 8px, 0);
    transform: skew(0.83deg);
  }
  80% {
    clip: rect(81px, 9999px, 32px, 0);
    transform: skew(0.19deg);
  }
  85% {
    clip: rect(54px, 9999px, 98px, 0);
    transform: skew(0.69deg);
  }
  90% {
    clip: rect(31px, 9999px, 82px, 0);
    transform: skew(0.89deg);
  }
  95% {
    clip: rect(24px, 9999px, 46px, 0);
    transform: skew(0.99deg);
  }
  100% {
    clip: rect(29px, 9999px, 52px, 0);
    transform: skew(0.78deg);
  }
}
@keyframes glitch-anim2 {
  0% {
    clip: rect(88px, 9999px, 10px, 0);
    transform: skew(0.8deg);
  }
  5% {
    clip: rect(84px, 9999px, 24px, 0);
    transform: skew(0.68deg);
  }
  10% {
    clip: rect(44px, 9999px, 79px, 0);
    transform: skew(0.73deg);
  }
  15% {
    clip: rect(11px, 9999px, 15px, 0);
    transform: skew(0.87deg);
  }
  20% {
    clip: rect(58px, 9999px, 16px, 0);
    transform: skew(0.01deg);
  }
  25% {
    clip: rect(77px, 9999px, 29px, 0);
    transform: skew(0.92deg);
  }
  30% {
    clip: rect(36px, 9999px, 84px, 0);
    transform: skew(0.33deg);
  }
  35% {
    clip: rect(50px, 9999px, 69px, 0);
    transform: skew(0.43deg);
  }
  40% {
    clip: rect(67px, 9999px, 27px, 0);
    transform: skew(0.21deg);
  }
  45% {
    clip: rect(6px, 9999px, 59px, 0);
    transform: skew(0.45deg);
  }
  50% {
    clip: rect(21px, 9999px, 17px, 0);
    transform: skew(0.62deg);
  }
  55% {
    clip: rect(30px, 9999px, 71px, 0);
    transform: skew(0.29deg);
  }
  60% {
    clip: rect(37px, 9999px, 80px, 0);
    transform: skew(0.62deg);
  }
  65% {
    clip: rect(22px, 9999px, 9px, 0);
    transform: skew(0.06deg);
  }
  70% {
    clip: rect(79px, 9999px, 86px, 0);
    transform: skew(0.34deg);
  }
  75% {
    clip: rect(25px, 9999px, 40px, 0);
    transform: skew(0.22deg);
  }
  80% {
    clip: rect(19px, 9999px, 63px, 0);
    transform: skew(0.61deg);
  }
  85% {
    clip: rect(59px, 9999px, 73px, 0);
    transform: skew(0.05deg);
  }
  90% {
    clip: rect(51px, 9999px, 17px, 0);
    transform: skew(0.61deg);
  }
  95% {
    clip: rect(20px, 9999px, 76px, 0);
    transform: skew(0.39deg);
  }
  100% {
    clip: rect(53px, 9999px, 41px, 0);
    transform: skew(0.91deg);
  }
}
@keyframes glitch-skew {
  0% {
    transform: skew(-1deg);
  }
  10% {
    transform: skew(3deg);
  }
  20% {
    transform: skew(3deg);
  }
  30% {
    transform: skew(-3deg);
  }
  40% {
    transform: skew(3deg);
  }
  50% {
    transform: skew(5deg);
  }
  60% {
    transform: skew(-2deg);
  }
  70% {
    transform: skew(-4deg);
  }
  80% {
    transform: skew(-1deg);
  }
  90% {
    transform: skew(2deg);
  }
  100% {
    transform: skew(-3deg);
  }
}
/***************************

images

***************************/
.mil-image-frame {
  position: relative;
  overflow: hidden;
}
.mil-image-frame > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-image-frame.mil-horizontal {
  padding-bottom: 65%;
}
.mil-image-frame.mil-vertical {
  padding-bottom: 140%;
}
.mil-image-frame.mil-square {
  padding-bottom: 100%;
}
.mil-image-frame.mil-fw {
  padding-bottom: 50%;
}
.mil-image-frame .mil-zoom-btn {
  opacity: 0;
  transform: translateY(15px);
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-image-frame .mil-zoom-btn:hover {
  background-color: rgb(255, 255, 255);
}
.mil-image-frame .mil-zoom-btn img {
  height: 17px;
  width: 17px;
}
.mil-image-frame:hover .mil-zoom-btn {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

/***************************

page transitions

***************************/
.mil-frame {
  opacity: 1;
  transform: scale(1);
  transition: 0.6s;
}

.mil-curtain {
  position: fixed;
  pointer-events: none;
  z-index: 4;
  background-color: rgb(0, 0, 0);
  opacity: 0;
  width: 100%;
  height: 100vh;
  transition: 0.6s;
}

.mil-main-transition {
  transition: 0.6s;
  margin-top: 0;
  transition-delay: 0.3s;
}
.mil-main-transition .mil-animation-frame {
  opacity: 1;
  margin-top: 0;
  transition: 0.6s;
  transition-delay: 0.3s;
}
.mil-main-transition .mil-lines-place {
  opacity: 1;
  margin-top: 0;
  transition: 0.6s;
  transition-delay: 0.3s;
}

html.is-animating .mil-frame {
  opacity: 0;
  transition-delay: 0.5s;
  transform: scale(0.9);
}
@media screen and (max-width: 1200px) {
  html.is-animating .mil-frame {
    transform: scale(1);
    opacity: 1;
  }
}
html.is-animating .mil-curtain {
  opacity: 1;
  pointer-events: all;
}
html.is-animating .mil-main-transition {
  margin-top: 0.1px;
}
html.is-animating .mil-main-transition .mil-animation-frame {
  opacity: 0;
  margin-top: -90px;
  transition-delay: 0s;
}
html.is-animating .mil-main-transition .mil-lines-place {
  opacity: 0;
  margin-top: 90px;
  transition-delay: 0s;
}

html.is-animating .mil-menu-frame {
  opacity: 0;
  transition-delay: 0.3s;
}

/* -------------------------------------------

2026 refresh — case studies, eyebrow, address

------------------------------------------- */
.mil-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent, rgb(0, 113, 227));
  margin-bottom: 20px;
}

/* Ensure decorative background animations stay behind content in any section
   that uses the new theme classes. */
.mil-section-dark > .mil-animation-frame,
.mil-section-light > .mil-animation-frame,
.mil-section-soft > .mil-animation-frame,
.mil-banner > .mil-animation-frame,
.mil-case-studies > .mil-animation-frame,
.mil-services-section > .mil-animation-frame {
  z-index: 0;
}
.mil-section-dark > .container, .mil-section-dark > .mil-gradient,
.mil-section-light > .container,
.mil-section-light > .mil-gradient,
.mil-section-soft > .container,
.mil-section-soft > .mil-gradient,
.mil-banner > .container,
.mil-banner > .mil-gradient,
.mil-case-studies > .container,
.mil-case-studies > .mil-gradient,
.mil-services-section > .container,
.mil-services-section > .mil-gradient {
  position: relative;
  z-index: 2;
}

.mil-case-studies {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.mil-case-studies .mil-ambient-glow {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), background 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.mil-case-studies .mil-ambient-glow.active {
  opacity: 1;
}
.mil-case-studies .mil-case-studies-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 2;
}
.mil-case-studies .mil-case-studies-head .mil-case-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}
.mil-case-studies .mil-case-studies-head h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}
.mil-case-studies .mil-case-studies-head h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}

/* Category Filters styling */
.mil-case-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mil-case-filters .mil-case-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-soft);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mil-case-filters .mil-case-filter-btn:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.mil-case-filters .mil-case-filter-btn.active {
  background: var(--accent, rgb(0, 113, 227));
  border-color: var(--accent, rgb(0, 113, 227));
  color: rgb(0, 0, 0);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.25);
}

/* Pinned Scroll-Driven Showcase styling */
.mil-case-studies-pinned {
  position: relative;
  width: 100%;
  background-color: #080808;
  overflow: hidden;
  z-index: 1;
  /* Desktop Viewport layout (min-width: 993px) */
  /* Mobile / Tablet Responsive Fallback (width <= 992px) */
}
@media screen and (min-width: 993px) {
  .mil-case-studies-pinned {
    height: 100vh;
    /* Glass stats on pinned layout */
    /* Right visual panels container */
    /* 3D Rotating Dodecahedrons matching the website's banner, floating behind the glass contents */
  }
  .mil-case-studies-pinned .mil-pinned-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border-radius: 44px; /* Highly rounded giant Apple-style floating screen casing */
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16), 0 50px 100px rgba(0, 0, 0, 0.55);
    overflow: hidden; /* Mask gooey blobs cleanly inside this giant container */
    z-index: 2;
    display: flex;
    align-items: center;
  }
  .mil-case-studies-pinned .mil-pinned-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 100% !important; /* Spans full inside space of floating glass */
    padding-left: 80px;
    padding-right: 80px;
  }
  .mil-case-studies-pinned .mil-pinned-details-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 20px;
    z-index: 3;
  }
  .mil-case-studies-pinned .mil-pinned-projects-list {
    position: relative;
    width: 100%;
    height: 420px; /* Locked bounding box for details */
    margin-top: 40px;
  }
  .mil-case-studies-pinned .mil-pinned-project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mil-case-studies-pinned .mil-pinned-project-info.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .mil-case-studies-pinned .mil-pinned-media-mobile {
    display: none !important;
  }
  .mil-case-studies-pinned .mil-pinned-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--fg);
    margin: 16px 0 20px;
  }
  .mil-case-studies-pinned .mil-pinned-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--fg-soft);
    margin-bottom: 32px;
    max-width: 48ch;
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stats {
    position: static;
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 1;
    transform: none;
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px 18px;
    min-width: 90px;
    box-shadow: inset 0 1px 0px rgba(255, 255, 255, 0.2), 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    align-items: flex-start;
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stat-item strong {
    font-size: 20px;
    font-family: "Outfit", sans-serif;
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stat-item span {
    font-size: 9px;
  }
  .mil-case-studies-pinned .mil-pinned-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
  }
  .mil-case-studies-pinned .mil-pinned-progress-track {
    flex: 1;
    max-width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .mil-case-studies-pinned .mil-pinned-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%; /* Initial progress for slide 1 */
    background: var(--accent, rgb(0, 113, 227));
    border-radius: inherit;
  }
  .mil-case-studies-pinned .mil-pinned-numbers {
    display: flex;
    align-items: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .mil-case-studies-pinned .mil-pinned-numbers .mil-pinned-number-current {
    color: var(--accent, rgb(0, 113, 227));
    min-width: 20px;
    display: inline-block;
  }
  .mil-case-studies-pinned .mil-pinned-numbers .mil-pinned-number-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
  }
  .mil-case-studies-pinned .mil-pinned-numbers .mil-pinned-number-total {
    color: rgba(255, 255, 255, 0.5);
  }
  .mil-case-studies-pinned .mil-pinned-visuals-panel {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    z-index: 3;
  }
  .mil-case-studies-pinned .mil-pinned-bg-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits behind the text details and visuals but inside the glass card */
    pointer-events: none;
    overflow: hidden;
    opacity: 0.85;
  }
  .mil-case-studies-pinned .mil-pinned-bg-animations .mil-animation {
    opacity: 0.12; /* Subtle white wireframes floating inside the frosted glass */
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mil-case-studies-pinned .mil-pinned-bg-animations .mil-animation.mil-position-1 {
    top: 10%;
    right: 10%;
  }
  .mil-case-studies-pinned .mil-pinned-bg-animations .mil-animation.mil-position-2 {
    top: 45%;
    left: 10%;
  }
  .mil-case-studies-pinned .mil-pinned-bg-animations .mil-animation.mil-position-3 {
    bottom: 10%;
    right: 45%;
  }
  .mil-case-studies-pinned .mil-pinned-frame-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    max-height: 520px;
    border-radius: 28px; /* Clean mockup rounded borders */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden; /* Perfect full-bleed mask for the slideshow screenshots */
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 5;
  }
  .mil-case-studies-pinned .mil-pinned-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: transparent;
    opacity: 0;
    transform: scale(1.05) translateZ(-50px);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
  }
  .mil-case-studies-pinned .mil-pinned-slide.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    pointer-events: all;
    z-index: 2;
  }
  .mil-case-studies-pinned .mil-pinned-slide .mil-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
  }
  .mil-case-studies-pinned .mil-pinned-slide .mil-slide-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: inherit;
    z-index: 5;
    border: 1px solid transparent;
    background: radial-gradient(circle 220px at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(var(--project-color-rgb), 0.25), transparent 80%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: opacity 0.4s ease;
    opacity: 0;
  }
  .mil-case-studies-pinned .mil-pinned-slide .mil-slide-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
  }
  .mil-case-studies-pinned .mil-pinned-slide .mil-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mil-case-studies-pinned .mil-pinned-slide .mil-slide-media .mil-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
  }
  .mil-case-studies-pinned .mil-pinned-slide:hover .mil-slide-media img {
    transform: scale(1.12);
  }
  .mil-case-studies-pinned .mil-pinned-slide:hover .mil-slide-border-glow {
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .mil-case-studies-pinned {
    padding: clamp(60px, 8vw, 100px) 0;
  }
  .mil-case-studies-pinned .mil-pinned-wrapper {
    width: 100%;
  }
  .mil-case-studies-pinned .mil-pinned-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .mil-case-studies-pinned .mil-pinned-details-panel .mil-eyebrow {
    margin-bottom: 24px;
  }
  .mil-case-studies-pinned .mil-pinned-projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Spaced stacked cards */
    width: 100%;
  }
  .mil-case-studies-pinned .mil-pinned-project-info {
    background: rgba(12, 12, 12, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: all !important;
    position: relative;
    /* Push stats down to card bottom */
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stats {
    display: flex;
    gap: 12px;
    margin: 24px 0 12px;
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stat-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 16px;
    min-width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stat-item strong {
    font-size: 16px;
    color: var(--fg);
  }
  .mil-case-studies-pinned .mil-pinned-project-info .mil-bento-stat-item span {
    font-size: 8px;
    color: var(--fg-soft);
  }
  .mil-case-studies-pinned .mil-pinned-media-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mil-case-studies-pinned .mil-pinned-media-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .mil-case-studies-pinned .mil-pinned-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--fg);
    margin: 12px 0 16px;
    letter-spacing: -0.02em;
  }
  .mil-case-studies-pinned .mil-pinned-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg-soft);
    margin-bottom: 8px;
  }
  .mil-case-studies-pinned .mil-pinned-pagination {
    display: none !important;
  }
  .mil-case-studies-pinned .mil-pinned-visuals-panel {
    display: none !important;
  }
}

/* Clients / trusted-by marquee ----------------------------------- */
.mil-clients {
  padding: clamp(12px, 1.5vw, 24px) 0;
  text-align: center;
}
.mil-clients .mil-center-eyebrow {
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
}
.mil-clients .mil-clients-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto clamp(12px, 1.5vw, 20px);
  color: var(--fg);
}
.mil-clients .mil-clients-title em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}
.mil-clients .mil-clients-marquee {
  margin: 0 auto;
}
.mil-clients .mil-clients-marquee .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 10px 0;
}

.mil-clients-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent 100%);
}

.mil-client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  user-select: none;
  cursor: default;
}

.mil-section-dark .mil-client-badge {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mil-client-badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent, rgb(0, 113, 227));
  color: var(--accent, rgb(0, 113, 227));
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.12);
  background: var(--surface);
}

/* Services section ----------------------------------------------- */
.mil-services-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.mil-services-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.mil-services-head h2 {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
}
.mil-services-head h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}
.mil-services-head .mil-services-lede {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 60ch;
}

/* "What we do" — editorial service index */
.mil-services-index {
  border-top: 1px solid var(--border);
}

.mil-index-row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(48px, 7vw, 110px) minmax(0, 1.1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(16px, 2.2vw, 26px) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg);
  /* Hover wash sits behind the row content, bleeding past the container
     gutter so the highlight reads as a card without shifting layout. */
}
.mil-index-row::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: clamp(-28px, -2vw, -16px);
  right: clamp(-28px, -2vw, -16px);
  border-radius: 24px;
  background: var(--surface);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), transform 0.4s cubic-bezier(0, 0, 0.3642, 1);
  pointer-events: none;
}
.mil-index-row > * {
  position: relative;
  z-index: 1;
}
.mil-index-row .mil-index-num {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
  transition: color 0.3s ease;
}
.mil-index-row .mil-index-title h3 {
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 10px;
  color: var(--fg);
  transition: transform 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-index-row .mil-index-title .mil-index-tags {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
}
.mil-index-row .mil-index-descr {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
  max-width: 38ch;
}
.mil-index-row .mil-index-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-index-row .mil-index-arrow svg {
  width: 20px;
  height: 20px;
}
.mil-index-row:hover::before {
  opacity: 1;
  transform: scale(1);
}
.mil-index-row:hover .mil-index-num {
  color: var(--accent, rgb(0, 113, 227));
}
.mil-index-row:hover .mil-index-title h3 {
  transform: translateX(8px);
}
.mil-index-row:hover .mil-index-arrow {
  background-color: var(--accent, rgb(0, 113, 227));
  border-color: var(--accent, rgb(0, 113, 227));
  color: #fff;
  transform: translate(2px, -2px);
}
@media screen and (max-width: 992px) {
  .mil-index-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "num arrow" "title arrow" "descr arrow";
    row-gap: 10px;
    align-items: start;
  }
  .mil-index-row .mil-index-num {
    grid-area: num;
  }
  .mil-index-row .mil-index-title {
    grid-area: title;
  }
  .mil-index-row .mil-index-descr {
    grid-area: descr;
  }
  .mil-index-row .mil-index-arrow {
    grid-area: arrow;
    align-self: center;
    width: 44px;
    height: 44px;
  }
}

/* "How we work" — dark scroll-driven timeline */
.mil-process-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.mil-process-intro {
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media screen and (min-width: 992px) {
  .mil-process-intro {
    position: sticky;
    top: 140px;
    margin-bottom: 0;
  }
}

.mil-process-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 40px);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
}
.mil-process-cta .mil-cta-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-process-cta .mil-cta-circle svg {
  width: 18px;
  height: 18px;
}
.mil-process-cta:hover .mil-cta-circle {
  background-color: var(--accent, rgb(0, 113, 227));
  border-color: var(--accent, rgb(0, 113, 227));
  color: #fff;
  transform: translate(2px, -2px);
}

.mil-process-track {
  --rail: clamp(36px, 4vw, 56px);
  position: relative;
  padding-left: var(--rail);
}
.mil-process-track .mil-process-line {
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.mil-process-track .mil-process-line .mil-process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--accent, rgb(0, 113, 227)) 0%, rgba(0, 113, 227, 0.25) 100%);
  transform: scaleY(0);
  transform-origin: top center;
}

.mil-process-step {
  position: relative;
  padding-bottom: clamp(48px, 7vw, 88px);
}
.mil-process-step:last-child {
  padding-bottom: 0;
}
.mil-process-step .mil-process-dot {
  position: absolute;
  /* Centers the 11px dot on the 1px rail line at left: 6px */
  left: calc(var(--rail) * -1 + 1px);
  top: 14px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--fg-mute);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.mil-process-step .mil-process-num {
  display: block;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--fg-mute);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.mil-process-step .mil-process-body h3 {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--fg);
}
.mil-process-step .mil-process-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0 0 18px;
  max-width: 46ch;
}
.mil-process-step .mil-process-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mil-process-step .mil-process-chips li {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--fg-soft);
  transition: border-color 0.4s ease, color 0.4s ease;
}
.mil-process-step.mil-active .mil-process-dot {
  background: var(--accent, rgb(0, 113, 227));
  border-color: var(--accent, rgb(0, 113, 227));
  box-shadow: 0 0 0 6px rgba(0, 113, 227, 0.18);
}
.mil-process-step.mil-active .mil-process-num {
  color: var(--fg);
}

/* Reviews -------------------------------------------------------- */
.mil-reviews {
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}

.mil-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.mil-reviews-head h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
.mil-reviews-head h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-soft);
}

.mil-reviews-nav {
  display: flex;
  gap: 12px;
  /* On phones the slider is swipeable and the pagination dots remain, so
     the prev/next buttons are redundant clutter under the heading. */
}
@media screen and (max-width: 768px) {
  .mil-reviews-nav {
    display: none;
  }
}
.mil-reviews-nav .mil-revi-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--fg);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.mil-reviews-nav .mil-revi-arrow svg {
  width: 22px;
  height: 22px;
}
.mil-reviews-nav .mil-revi-arrow:hover {
  background-color: var(--accent, rgb(0, 113, 227));
  border-color: var(--accent, rgb(0, 113, 227));
  color: #fff;
}
.mil-reviews-nav .mil-revi-arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.mil-reviews-slider {
  position: relative;
  overflow: visible;
  /* Gutter column for the oversized quote mark */
  padding-left: clamp(0px, 12vw, 150px);
}
.mil-reviews-slider .mil-reviews-mark {
  position: absolute;
  top: -0.06em;
  left: 0;
  font-size: clamp(90px, 10vw, 150px);
  line-height: 1;
  font-weight: 600;
  color: var(--accent, rgb(0, 113, 227));
  pointer-events: none;
  user-select: none;
}
.mil-reviews-slider .mil-review-frame {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
}
.mil-reviews-slider .mil-review-frame blockquote {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.22;
  color: var(--fg);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 980px;
}
.mil-reviews-slider .mil-review-frame figcaption {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 760px;
}
.mil-reviews-slider .mil-review-frame figcaption .mil-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(0, 113, 227, 0.1);
  border: 1px solid rgba(0, 113, 227, 0.25);
  color: var(--accent, rgb(0, 113, 227));
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.mil-reviews-slider .mil-review-frame figcaption .mil-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mil-reviews-slider .mil-review-frame figcaption .mil-review-meta strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.mil-reviews-slider .mil-review-frame figcaption .mil-review-meta span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
@media screen and (max-width: 768px) {
  .mil-reviews-slider {
    padding-left: 0;
  }
  .mil-reviews-slider .mil-reviews-mark {
    position: static;
    display: block;
    font-size: 72px;
    line-height: 0.55;
    margin-bottom: 24px;
  }
}

.mil-revi-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(36px, 5vw, 56px);
}
.mil-revi-pagination .swiper-pagination-bullet {
  width: 44px;
  height: 3px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 2px;
  opacity: 1;
  background-color: var(--border);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot {
  display: none;
}
.mil-revi-pagination .swiper-pagination-bullet:hover {
  background-color: var(--fg-mute);
}
.mil-revi-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent, rgb(0, 113, 227));
}

/* Address / Google Business block ------------------------------- */
.mil-address {
  font-style: normal;
}
.mil-address .mil-address-line {
  color: var(--fg-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Portfolio cards (uniform thumbnail grid) ---------------------- */
.mil-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media screen and (max-width: 992px) {
  .mil-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .mil-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.mil-portfolio-item {
  display: block;
  text-decoration: none;
  color: var(--fg);
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0, 0, 0.3642, 1), border-color 0.3s ease;
}
.mil-portfolio-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent, rgb(0, 113, 227));
}
.mil-portfolio-item:hover .mil-portfolio-thumb img {
  transform: scale(1.05);
}
.mil-portfolio-item .mil-portfolio-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #0a0a0a;
}
.mil-portfolio-item .mil-portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0, 0, 0.3642, 1);
  display: block;
}
.mil-portfolio-item .mil-portfolio-info {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mil-portfolio-item .mil-portfolio-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.mil-portfolio-item h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg);
}

/* -------------------------------------------

orbxis liquid glass navbar

------------------------------------------- */
.orbxis-glass-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: max-content;
  max-width: 92%;
  height: 58px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.orbxis-glass-navbar.orbxis-navbar-shrunk {
  top: 12px;
  height: 50px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.orbxis-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0 10px 0 24px;
  gap: 32px;
}

.orbxis-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  flex-shrink: 0;
}

.orbxis-navbar-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.orbxis-navbar-logo-icon:hover {
  opacity: 0.85;
}
.orbxis-navbar-logo-icon .orbxis-logo-svg {
  display: block;
}

.orbxis-navbar-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  min-width: 175px;
  max-width: 210px;
  padding: 0 14px;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.orbxis-navbar-prompt:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}
.orbxis-navbar-prompt .orbxis-prompt-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 2px;
}
.orbxis-navbar-prompt .orbxis-prompt-cursor {
  font-weight: 300;
  animation: orbxis-blink 1s step-end infinite;
  margin-right: auto;
}
.orbxis-navbar-prompt .orbxis-prompt-arrow {
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.orbxis-navbar-prompt:hover .orbxis-prompt-arrow {
  transform: translateX(3px);
}

@keyframes orbxis-blink {
  from, to {
    color: transparent;
  }
  50% {
    color: #0071e3;
  }
}
.orbxis-navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  height: 100%;
}

.orbxis-nav-link {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.orbxis-nav-link.orbxis-active {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.orbxis-hover-pill {
  position: absolute;
  height: 36px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: left 0.32s cubic-bezier(0.25, 1, 0.5, 1), width 0.32s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.95);
}
.orbxis-hover-pill.orbxis-active-hover {
  opacity: 1;
  transform: scale(1);
}

.orbxis-nav-dropdown-trigger {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.orbxis-nav-dropdown-trigger:hover .orbxis-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.orbxis-nav-dropdown-trigger:hover > .orbxis-nav-link {
  color: rgb(255, 255, 255);
}

.orbxis-nav-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.95);
  width: 190px;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.orbxis-nav-dropdown a {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-align: left;
}
.orbxis-nav-dropdown a:hover {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.orbxis-navbar-cta {
  display: flex;
  align-items: center;
  padding-right: 6px;
}

.orbxis-nav-btn {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background: rgb(0, 113, 227);
  padding: 9px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.orbxis-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.5);
  background: rgb(13, 126, 240);
}
.orbxis-nav-btn:active {
  transform: translateY(1px);
}

.orbxis-mobile-trigger {
  display: none;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}
.orbxis-mobile-trigger span, .orbxis-mobile-trigger span:after, .orbxis-mobile-trigger span:before {
  background: rgb(255, 255, 255) !important;
}

@media screen and (min-width: 1201px) {
  .mil-frame .mil-frame-top {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .mil-frame .mil-frame-top {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .orbxis-glass-navbar {
    width: calc(100% - 40px);
    left: 20px;
    transform: none;
    height: 52px;
    top: 16px;
    border-radius: 20px;
  }
  .orbxis-glass-navbar.orbxis-navbar-shrunk {
    top: 10px;
    height: 48px;
  }
  .orbxis-navbar-inner {
    padding: 0 8px 0 16px;
    gap: 12px;
  }
  .orbxis-navbar-logo .orbxis-logo-text {
    font-size: 16px;
  }
  .orbxis-navbar-links,
  .orbxis-navbar-cta {
    display: none !important;
  }
  .orbxis-navbar-brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .orbxis-navbar-prompt {
    display: flex !important;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    height: 34px;
    padding: 0 12px;
  }
  .orbxis-mobile-trigger {
    display: flex !important;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 420px) {
  .orbxis-navbar-prompt {
    font-size: 12px;
    padding: 0 10px;
  }
  .orbxis-navbar-prompt .orbxis-prompt-arrow {
    display: none;
  }
  .orbxis-navbar-inner {
    gap: 8px;
    padding: 0 6px 0 12px;
  }
}
.orbxis-glass-navbar.orbxis-theme-dark {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.orbxis-glass-navbar.orbxis-theme-dark.orbxis-navbar-shrunk {
  background: rgba(255, 255, 255, 0.14);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-logo {
  color: rgb(255, 255, 255);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-logo .orbxis-logo-svg {
  color: rgb(255, 255, 255);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-logo .orbxis-logo-text {
  color: rgb(255, 255, 255);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-logo-icon {
  color: rgb(255, 255, 255);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-logo-icon .orbxis-logo-svg {
  color: rgb(255, 255, 255);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-nav-link:hover {
  color: rgb(255, 255, 255);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-nav-link.orbxis-active {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-hover-pill {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.05);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-prompt {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-prompt:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-navbar-prompt .orbxis-prompt-arrow {
  color: rgba(255, 255, 255, 0.5);
}
.orbxis-glass-navbar.orbxis-theme-dark .orbxis-mobile-trigger span, .orbxis-glass-navbar.orbxis-theme-dark .orbxis-mobile-trigger span:after, .orbxis-glass-navbar.orbxis-theme-dark .orbxis-mobile-trigger span:before {
  background: rgb(255, 255, 255) !important;
}

.orbxis-glass-navbar.orbxis-theme-light {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.85), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.orbxis-glass-navbar.orbxis-theme-light.orbxis-navbar-shrunk {
  background: rgba(255, 255, 255, 0.65);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-logo {
  color: #0f0f0f;
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-logo .orbxis-logo-svg {
  color: #0f0f0f;
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-logo .orbxis-logo-text {
  color: #0f0f0f;
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-logo-icon {
  color: #0f0f0f;
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-logo-icon .orbxis-logo-svg {
  color: #0f0f0f;
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-nav-link {
  color: rgba(15, 15, 15, 0.6);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-nav-link:hover {
  color: #0f0f0f;
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-nav-link.orbxis-active {
  color: #0f0f0f;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-hover-pill {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.02);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-prompt {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(15, 15, 15, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-prompt:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-navbar-prompt .orbxis-prompt-arrow {
  color: rgba(15, 15, 15, 0.4);
}
.orbxis-glass-navbar.orbxis-theme-light .orbxis-mobile-trigger span, .orbxis-glass-navbar.orbxis-theme-light .orbxis-mobile-trigger span:after, .orbxis-glass-navbar.orbxis-theme-light .orbxis-mobile-trigger span:before {
  background: #0f0f0f !important;
}

.mil-contact-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.008) 100%);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14), 0 50px 100px rgba(0, 0, 0, 0.55);
  padding: 60px;
}
@media (max-width: 768px) {
  .mil-contact-card {
    padding: 40px 24px;
    border-radius: 22px;
  }
}
.mil-contact-card input,
.mil-contact-card textarea,
.mil-contact-card select {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: rgb(255, 255, 255);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s cubic-bezier(0, 0, 0.3642, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.3642, 1), background 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-contact-card input::placeholder,
.mil-contact-card textarea::placeholder,
.mil-contact-card select::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.mil-contact-card input:focus,
.mil-contact-card textarea:focus,
.mil-contact-card select:focus {
  outline: none;
  border-color: rgba(0, 113, 227, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 3px rgba(0, 113, 227, 0.18);
}
.mil-contact-card textarea {
  resize: vertical;
  min-height: 140px;
}

.mil-contact-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgb(0, 113, 227);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mil-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mil-service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .mil-service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .mil-service-cards-grid {
    grid-template-columns: 1fr;
  }
}

.mil-service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s cubic-bezier(0, 0, 0.3642, 1), background 0.2s cubic-bezier(0, 0, 0.3642, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.3642, 1), transform 0.2s cubic-bezier(0, 0, 0.3642, 1);
  user-select: none;
}
.mil-service-card .mil-service-icon {
  color: rgb(0, 113, 227);
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
.mil-service-card strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  margin-bottom: 4px;
}
.mil-service-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.mil-service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  transform: translateY(-2px);
}
.mil-service-card.mil-active {
  border-color: rgba(0, 113, 227, 0.7);
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.16) 0%, rgba(0, 113, 227, 0.05) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(0, 113, 227, 0.3), 0 10px 30px rgba(0, 113, 227, 0.12);
}

.mil-budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mil-budget-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 0.2s cubic-bezier(0, 0, 0.3642, 1), color 0.2s cubic-bezier(0, 0, 0.3642, 1), background 0.2s cubic-bezier(0, 0, 0.3642, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-budget-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.07);
}
.mil-budget-pill.mil-active {
  border-color: rgba(0, 113, 227, 0.7);
  color: rgb(255, 255, 255);
  background: rgba(0, 113, 227, 0.16);
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.3), 0 8px 24px rgba(0, 113, 227, 0.12);
}

.mil-select-wrap {
  position: relative;
}
.mil-select-wrap select {
  padding-right: 44px;
  appearance: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
}
.mil-select-wrap select option {
  color: rgb(255, 255, 255);
  background: #111;
}
.mil-select-wrap select:focus, .mil-select-wrap select[value]:not([value=""]) {
  color: rgb(255, 255, 255);
}
.mil-select-wrap .mil-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  font-size: 12px;
}

.mil-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 576px) {
  .mil-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mil-form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.mil-form-trust svg {
  color: rgb(0, 113, 227);
  flex-shrink: 0;
}

.mil-form-message {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
}
.mil-form-message.mil-success {
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.3);
  color: #34c759;
}
.mil-form-message.mil-error {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff6b6b;
}

/* -------------------------------------------

discover dashboard (interactive — replaces about PNG)
Monochrome glass panels themed around Orbxis disciplines:
CRM · Web · App · AI. Flat (no tilt).

------------------------------------------- */
.mil-discover-stage {
  position: absolute;
  inset: 0;
  container-type: size;
  container-name: disc;
  color: rgb(255, 255, 255);
  font-family: "Outfit", sans-serif;
  perspective: 1100px;
  /* subtle interactivity caption */
  /* blinking live indicator */
  /* shared atoms */
  /* 1 · AI — model accuracy (donut + sparkline) */
  /* 2 · CRM — pipeline rows */
  /* 3 · Web — traffic (wave tablet) */
  /* 4 · App — live updates (toggle) */
  /* 5 · discipline nav (CRM · Web · App · AI) */
  /* 6 · performance (bars + ring) */
}
.mil-discover-stage * {
  box-sizing: border-box;
}
.mil-discover-stage .mil-disc-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 3cqw;
  padding: 2.4cqw;
  background: linear-gradient(157deg, rgba(28, 28, 30, 0.78), rgba(8, 8, 9, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 10cqw 26cqw -8cqw rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6cqw;
  will-change: transform;
  transition: box-shadow 0.4s cubic-bezier(0, 0, 0.3642, 1), border-color 0.4s cubic-bezier(0, 0, 0.3642, 1);
  /* light sheen sweeping across the glass on reveal */
}
.mil-discover-stage .mil-disc-panel.is-hovered {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18cqw 38cqw -8cqw rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 14cqw rgba(255, 255, 255, 0.08);
}
.mil-discover-stage .mil-disc-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.16) 47%, rgba(255, 255, 255, 0.04) 56%, transparent 72%);
  transform: translateX(-130%);
}
.mil-discover-stage .mil-disc-panel.is-swept::after {
  animation: mil-disc-sheen 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.mil-discover-stage .mil-disc-caption {
  position: absolute;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1cqw;
  font-size: 1.8cqw;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.mil-discover-stage .mil-disc-caption i {
  font-size: 1.7cqw;
  opacity: 0.85;
}
.mil-discover-stage .mil-disc-live {
  width: 1.5cqw;
  height: 1.5cqw;
  flex: none;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 2cqw rgba(255, 255, 255, 0.8);
  animation: mil-disc-blink 2.4s ease-in-out infinite;
}
.mil-discover-stage .mil-wave-live {
  fill: rgb(255, 255, 255);
  opacity: 0;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9));
}
.mil-discover-stage .mil-disc-label {
  font-size: 1.5cqw;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  line-height: 1;
}
.mil-discover-stage .mil-disc-bar {
  display: flex;
  align-items: center;
  gap: 1.4cqw;
}
.mil-discover-stage .mil-disc-ico {
  font-size: 1.7cqw;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}
.mil-discover-stage .mil-disc-ico.mil-r {
  margin-left: auto;
}
.mil-discover-stage .mil-disc-dash {
  flex: 1;
  height: 0.5cqw;
  border-radius: 1cqw;
  background: rgba(255, 255, 255, 0.1);
}
.mil-discover-stage .mil-disc-dash.mil-grow {
  flex: 1;
}
.mil-discover-stage .mil-disc-lines {
  display: flex;
  flex-direction: column;
  gap: 0.9cqw;
  flex: 1;
}
.mil-discover-stage .mil-disc-lines i {
  height: 0.9cqw;
  border-radius: 1cqw;
  background: rgba(255, 255, 255, 0.2);
  display: block;
}
.mil-discover-stage .mil-disc-lines i:nth-child(2) {
  width: 62%;
  background: rgba(255, 255, 255, 0.1);
}
.mil-discover-stage .mil-disc-lines.mil-disc-lines-lg i {
  height: 1.2cqw;
}
.mil-discover-stage .mil-disc-p1 {
  left: 60%;
  top: 14.5%;
  width: 32cqw;
  min-height: 20cqw;
  box-shadow: 0 10cqw 26cqw -8cqw rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 9cqw rgba(255, 255, 255, 0.05);
}
.mil-discover-stage .mil-disc-p1-body {
  display: flex;
  align-items: center;
  gap: 2cqw;
}
.mil-discover-stage .mil-disc-donut {
  width: 7.5cqw;
  height: 7.5cqw;
  flex: none;
  transform: rotate(-90deg);
}
.mil-discover-stage .mil-disc-donut .mil-donut-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 3.4;
}
.mil-discover-stage .mil-disc-donut .mil-donut-arc {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}
.mil-discover-stage .mil-disc-p1-stats {
  display: flex;
  flex-direction: column;
  gap: 0.4cqw;
}
.mil-discover-stage .mil-disc-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6cqw;
  font-size: 3.4cqw;
  font-weight: 600;
}
.mil-discover-stage .mil-disc-stat .mil-disc-x {
  color: rgba(255, 255, 255, 0.4);
  font-size: 2.2cqw;
}
.mil-discover-stage .mil-disc-kpi {
  font-size: 2cqw;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.mil-discover-stage .mil-disc-spark {
  width: 100%;
  height: 6cqw;
}
.mil-discover-stage .mil-disc-spark .mil-spark-area {
  fill: url(#discSparkFill);
  stroke: none;
}
.mil-discover-stage .mil-disc-spark .mil-spark-line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mil-discover-stage .mil-disc-p2 {
  left: 11.5%;
  top: 25%;
  width: 34cqw;
  min-height: 14cqw;
  gap: 1.4cqw;
}
.mil-discover-stage .mil-disc-p2-body {
  display: flex;
  align-items: center;
  gap: 1.8cqw;
  flex: 1;
}
.mil-discover-stage .mil-disc-orb {
  width: 4cqw;
  height: 4cqw;
  flex: none;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgb(255, 255, 255), rgb(128, 128, 128));
  box-shadow: 0 0 3cqw rgba(255, 255, 255, 0.25);
}
.mil-discover-stage .mil-disc-rows {
  display: flex;
  flex-direction: column;
  gap: 1.1cqw;
  flex: 1;
}
.mil-discover-stage .mil-disc-row {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding: 0.4cqw 0.4cqw;
  border-radius: 1.4cqw;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-row .mil-disc-chip {
  width: 2.2cqw;
  height: 2.2cqw;
  flex: none;
  border-radius: 0.7cqw;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-row.is-active .mil-disc-chip, .mil-discover-stage .mil-disc-row:hover .mil-disc-chip {
  background: rgb(255, 255, 255);
}
.mil-discover-stage .mil-disc-row.is-active {
  background: rgba(255, 255, 255, 0.05);
}
.mil-discover-stage .mil-disc-prog {
  flex: 1;
  height: 1cqw;
  border-radius: 1cqw;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.mil-discover-stage .mil-disc-prog b {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 1cqw;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgb(255, 255, 255));
}
.mil-discover-stage .mil-disc-p3 {
  left: 21.5%;
  top: 35%;
  width: 51cqw;
  min-height: 28cqw;
  z-index: 4;
  gap: 1.4cqw;
}
.mil-discover-stage .mil-disc-p3-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mil-discover-stage .mil-disc-pills {
  display: flex;
  gap: 1cqw;
}
.mil-discover-stage .mil-disc-pill {
  all: unset;
  cursor: pointer;
  font-size: 1.7cqw;
  padding: 0.7cqw 1.8cqw;
  border-radius: 4cqw;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-pill.is-active {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.mil-discover-stage .mil-disc-pill:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}
.mil-discover-stage .mil-disc-p3-main {
  display: flex;
  gap: 1.8cqw;
  flex: 1;
  min-height: 0;
}
.mil-discover-stage .mil-disc-rail {
  display: flex;
  flex-direction: column;
  gap: 1cqw;
  padding-right: 1.6cqw;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mil-discover-stage .mil-disc-tab {
  all: unset;
  cursor: pointer;
  width: 3.4cqw;
  height: 3.4cqw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1cqw;
  font-size: 1.7cqw;
  color: rgba(255, 255, 255, 0.4);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}
.mil-discover-stage .mil-disc-tab:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.7);
}
.mil-discover-stage .mil-disc-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mil-discover-stage .mil-disc-wave {
  width: 100%;
  flex: 1;
  min-height: 0;
}
.mil-discover-stage .mil-disc-wave .mil-wave-area {
  fill: url(#discWaveA);
  stroke: none;
  opacity: 0;
}
.mil-discover-stage .mil-disc-wave .mil-wave-line {
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
}
.mil-discover-stage .mil-disc-wave .mil-wave-a {
  stroke: rgb(255, 255, 255);
  filter: drop-shadow(0 0 1.4px rgba(255, 255, 255, 0.5));
}
.mil-discover-stage .mil-disc-wave .mil-wave-b {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-dasharray: 4 3;
  opacity: 0;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-wave.show-b .mil-wave-b {
  opacity: 1;
}
.mil-discover-stage .mil-disc-wave .mil-wave-node {
  fill: rgb(0, 0, 0);
  stroke: rgb(255, 255, 255);
  stroke-width: 1.6;
  opacity: 0;
}
.mil-discover-stage .mil-disc-wave .mil-wave-cursor {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-wave.is-hover .mil-wave-cursor {
  opacity: 1;
}
.mil-discover-stage .mil-disc-wave .mil-wave-guide {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.6;
  stroke-dasharray: 2 2;
}
.mil-discover-stage .mil-disc-wave .mil-wave-dot {
  fill: rgb(255, 255, 255);
  stroke: rgb(0, 0, 0);
  stroke-width: 1;
}
.mil-discover-stage .mil-disc-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 1cqw;
}
.mil-discover-stage .mil-disc-ticks i {
  width: 2.4cqw;
  height: 0.6cqw;
  border-radius: 1cqw;
  background: rgba(255, 255, 255, 0.1);
  display: block;
}
.mil-discover-stage .mil-disc-p4 {
  left: 64%;
  top: 43%;
  width: 26cqw;
  min-height: 15.5cqw;
  z-index: 6;
  justify-content: space-between;
}
.mil-discover-stage .mil-disc-p4-row {
  display: flex;
  align-items: center;
  gap: 1.6cqw;
}
.mil-discover-stage .mil-disc-switch {
  all: unset;
  cursor: pointer;
  flex: none;
  width: 9.5cqw;
  height: 5cqw;
  border-radius: 5cqw;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-switch .mil-disc-knob {
  position: absolute;
  top: 0.7cqw;
  left: 0.7cqw;
  width: 3.6cqw;
  height: 3.6cqw;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-switch.is-on {
  background: rgb(255, 255, 255);
  box-shadow: 0 0 4cqw rgba(255, 255, 255, 0.3);
}
.mil-discover-stage .mil-disc-switch.is-on .mil-disc-knob {
  left: calc(100% - 4.3cqw);
  background: rgb(0, 0, 0);
}
.mil-discover-stage .mil-disc-p4-foot {
  display: flex;
  align-items: center;
  gap: 1.4cqw;
}
.mil-discover-stage .mil-disc-mini {
  width: 5cqw;
  height: 0.9cqw;
  border-radius: 1cqw;
  background: rgba(255, 255, 255, 0.1);
}
.mil-discover-stage .mil-disc-chev {
  margin-left: auto;
  font-size: 1.6cqw;
  color: rgba(255, 255, 255, 0.4);
}
.mil-discover-stage .mil-disc-p5 {
  left: 10.5%;
  top: 54%;
  width: 25cqw;
  min-height: 22cqw;
  z-index: 7;
  background: linear-gradient(157deg, rgba(20, 20, 22, 0.84), rgba(5, 5, 6, 0.92));
}
.mil-discover-stage .mil-disc-back {
  width: 4.2cqw;
  height: 4.2cqw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.6cqw;
  color: rgba(255, 255, 255, 0.6);
}
.mil-discover-stage .mil-disc-menu {
  display: flex;
  flex-direction: column;
  gap: 1cqw;
  margin-top: 0.6cqw;
}
.mil-discover-stage .mil-disc-mitem {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.4cqw;
  padding: 1.1cqw 1.2cqw;
  border-radius: 1.6cqw;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-mitem .mil-disc-mico {
  font-size: 1.7cqw;
  color: rgba(255, 255, 255, 0.4);
  width: 2.4cqw;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-mitem .mil-disc-mline {
  height: 1cqw;
  border-radius: 1cqw;
  background: rgba(255, 255, 255, 0.2);
  flex: 1;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-discover-stage .mil-disc-mitem.is-active {
  background: rgb(255, 255, 255);
}
.mil-discover-stage .mil-disc-mitem.is-active .mil-disc-mico {
  color: rgb(0, 0, 0);
}
.mil-discover-stage .mil-disc-mitem.is-active .mil-disc-mline {
  background: rgba(0, 0, 0, 0.4);
}
.mil-discover-stage .mil-disc-mitem:hover:not(.is-active) .mil-disc-mico {
  color: rgba(255, 255, 255, 0.7);
}
.mil-discover-stage .mil-disc-p6 {
  left: 33%;
  top: 61%;
  width: 39cqw;
  min-height: 22cqw;
  z-index: 6;
  box-shadow: 0 10cqw 26cqw -8cqw rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 9cqw rgba(255, 255, 255, 0.05);
}
.mil-discover-stage .mil-disc-p6-top {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
}
.mil-discover-stage .mil-disc-tab2 {
  width: 3cqw;
  height: 3cqw;
  border-radius: 0.9cqw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5cqw;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.mil-discover-stage .mil-disc-tab2.is-active {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.mil-discover-stage .mil-disc-kpi-sm {
  font-size: 2cqw;
  font-weight: 600;
}
.mil-discover-stage .mil-disc-kpi-sm.mil-mut {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.mil-discover-stage .mil-disc-p6-main {
  display: flex;
  align-items: flex-end;
  gap: 2.4cqw;
  flex: 1;
  min-height: 0;
}
.mil-discover-stage .mil-disc-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.4cqw;
  height: 100%;
  flex: 1;
}
.mil-discover-stage .mil-disc-bars i {
  flex: 1;
  display: block;
  height: 0;
  border-radius: 1cqw 1cqw 0 0;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.2));
  align-self: flex-end;
}
.mil-discover-stage .mil-disc-ring {
  width: 11cqw;
  height: 11cqw;
  flex: none;
  transform: rotate(-90deg);
}
.mil-discover-stage .mil-disc-ring .mil-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 3;
}
.mil-discover-stage .mil-disc-ring .mil-ring-arc {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 1.4px rgba(255, 255, 255, 0.5));
}
@media (max-width: 992px) {
  .mil-discover-stage .mil-disc-ico, .mil-discover-stage .mil-disc-chev, .mil-discover-stage .mil-disc-back i {
    font-size: 2.2cqw;
  }
}

/* Touch devices: the dashboard is a desktop hover/precision-click showcase, so
   its controls are far too small to tap and there's no hover feedback. On
   coarse pointers we give the panels tap feedback and grow the interactive
   controls into larger touch targets. Desktop (fine pointer) is untouched. */
@media (hover: none), (pointer: coarse) {
  .mil-discover-stage {
    /* tapping a panel lifts it, mirroring the desktop hover affordance */
    /* enlarge tap targets */
    /* visible pressed state when a control is tapped */
  }
  .mil-discover-stage .mil-disc-panel:active,
  .mil-discover-stage .mil-disc-panel:focus-within {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18cqw 38cqw -8cqw rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 14cqw rgba(255, 255, 255, 0.08);
  }
  .mil-discover-stage .mil-disc-row {
    padding: 1.3cqw 1cqw;
  }
  .mil-discover-stage .mil-disc-pill {
    padding: 1.4cqw 2.6cqw;
  }
  .mil-discover-stage .mil-disc-tab {
    width: 5.4cqw;
    height: 5.4cqw;
  }
  .mil-discover-stage .mil-disc-tab2 {
    width: 4.8cqw;
    height: 4.8cqw;
  }
  .mil-discover-stage .mil-disc-mitem {
    padding: 1.8cqw 1.4cqw;
  }
  .mil-discover-stage .mil-disc-switch {
    width: 11.5cqw;
    height: 6cqw;
  }
  .mil-discover-stage .mil-disc-switch .mil-disc-knob {
    width: 4.4cqw;
    height: 4.4cqw;
  }
  .mil-discover-stage .mil-disc-switch.is-on .mil-disc-knob {
    left: calc(100% - 5.1cqw);
  }
  .mil-discover-stage .mil-disc-row:active .mil-disc-chip {
    background: rgb(255, 255, 255);
  }
  .mil-discover-stage .mil-disc-pill:active:not(.is-active) {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .mil-discover-stage .mil-disc-tab:active:not(.is-active),
  .mil-discover-stage .mil-disc-tab2:active:not(.is-active) {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
  }
  .mil-discover-stage .mil-disc-mitem:active:not(.is-active) .mil-disc-mico {
    color: rgba(255, 255, 255, 0.7);
  }
}
@keyframes mil-disc-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(0.7);
  }
}
@keyframes mil-disc-sheen {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mil-discover-stage .mil-disc-panel {
    opacity: 1 !important;
  }
  .mil-discover-stage .mil-disc-live {
    animation: none;
  }
}
