:root {
  --color-ink: #111827;
  --color-muted: #667085;
  --color-soft: #f8fafc;
  --color-line: #e5e7eb;
  --color-deep: #0b1220;
  --color-blue: #3b82f6;
  --color-indigo: #6366f1;
  --color-gold: #f7c948;
  --color-amber: #ffb020;
  --shadow-card: 0 20px 60px -34px rgba(17, 24, 39, 0.28);
  --shadow-lift: 0 30px 80px -34px rgba(17, 24, 39, 0.38);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-site: 1280px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--color-ink);
  background: #ffffff;
}

/* codex 2026-06-29 Mountor exact home rebuild */
body[data-page="home"] [data-site-header-root],
body[data-page="home"] [data-site-footer-root] {
  display: none !important;
}

body[data-page="home"] {
  margin: 0;
  overflow-x: hidden;
  background: #000000;
}

body[data-page="home"] .site-main {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #000000;
}

.mt-home {
  position: relative;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.mt-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  padding: 0 58px;
  color: #ffffff;
  box-sizing: border-box;
}

.mt-logo {
  display: inline-flex;
  align-items: center;
  width: 142px;
  height: 40px;
  flex: 0 0 auto;
}

.mt-logo img {
  display: block;
  width: 142px;
  height: auto;
}

.mt-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-left: auto;
  margin-right: 72px;
}

.mt-nav a {
  position: relative;
  display: inline-flex;
  height: 80px;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.mt-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  background: #ffd21f;
}

.mt-contact {
  display: inline-flex;
  width: 126px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #087dff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mt-menu {
  position: fixed;
  top: 31px;
  right: 0;
  z-index: 130;
  display: grid;
  width: 10px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  gap: 4px;
}

.mt-menu span {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
}

.mt-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #1d81bd;
}

.mt-vslides,
.mt-vslide,
.mt-hslides {
  position: absolute;
  inset: 0;
}

.mt-vslide {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 44px, 0);
  transition: opacity 0.72s ease, transform 0.72s ease, visibility 0.72s ease;
}

.mt-vslide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.mt-hslides img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 2.6s ease;
}

.mt-vslide.is-active .mt-hslides img.is-active {
  opacity: 1;
  transform: scale(1);
}

.mt-copy {
  position: absolute;
  left: 58px;
  bottom: 252px;
  z-index: 4;
  width: min(680px, 58vw);
}

.mt-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.mt-copy h1 span {
  display: block;
}

.mt-copy h1 .is-accent {
  position: relative;
  display: inline-block;
}

.mt-copy h1 .is-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: -2px;
  bottom: 2px;
  z-index: -1;
  height: 13px;
  background: #ffd21f;
}

.mt-copy p {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.mt-hero-pagination {
  position: fixed;
  top: 50%;
  right: 52px;
  z-index: 20;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.mt-hero-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.mt-hero-pagination button.is-active {
  height: 34px;
  background: #ffffff;
}

.mt-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 54px;
  min-height: 176px;
  align-items: center;
  padding: 38px 144px 34px;
  box-sizing: border-box;
  background: #000000;
  color: #ffffff;
}

.mt-cookie.is-hidden {
  display: none;
}

.mt-cookie strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.mt-cookie p {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.72;
}

.mt-cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.mt-cookie-actions button {
  display: inline-flex;
  width: 164px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.mt-cookie-actions button:last-child {
  border-color: #ffffff;
  background: #ffffff;
  color: #087dff;
}

.mt-about-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 70px;
  align-items: center;
  padding: 130px 9vw;
  background: #ffffff;
  color: #111111;
}

.mt-about-strip figure {
  margin: 0;
}

.mt-about-strip img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.mt-about-strip span {
  color: #0b78d0;
  font-size: 18px;
  font-weight: 800;
}

.mt-about-strip h2 {
  margin: 18px 0 22px;
  color: #111111;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.16;
}

.mt-about-strip p {
  margin: 0;
  color: #222222;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 1100px) {
  .mt-header {
    padding: 0 30px;
  }

  .mt-nav,
  .mt-contact {
    display: none;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] {
    overflow-x: hidden !important;
  }

  .mt-home,
  .mt-hero,
  .mt-cookie {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .mt-header {
    height: 80px;
    padding: 0;
  }

  .mt-logo {
    position: fixed;
    top: 24px;
    left: 29px;
    z-index: 132;
    width: 128px;
    height: auto;
  }

  .mt-logo img {
    width: 128px;
  }

  .mt-menu {
    top: 33px;
    left: 5px;
    right: auto;
    width: 4px;
    height: 18px;
    gap: 4px;
  }

  .mt-menu span {
    width: 3px;
    height: 3px;
  }

  .mt-hero {
    height: 100vh;
    min-height: 844px;
  }

  .mt-hslides img {
    object-position: center center;
  }

  .mt-copy {
    top: 128px;
    right: 24px;
    bottom: auto;
    left: auto;
    width: min(272px, calc(100vw - 64px));
    text-align: right;
  }

  .mt-copy h1 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.32;
  }

  .mt-copy h1 .is-accent {
    color: #ffd21f;
  }

  .mt-copy h1 .is-accent::after {
    display: none;
  }

  .mt-copy p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
  }

  .mt-hero-pagination {
    display: none;
  }

  .mt-cookie {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 364px;
    padding: 24px 28px 48px;
  }

  .mt-cookie strong {
    font-size: 20px;
    line-height: 1.46;
  }

  .mt-cookie p {
    max-height: 138px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.7;
  }

  .mt-cookie-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    justify-content: stretch;
    gap: 24px;
  }

  .mt-cookie-actions button {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 18px;
  }

  .mt-about-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 84px 28px;
  }

  .mt-about-strip h2 {
    font-size: 34px;
  }

  .mt-about-strip p {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #ffffff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--color-soft);
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 0%, rgba(59, 130, 246, 0.34), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #121a2d 54%, #1e1b4b 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.is-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: 0;
  color: inherit;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--color-ink);
}

.section-dark .section-title,
.section-dark .section-kicker,
.section-dark .section-copy {
  color: #ffffff;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--color-gold), #f97316 30%, var(--color-blue) 72%, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  box-shadow: 0 18px 38px -22px rgba(255, 176, 32, 0.85);
}

.btn-blue {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-blue), #7c3aed);
  box-shadow: 0 18px 38px -22px rgba(59, 130, 246, 0.85);
}

.btn-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-outline {
  color: var(--color-ink);
  border-color: var(--color-line);
  background: #ffffff;
}

.btn-full {
  width: 100%;
}

.icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.64);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 48px -32px rgba(17, 24, 39, 0.32);
}

.header-inner {
  width: min(var(--max-site), calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--color-ink);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(135deg, var(--color-gold), #ffffff 48%, var(--color-blue));
  box-shadow: 0 16px 34px -20px rgba(59, 130, 246, 0.7);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--color-muted);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  transition: color 200ms ease, background 200ms ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.is-active,
.nav-trigger.is-active {
  color: var(--color-ink);
  background: #f3f4f6;
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
  transition: transform 200ms ease;
}

.nav-link:hover::after,
.nav-trigger:hover::after,
.nav-link.is-active::after,
.nav-trigger.is-active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.mega-card {
  min-height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #edf0f3;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.mega-card:hover {
  background: var(--color-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -36px rgba(17, 24, 39, 0.36);
}

.mega-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-ink);
  font-weight: 900;
}

.mega-desc {
  margin: 8px 0 14px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.mega-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mega-sub a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #344054;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 800;
  transition: color 200ms ease, background 200ms ease;
}

.mega-sub a:hover {
  color: #111827;
  background: #fef3c7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  background: #ffffff;
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 0 auto;
  width: min(420px, 100%);
  padding: 22px;
  background: #ffffff;
  border-left: 1px solid var(--color-line);
  box-shadow: -24px 0 70px -48px rgba(17, 24, 39, 0.6);
  transform: translateX(100%);
  transition: transform 240ms ease;
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(15, 23, 42, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-link,
.mobile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  color: var(--color-ink);
  background: transparent;
  font-weight: 800;
}

.mobile-link.is-active,
.mobile-summary.is-active,
.mobile-link:hover,
.mobile-summary:hover {
  background: var(--color-soft);
}

.mobile-group {
  margin: 6px 0;
  border-radius: 16px;
}

.mobile-submenu {
  display: grid;
  gap: 8px;
  padding: 6px 0 12px 18px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.mobile-submenu a:hover {
  color: var(--color-ink);
  background: #f9fafb;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 126px 0 86px;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(8, 17, 31, 0.95), rgba(16, 24, 39, 0.78) 52%, rgba(49, 46, 129, 0.82)),
    radial-gradient(circle at 72% 20%, rgba(59, 130, 246, 0.48), transparent 34%),
    linear-gradient(135deg, #08111f, #1e1b4b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.08;
  font-weight: 900;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-visual {
  position: relative;
  min-height: 500px;
}

.dashboard-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 80px -38px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
}

.dashboard-main {
  top: 36px;
  right: 12px;
  width: min(430px, 100%);
  padding: 24px;
}

.dashboard-main h3 {
  font-size: 18px;
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.metric-mini {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.metric-mini strong {
  display: block;
  font-size: 25px;
  font-family: Manrope, Inter, sans-serif;
}

.metric-mini span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.chart-lines {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 118px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(3, 7, 18, 0.22);
}

.chart-lines span {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-blue));
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 70px -42px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
  font-weight: 800;
  animation: floatY 4.8s ease-in-out infinite;
}

.float-chip:nth-child(2) {
  left: 0;
  top: 16px;
}

.float-chip:nth-child(3) {
  left: 8px;
  bottom: 122px;
  animation-delay: -1.4s;
}

.float-chip:nth-child(4) {
  right: 22px;
  bottom: 36px;
  animation-delay: -2.2s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.grid-3,
.grid-2,
.case-grid,
.service-grid,
.pricing-grid,
.stats-grid {
  display: grid;
  gap: 24px;
}

.grid-3,
.service-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 12px 46px -42px rgba(17, 24, 39, 0.32);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: var(--shadow-card);
}

.advantage-card,
.service-card,
.feature-card,
.pricing-card,
.testimonial-card,
.case-card,
.stat-card {
  padding: 28px;
}

.line-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #dbe1ea;
  border-radius: 16px;
  color: var(--color-ink);
  background: #ffffff;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover .line-icon {
  color: #111827;
  border-color: rgba(247, 201, 72, 0.58);
  background: #fff7cc;
}

.card-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.caps-title {
  min-height: 58px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 900;
  text-transform: uppercase;
}

.card-copy {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.service-number,
.service-tag {
  color: #98a2b3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-number {
  margin-bottom: 56px;
}

.service-arrow {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-ink);
  transition: transform 220ms ease, background 220ms ease;
}

.service-card:hover {
  background: #ffffff;
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
  background: linear-gradient(135deg, var(--color-blue), #7c3aed);
}

.case-tabs,
.package-tabs,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  background: #ffffff;
  font-weight: 800;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.tab-button.is-active,
.tab-button:hover {
  color: var(--color-ink);
  border-color: #fde68a;
  background: #fffbeb;
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.case-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, #101828, #3b82f6 48%, #f7c948);
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.01);
  transition: transform 280ms ease;
}

.case-card:hover .case-visual img {
  transform: scale(1.06);
}

.case-visual-placeholder {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 22%, transparent 22% 100%),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.case-body {
  padding: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #475467;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 800;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.metric-box {
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
}

.metric-box strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-ink);
}

.metric-box span {
  display: block;
  margin-top: 4px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 78px 28px;
  border-radius: 32px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 201, 72, 0.35), transparent 30%),
    linear-gradient(135deg, #101828, #1e1b4b 72%, #312e81);
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
}

.cta-band p {
  max-width: 700px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  padding: 116px 0 88px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-hero.is-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 20%, rgba(124, 58, 237, 0.34), transparent 30%),
    linear-gradient(135deg, #08111f, #111827 54%, #1e1b4b);
}

.page-hero-inner {
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: 52px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb a:hover {
  color: var(--color-blue);
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.78;
}

.page-hero.is-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.hero-mockup {
  position: relative;
  min-height: 420px;
}

.device-frame {
  position: absolute;
  inset: 0;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(22px);
}

.page-hero.is-dark .device-frame {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.mock-browser-bar {
  display: flex;
  gap: 7px;
  padding: 4px 0 18px;
}

.mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.mock-section {
  border-radius: 22px;
  background: linear-gradient(135deg, #101828, #3b82f6 60%, #f7c948);
  padding: 20px;
  color: #ffffff;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.mock-line.short {
  width: 46%;
}

.mock-line.mid {
  width: 68%;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.mock-panel {
  min-height: 92px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.platform-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 32px;
}

.platform-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #111827;
  background: #fff7cc;
}

.pricing-card {
  position: relative;
}

.pricing-card.is-featured {
  border-color: #fde68a;
  box-shadow: 0 26px 80px -34px rgba(247, 201, 72, 0.45);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #111827;
  background: #fef3c7;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 18px 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475467;
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "check_circle";
  font-family: "Material Symbols Outlined";
  color: #16a34a;
  font-size: 19px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
}

.process-step {
  position: relative;
  padding: 34px 22px 0 0;
  border-right: 1px solid var(--color-line);
  transition: transform 220ms ease;
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  display: block;
  margin-bottom: 24px;
  color: #d0d5dd;
  font-family: Manrope, Inter, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  transition: color 220ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step:hover .process-number {
  color: var(--color-gold);
}

.testimonial-track {
  display: grid;
  grid-template-columns: 0.82fr 1.2fr 0.82fr;
  gap: 22px;
  align-items: center;
}

.testimonial-card {
  min-height: 280px;
}

.testimonial-card.is-main {
  min-height: 340px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1e1b4b);
}

.quote-mark {
  color: var(--color-gold);
  font-size: 56px;
  font-family: Georgia, serif;
  line-height: 1;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item .icon {
  transition: transform 200ms ease;
}

.faq-item[open] .icon {
  transform: rotate(45deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  color: #475467;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--color-ink);
  background: #f8fafc;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--color-muted);
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #0f766e;
}

.form-status[data-state="error"] {
  color: #b42318;
}

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

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-cover {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #3b82f6 58%, #f7c948);
}

.blog-card-body {
  padding: 24px;
}

.article-layout {
  max-width: 860px;
  margin: 0 auto;
}

.article-body {
  color: #324252;
  line-height: 1.8;
  font-size: 17px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 2.2rem 0 1rem;
  color: var(--color-ink);
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  margin: 1rem 0;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
}

.article-body blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 1rem;
  color: var(--color-muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #3b82f6 60%, #f7c948);
}

.gallery-main .visual-ui {
  height: 100%;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 16 / 10;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #3b82f6 60%, #f7c948);
}

.gallery-thumb.is-active {
  border-color: var(--color-gold);
}

.package-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.package-price {
  margin: 18px 0 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.review-summary {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.rating-number {
  font-family: Manrope, Inter, sans-serif;
  font-size: 56px;
  font-weight: 900;
}

.rating-bar {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  gap: 10px;
  align-items: center;
  margin: 8px 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.rating-track {
  height: 8px;
  border-radius: 999px;
  background: #edf0f3;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-gold), var(--color-amber));
}

.visual-ui {
  position: relative;
  padding: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 18%, rgba(247, 201, 72, 0.35), transparent 28%),
    linear-gradient(135deg, #111827, #1e1b4b 54%, #3b82f6);
}

.visual-ui::before {
  content: "";
  display: block;
  width: 40%;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.visual-ui::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 34%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.16) 18% 19%, transparent 19% 31%);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #f9fafb;
}

.footer-inner {
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 34px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: #475467;
  background: #ffffff;
  font-weight: 900;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.social-link:hover {
  color: var(--color-blue);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.footer-phone {
  color: var(--color-ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.footer-gradient {
  height: 4px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), #ec4899, #7c3aed, var(--color-blue));
}

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

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 900;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--color-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  color: #98a2b3;
  font-size: 13px;
}

.empty-state {
  padding: 38px;
  border: 1px dashed #d0d5dd;
  border-radius: 24px;
  color: var(--color-muted);
  text-align: center;
  background: #ffffff;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-inner,
  .page-hero-inner,
  .contact-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-mockup {
    min-height: 380px;
  }

  .grid-3,
  .service-grid,
  .pricing-grid,
  .case-grid,
  .blog-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-right: 0;
    border-left: 1px solid var(--color-line);
  }

  .process-number {
    margin: 0;
    padding-left: 18px;
    font-size: 42px;
  }

  .package-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .footer-inner,
  .hero-inner,
  .page-hero-inner {
    width: min(100% - 32px, var(--max-site));
  }

  .section {
    padding: 76px 0;
  }

  .brand-link {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 72px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .hero p,
  .page-hero p,
  .section-copy {
    font-size: 16px;
  }

  .hero-visual,
  .hero-mockup {
    display: none;
  }

  .grid-3,
  .grid-2,
  .service-grid,
  .pricing-grid,
  .case-grid,
  .blog-grid,
  .stats-grid,
  .footer-grid,
  .form-grid,
  .testimonial-track,
  .review-summary,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 94px 0 66px;
  }

  .platform-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonial-card.is-main {
    min-height: auto;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-panel {
    width: 100%;
  }

  .contact-card,
  .form-card,
  .advantage-card,
  .service-card,
  .feature-card,
  .pricing-card,
  .testimonial-card,
  .case-body {
    padding: 22px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html,
  body[data-page="home"] {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body[data-page="home"] .mobile-toggle {
    position: fixed !important;
    top: 27px !important;
    right: auto !important;
    left: 334px !important;
    z-index: 10001 !important;
    display: inline-grid !important;
    width: 42px !important;
    height: 42px !important;
    place-items: center;
    border-color: rgba(255, 255, 255, 0.32) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
  }

  @media (max-width: 375px) {
    .site-header [data-mobile-toggle] {
      left: 319px !important;
    }
  }

  @media (max-width: 360px) {
    .site-header [data-mobile-toggle] {
      left: 304px !important;
    }
  }

  .mountor-hero-copy div {
    max-width: 282px;
    font-size: 13px;
  }
}

/* codex targeted refinements */
.case-search {
  max-width: 720px;
  margin: 0 auto 22px;
}

.case-search input {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  background: #ffffff;
  box-shadow: 0 18px 48px -38px rgba(17, 24, 39, 0.28);
  outline: none;
}

.case-search input:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.process-step {
  min-height: 138px;
  overflow: hidden;
}

.process-step .card-copy {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin-top 220ms ease;
}

.process-step:hover .card-copy,
.process-step:focus-within .card-copy {
  max-height: 220px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .process-step .card-copy {
    max-height: 220px;
    margin-top: 12px;
    opacity: 1;
    transform: none;
  }
}

/* codex footer reference layout */
.site-footer.footer-reference {
  background: #ffffff;
  border-top: 0;
}

.site-footer.footer-reference .footer-inner {
  width: min(1240px, calc(100% - 64px));
  padding: 68px 0 36px;
}

.site-footer.footer-reference .footer-top {
  margin-bottom: 36px;
}

.site-footer.footer-reference .social-row {
  gap: 14px;
}

.site-footer.footer-reference .social-link {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: #000000;
  background: #ffd900;
  font-size: 12px;
  font-weight: 900;
  text-transform: lowercase;
}

.site-footer.footer-reference .social-link::before {
  content: none !important;
}

.site-footer.footer-reference .social-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-footer.footer-reference .footer-phone {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer.footer-reference .footer-gradient {
  height: 10px;
  margin-bottom: 40px;
  border-radius: 0;
  background: linear-gradient(90deg, #00859a, #3947d8, #a137c9, #ed4b87, #ff8a21, #ffe600);
}

.site-footer.footer-reference .footer-grid-reference {
  display: grid !important;
  grid-template-columns: minmax(420px, 2.3fr) minmax(150px, .7fr) minmax(170px, .75fr) minmax(170px, .75fr) !important;
  gap: 24px !important;
  align-items: start;
}

.site-footer.footer-reference .footer-services-group {
  min-width: 0;
}

.site-footer.footer-reference .footer-group-title,
.site-footer.footer-reference .footer-col h3,
.site-footer.footer-reference .footer-title-only h3 {
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 4px solid #e8e8e8;
  color: #07111f;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
}

.site-footer.footer-reference .footer-services-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.site-footer.footer-reference .footer-subcol h4 {
  margin: 0 0 14px;
  color: #07111f;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.site-footer.footer-reference .footer-col ul {
  display: grid;
  gap: 14px;
}

.site-footer.footer-reference .footer-col a,
.site-footer.footer-reference .footer-title-only a {
  color: #07111f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.site-footer.footer-reference .footer-industries a,
.site-footer.footer-reference .footer-company a {
  font-weight: 800;
}

.site-footer.footer-reference .footer-stack-col {
  display: grid;
  gap: 28px;
}

.site-footer.footer-reference .footer-compact ul {
  gap: 10px;
}

.site-footer.footer-reference .footer-title-only h3 {
  margin-bottom: 12px;
}

@media (max-width: 1060px) {
  .site-footer.footer-reference .footer-grid-reference {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 720px) {
  .site-footer.footer-reference .footer-inner {
    width: min(100% - 32px, 1240px);
  }

  .site-footer.footer-reference .footer-grid-reference,
  .site-footer.footer-reference .footer-services-cols {
    grid-template-columns: 1fr !important;
  }
}



/* codex 2026-05-20 case/blog/footer refinements */
.case-search-toolbar { max-width: 1040px; display: grid; grid-template-columns: minmax(260px, 1fr) auto auto auto; align-items: center; gap: 12px; margin: 0 auto 34px; }
.case-search-toolbar input { margin: 0; }
.case-filter-button, .case-search-button { min-height: 52px; padding: 0 22px; border: 1px solid var(--color-line); border-radius: 999px; background: #ffffff; color: var(--color-ink); font-weight: 900; transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease; }
.case-filter-button:hover, .case-search-button:hover, .case-filter-button.is-active { border-color: #003461; background: #003461; color: #ffffff; transform: translateY(-1px); }
.case-search-button { background: linear-gradient(135deg, #003461, #3b82f6); border-color: transparent; color: #ffffff; }
.blog-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 36px; align-items: start; }
.blog-sidebar { position: sticky; top: 96px; padding: 24px; border: 1px solid var(--color-line); border-radius: 24px; background: #ffffff; box-shadow: var(--shadow-card); }
.blog-sidebar-title { margin-bottom: 16px; color: var(--color-ink); font-size: 18px; font-weight: 900; }
.blog-category-list { display: grid; gap: 10px; }
.blog-category-button { width: 100%; min-height: 44px; padding: 0 14px; border: 1px solid var(--color-line); border-radius: 14px; background: #f8fafc; color: var(--color-muted); text-align: left; font-weight: 850; }
.blog-category-button.is-active, .blog-category-button:hover { border-color: #003461; background: #003461; color: #ffffff; }
.blog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.blog-toolbar h2 { margin: 6px 0 0; color: var(--color-ink); font-size: clamp(30px, 4vw, 46px); line-height: 1.06; font-weight: 900; }
.blog-toolbar input { width: min(340px, 100%); min-height: 48px; padding: 0 18px; border: 1px solid var(--color-line); border-radius: 999px; background: #ffffff; outline: none; }
.blog-grid-modern { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blog-card-modern:first-child { grid-column: span 2; display: grid; grid-template-columns: minmax(280px, .95fr) 1fr; }
.site-footer.footer-reference .footer-top-social-only { justify-content: flex-start; }
.site-footer.footer-reference .footer-grid-service-style { grid-template-columns: minmax(560px, 2.3fr) minmax(170px, .7fr) minmax(170px, .7fr) !important; }
.site-footer.footer-reference .footer-stack-col { gap: 24px; }
@media (max-width: 900px) { .case-search-toolbar, .blog-layout, .blog-card-modern:first-child { grid-template-columns: 1fr; } .blog-sidebar { position: static; } .blog-toolbar { align-items: stretch; flex-direction: column; } .blog-grid-modern { grid-template-columns: 1fr; } .blog-card-modern:first-child { grid-column: auto; } .site-footer.footer-reference .footer-grid-service-style { grid-template-columns: 1fr !important; } }


/* codex 2026-06-18 footer menu hierarchy */
.site-footer.footer-reference .footer-group-title,
.site-footer.footer-reference .footer-col h3,
.site-footer.footer-reference .footer-title-only h3 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer.footer-reference .footer-subcol h4 {
  display: flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 13px;
  padding-left: 10px;
  border-left: 3px solid #f7c948;
  color: #0b4a6f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer.footer-reference .footer-col a,
.site-footer.footer-reference .footer-title-only a,
.site-footer.footer-reference .footer-industries a,
.site-footer.footer-reference .footer-company a {
  color: #475467;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.site-footer.footer-reference .footer-subcol ul {
  padding-left: 13px;
}

.site-footer.footer-reference .footer-col a:hover,
.site-footer.footer-reference .footer-title-only a:hover {
  color: #003461;
}

/* codex hide legacy chrome before shared header takeover */
body > nav:not(.site-header) { visibility: hidden; }
[data-site-header-root] .site-header { visibility: visible; }


/* codex horizontal overflow guard */
html, body { overflow-x: hidden; }
.site-header, .site-footer, .site-main, [data-page-root] { max-width: 100%; }
.case-grid, .blog-grid, .footer-grid-reference { min-width: 0; }
.card, .case-card, .blog-card, .footer-col { min-width: 0; }

/* codex 2026-06-12 content update */
.lead-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

/* codex 2026-06-15 mobile browser QA and image pass */
@media (max-width: 1120px) {
  .site-header .desktop-nav {
    display: none !important;
  }

  .site-header .mobile-toggle {
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 44px;
  }

  .site-header .header-inner {
    max-width: 100vw;
    box-sizing: border-box;
  }

  .mobile-overlay[data-mobile-overlay] {
    z-index: 9998 !important;
    pointer-events: none;
  }

  .mobile-overlay[data-mobile-overlay].is-open {
    pointer-events: auto;
  }

  .mobile-panel[data-mobile-panel] {
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    display: none;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    visibility: hidden;
    transform: none !important;
  }

  .mobile-panel[data-mobile-panel].is-open {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 430px) {
  .site-header .header-inner {
    width: min(100% - 24px, 1280px) !important;
    gap: 10px;
  }

  .site-header .brand-link {
    gap: 9px;
    font-size: 16px;
  }

  .site-header .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .site-header .btn.header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .site-header .mobile-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

@media (max-width: 360px) {
  .site-header .btn.header-cta {
    display: none !important;
  }
}

.service-hero-visual {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 90px -48px rgba(17, 24, 39, 0.45);
  background: #111827;
}

.service-hero-visual img,
.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.is-dark .service-hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.case-visual {
  background: #111827;
}

@media (max-width: 760px) {
  .service-hero-visual {
    display: block;
    min-height: 240px;
    margin-top: 8px;
    border-radius: 22px;
  }

  .page-hero-inner {
    gap: 34px;
  }
}

.lead-form-copy {
  padding: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #003461, #111827);
}

.lead-form-copy h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.lead-form-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.lead-form-copy .feature-list {
  margin-top: 26px;
}

.lead-form-copy .feature-list li {
  color: rgba(255, 255, 255, 0.84);
}

.lead-form-panel .form-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.about-service-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.about-service-list div {
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.about-service-list h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 900;
}

.about-service-list p {
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.scenario-grid .card-title,
.feature-card .card-title {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .lead-form-panel,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-copy {
    padding: 30px;
  }
}

/* codex 2026-06-28 Mountor-inspired home rebuild */
body[data-page="home"] {
  background: #ffffff;
  color: #111827;
}

body[data-page="home"] .site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 78px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body[data-page="home"] .site-header.is-scrolled {
  background: rgba(9, 23, 45, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px -36px rgba(0, 0, 0, 0.55);
}

body[data-page="home"] .header-inner {
  height: 78px;
  width: min(100% - 112px, 1360px);
}

body[data-page="home"] .brand-link,
body[data-page="home"] .nav-link,
body[data-page="home"] .nav-trigger,
body[data-page="home"] .language-switcher button,
body[data-page="home"] .mobile-toggle {
  color: #ffffff;
}

body[data-page="home"] .brand-link {
  font-size: 22px;
  letter-spacing: -0.03em;
}

body[data-page="home"] .brand-mark {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: none;
}

body[data-page="home"] .desktop-nav {
  gap: 28px;
}

body[data-page="home"] .nav-link,
body[data-page="home"] .nav-trigger {
  padding: 8px 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

body[data-page="home"] .nav-link.is-active::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 8px;
  background: #f5c23d;
}

body[data-page="home"] .language-switcher {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .language-switcher button.is-active {
  background: #ffffff;
  color: #0f172a;
}

body[data-page="home"] .header-cta {
  min-width: 126px;
  border-color: transparent;
  border-radius: 999px;
  background: #0877ff;
  color: #ffffff;
}

body[data-page="home"] .mobile-toggle {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.mountor-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0b1f3a;
  color: #ffffff;
}

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

.mountor-hero-media::after {
  content: "";
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 29, 57, 0.72) 0%, rgba(6, 29, 57, 0.34) 42%, rgba(6, 29, 57, 0.02) 70%),
    linear-gradient(180deg, rgba(4, 15, 32, 0.4) 0%, rgba(4, 15, 32, 0.04) 45%, rgba(4, 15, 32, 0.1) 100%);
}

.mountor-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
}

.mountor-hero-media img.is-active {
  opacity: 1;
}

.mountor-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100% - 112px, 1360px);
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding-bottom: clamp(72px, 10vh, 118px);
}

.mountor-hero-copy p {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.07;
  font-weight: 300;
  letter-spacing: 0;
}

.mountor-hero-copy p span {
  color: #ffd22c;
  font-weight: 400;
}

.mountor-hero-copy div {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.mountor-hero-progress {
  position: absolute;
  top: 50%;
  right: 52px;
  z-index: 4;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.mountor-hero-progress span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.mountor-hero-progress span:first-child {
  height: 34px;
  background: #ffffff;
}

.mountor-section-head {
  width: min(100% - 96px, 1320px);
  margin: 0 auto 46px;
}

.mountor-section-head span {
  display: block;
  margin-bottom: 14px;
  color: #0b73ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mountor-section-head h2 {
  max-width: 920px;
  margin: 0;
  color: #0b1326;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.mountor-about,
.mountor-cases,
.mountor-client,
.mountor-services,
.mountor-system,
.mountor-packages,
.mountor-news,
.mountor-contact-band {
  padding: clamp(82px, 9vw, 132px) 0;
}

.mountor-about-grid {
  display: grid;
  width: min(100% - 96px, 1320px);
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
}

.mountor-about-grid figure,
.mountor-system-grid figure {
  margin: 0;
  overflow: hidden;
  background: #eef5ff;
}

.mountor-about-grid img,
.mountor-system-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.mountor-about-grid p {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 2;
}

.mountor-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 20px;
  margin-top: 42px;
}

.mountor-stats strong {
  color: #0877ff;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.mountor-stats span {
  align-self: end;
  color: #64748b;
  font-weight: 800;
}

.mountor-cases,
.mountor-system {
  background: #080b13;
  color: #ffffff;
}

.mountor-cases .mountor-section-head h2,
.mountor-cases .mountor-section-head span,
.mountor-system .mountor-section-head h2,
.mountor-system .mountor-section-head span {
  color: #ffffff;
}

.mountor-case-grid,
.mountor-service-grid,
.mountor-news-grid {
  display: grid;
  width: min(100% - 96px, 1320px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mountor-case-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.mountor-case-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
}

.mountor-case-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.mountor-case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76));
}

.mountor-case-card span,
.mountor-case-card strong {
  position: absolute;
  right: 30px;
  left: 30px;
  z-index: 2;
}

.mountor-case-card span {
  bottom: 82px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.mountor-case-card strong {
  bottom: 34px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.mountor-case-card:hover img {
  opacity: 0.95;
  transform: scale(1.05);
}

.mountor-client {
  background: #f5f8fc;
}

.mountor-client img {
  display: block;
  width: min(100% - 96px, 1320px);
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}

.mountor-service-grid,
.mountor-news-grid {
  gap: 28px;
}

.mountor-service-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
}

.mountor-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.mountor-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
}

.mountor-service-card div {
  position: absolute;
  inset: auto 28px 32px;
  z-index: 2;
}

.mountor-service-card span {
  color: #ffd22c;
  font-weight: 900;
}

.mountor-service-card h3 {
  margin: 14px 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.mountor-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.mountor-system-grid {
  display: grid;
  width: min(100% - 96px, 1320px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.mountor-package-layout {
  display: grid;
  width: min(100% - 96px, 1320px);
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
  margin: 0 auto;
}

.mountor-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #111827, #367df3 72%, #f7c948);
}

.mountor-gallery-main img,
.mountor-gallery-thumbs img,
.gallery-main img,
.gallery-thumb img,
.package-case-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mountor-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mountor-gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: #e5e7eb;
  cursor: pointer;
}

.mountor-gallery-thumbs button.is-active {
  border-color: #f7c948;
}

.mountor-package-card {
  padding: 24px;
  border: 1px solid #dfe5ee;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 80px -54px rgba(15, 23, 42, 0.4);
}

.mountor-package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.mountor-package-tabs button {
  height: 42px;
  padding: 0 18px;
  border: 1px solid #dfe5ee;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font-weight: 900;
  cursor: pointer;
}

.mountor-package-tabs button.is-active {
  border-color: #f7c948;
  color: #020617;
}

.mountor-package-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
}

.mountor-package-price {
  margin-bottom: 20px;
  color: #061123;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.mountor-package-card p {
  margin: 0 0 26px;
  color: #53627a;
  font-size: 15px;
  line-height: 1.7;
}

.mountor-package-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mountor-package-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #24324a;
  font-size: 15px;
}

.mountor-package-card li .icon {
  color: #03a35b;
  font-size: 20px;
}

.mountor-package-cases,
.package-case-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.mountor-package-cases img,
.package-case-strip img {
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}

.mountor-package-primary,
.mountor-package-secondary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.mountor-package-primary {
  background: linear-gradient(90deg, #4386f6, #8238e6);
  color: #ffffff;
}

.mountor-package-secondary {
  margin-top: 10px;
  border: 1px solid #dfe5ee;
  background: #ffffff;
  color: #061123;
}

.mountor-news {
  background: #f7f9fc;
}

.mountor-news-grid a {
  display: block;
  overflow: hidden;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
}

.mountor-news-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mountor-news-grid span {
  display: block;
  margin: 22px 24px 10px;
  color: #0b73ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mountor-news-grid strong {
  display: block;
  min-height: 88px;
  padding: 0 24px 28px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.mountor-contact-band {
  display: flex;
  width: min(100% - 96px, 1320px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  border-top: 1px solid #dfe5ee;
}

.mountor-contact-band h2 {
  max-width: 760px;
  margin: 0;
  color: #0b1326;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.mountor-contact-band a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #0877ff;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.gallery-main img {
  border-radius: inherit;
}

.gallery-thumb {
  padding: 0;
  background: #e5e7eb;
}

.package-case-strip {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  body[data-page="home"] .header-inner,
  .mountor-hero-copy,
  .mountor-section-head,
  .mountor-about-grid,
  .mountor-case-grid,
  .mountor-client img,
  .mountor-service-grid,
  .mountor-system-grid,
  .mountor-package-layout,
  .mountor-news-grid,
  .mountor-contact-band {
    width: min(100% - 44px, 920px);
  }

  .mountor-about-grid,
  .mountor-package-layout {
    grid-template-columns: 1fr;
  }

  .mountor-case-grid,
  .mountor-service-grid,
  .mountor-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mountor-package-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .site-header {
    height: 96px;
  }

  body[data-page="home"] .header-inner {
    width: calc(100% - 32px) !important;
    height: 96px;
  }

  body[data-page="home"] .brand-link {
    font-size: 18px;
  }

  body[data-page="home"] .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .mountor-hero {
    min-height: 740px;
  }

  .mountor-hero-media::after {
    background: linear-gradient(180deg, rgba(16, 32, 68, 0.26), rgba(16, 32, 68, 0.12) 44%, rgba(0, 0, 0, 0.72) 100%);
  }

  .mountor-hero-media img {
    object-position: 60% 0;
  }

  .mountor-hero-copy {
    width: calc(100% - 56px);
    min-height: 740px;
    align-items: center;
    justify-content: flex-start;
    padding-top: 128px;
    padding-bottom: 42px;
    text-align: center;
  }

  .mountor-hero-copy p {
    font-size: 32px;
    font-weight: 700;
  }

  .mountor-hero-copy div {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .mountor-hero-progress {
    display: none;
  }

  .mountor-about,
  .mountor-cases,
  .mountor-client,
  .mountor-services,
  .mountor-system,
  .mountor-packages,
  .mountor-news,
  .mountor-contact-band {
    padding: 72px 0;
  }

  .mountor-section-head,
  .mountor-about-grid,
  .mountor-case-grid,
  .mountor-client img,
  .mountor-service-grid,
  .mountor-system-grid,
  .mountor-package-layout,
  .mountor-news-grid,
  .mountor-contact-band {
    width: calc(100% - 32px);
  }

  .mountor-section-head {
    margin-bottom: 30px;
  }

  .mountor-section-head h2 {
    font-size: 34px;
  }

  .mountor-about-grid,
  .mountor-case-grid,
  .mountor-service-grid,
  .mountor-system-grid,
  .mountor-news-grid,
  .mountor-contact-band {
    grid-template-columns: 1fr;
  }

  .mountor-case-card,
  .mountor-service-card {
    min-height: 360px;
  }

  .mountor-about-grid img,
  .mountor-system-grid img {
    min-height: 280px;
  }

  .mountor-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mountor-package-card {
    padding: 20px;
    border-radius: 22px;
  }

  .mountor-contact-band {
    display: grid;
  }
}

/* codex 2026-06-28 visual acceptance fixes */
body[data-page="home"] .nav-link.is-active {
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

body[data-page="home"] .nav-link.is-active:hover {
  background: transparent !important;
}

.mountor-hero-copy {
  overflow: hidden;
}

.mountor-hero-copy p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.gallery-main,
.gallery-thumb {
  position: relative;
}

.gallery-main > img,
.gallery-thumb > img {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.package-case-strip > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 760px) {
  .mountor-hero-copy p {
    font-size: 28px;
    line-height: 1.13;
  }

  .mountor-hero-copy div {
    max-width: 100%;
  }
}

.mountor-hero-title {
  margin: 0;
  max-width: 100%;
  color: #ffffff;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.mountor-hero-title span {
  display: block;
}

.mountor-hero-title .accent {
  color: #ffd22c;
  font-weight: 400;
}

.mountor-title-mobile {
  display: none;
}

.gallery-main,
.gallery-thumb,
.package-case-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.package-case-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background-color: #f1f5f9;
}

.package-case-image > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body[data-page="product"] .fade-up {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 760px) {
  body[data-page="home"] .header-inner {
    width: calc(100% - 24px) !important;
    gap: 8px;
  }

  body[data-page="home"] .btn.header-cta {
    display: none !important;
  }

  body[data-page="home"] .mobile-toggle {
    display: inline-grid !important;
    place-items: center;
  }

  .mountor-hero-copy {
    width: calc(100% - 28px);
  }

  .mountor-title-desktop {
    display: none;
  }

  .mountor-title-mobile {
    display: block;
    width: 100%;
    font-size: 28px;
    line-height: 1.12;
  }

  .mountor-hero-copy div {
    width: 100%;
    max-width: 326px;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
}

/* codex final mobile home overflow guard */
@media (max-width: 760px) {
  html,
  body[data-page="home"] {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body[data-page="home"] .mobile-toggle {
    position: fixed !important;
    top: 27px !important;
    right: 14px !important;
    z-index: 10001 !important;
    display: inline-grid !important;
    width: 42px !important;
    height: 42px !important;
    place-items: center !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
  }

  body[data-page="home"] .mountor-hero-copy div {
    max-width: 282px !important;
    font-size: 13px !important;
  }

  .site-header [data-mobile-toggle] {
    position: fixed !important;
    top: 27px !important;
    right: 14px !important;
    z-index: 2147483000 !important;
    display: inline-grid !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    place-items: center !important;
    border: 1px solid #ffd22c !important;
    border-radius: 999px !important;
    background: #ffd22c !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18) !important;
    color: #0b1326 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .site-header [data-mobile-toggle] .icon {
    color: #0b1326 !important;
    font-size: 24px !important;
  }
}

/* codex 2026-06-29 Mountor exact final guard */
body[data-page="home"] [data-site-header-root],
body[data-page="home"] [data-site-footer-root] {
  display: none !important;
}

body[data-page="home"],
body[data-page="home"] .site-main {
  margin: 0 !important;
  padding: 0 !important;
  background: #000000 !important;
}

body[data-page="home"] .mt-home {
  display: block !important;
}

.icon-svg {
  width: 1.12em;
  height: 1.12em;
  flex: 0 0 auto;
  vertical-align: -0.16em;
}

.brand-mark .icon-svg {
  width: 20px;
  height: 20px;
}

.nav-trigger .icon-svg,
.mobile-summary .icon-svg {
  width: 18px;
  height: 18px;
}

.case-visit-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(0, 52, 97, 0.16);
  border-radius: 999px;
  background: #f8fafc;
  color: #003461;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.case-visit-link:hover {
  border-color: #003461;
  background: #ffffff;
  transform: translateY(-1px);
}

body[data-page="case"] .fade-up,
body[data-page="blog"] .fade-up,
body[data-page="article"] .fade-up {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  body:not([data-page="home"]) {
    overflow-x: hidden;
  }

  body:not([data-page="home"]) .site-header .desktop-nav,
  body:not([data-page="home"]) .site-header .header-cta {
    display: none !important;
  }

  body:not([data-page="home"]) .site-header .header-inner {
    width: calc(100% - 32px) !important;
    gap: 12px;
  }

  body:not([data-page="home"]) .site-header .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  body:not([data-page="home"]) .site-header .mobile-toggle {
    position: fixed !important;
    top: 14px !important;
    right: 16px !important;
    z-index: 2147483000 !important;
    display: inline-grid !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    place-items: center !important;
    border: 1px solid #ffb020 !important;
    border-radius: 999px !important;
    background: #ffb020 !important;
    color: #0b1220 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  body:not([data-page="home"]) .site-header .mobile-toggle .icon-svg {
    width: 22px !important;
    height: 22px !important;
    color: #0b1220 !important;
  }

  body:not([data-page="home"]) .site-header .header-language {
    display: none;
  }

  body:not([data-page="home"]) .brand-link {
    min-width: 0;
    overflow: hidden;
  }

  body:not([data-page="home"]) .page-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.14;
    overflow-wrap: normal;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home,
  body[data-page="home"] .mt-hero,
  body[data-page="home"] .mt-cookie {
    width: 100dvw !important;
    max-width: 100dvw !important;
  }

  body[data-page="home"] .mt-copy {
    right: auto !important;
    left: 82px !important;
    width: 272px !important;
    max-width: calc(100vw - 104px) !important;
    overflow-wrap: anywhere;
  }

  body[data-page="home"] .mt-copy p,
  body[data-page="home"] .mt-cookie strong,
  body[data-page="home"] .mt-cookie p {
    overflow-wrap: anywhere;
  }

  body[data-page="home"] .mt-cookie strong {
    max-width: 334px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-break: break-word;
  }

  body[data-page="home"] .mt-cookie {
    left: 0 !important;
    right: auto !important;
    padding-right: 28px !important;
  }

  body[data-page="home"] .mt-cookie-actions {
    width: calc(100dvw - 56px) !important;
    max-width: 334px !important;
  }
}

/* codex 2026-06-29 rebuilt homepage */
body[data-page="home"] {
  background: #f6f8fb;
  overflow-x: hidden;
}

.wb-home {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #07111f 0, #07111f 720px, #f6f8fb 720px, #f6f8fb 100%);
  color: #0b1220;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.wb-home *,
.wb-home *::before,
.wb-home *::after {
  box-sizing: border-box;
}

.wb-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 200;
  display: flex;
  width: min(1280px, calc(100% - 48px));
  height: 68px;
  align-items: center;
  gap: 22px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px -44px rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.wb-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: #0f172a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.wb-brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffca3a, #ffffff 48%, #2563eb);
  color: #0f172a;
}

.wb-brand-mark .icon-svg {
  width: 20px;
  height: 20px;
}

.wb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.wb-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #475467;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.wb-nav a:hover,
.wb-nav a.is-active {
  background: #f1f5f9;
  color: #0f172a;
}

.wb-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.wb-lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
}

.wb-lang button {
  height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.wb-lang button:hover,
.wb-lang button.is-active {
  background: #fff1b8;
  color: #0f172a;
}

.wb-contact,
.wb-primary,
.wb-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.wb-contact,
.wb-primary {
  border: 0;
  background: #ffb020;
  color: #0b1220;
  box-shadow: 0 18px 42px -28px rgba(245, 158, 11, 0.8);
}

.wb-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.wb-secondary-dark {
  border-color: #d9e2ef;
  background: #ffffff;
  color: #0b1220;
}

.wb-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  background: #ffffff;
}

.wb-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #0f172a;
}

.wb-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 132px 0 92px;
  overflow: hidden;
  background: #07111f;
}

.wb-hero-media,
.wb-hero-media img,
.wb-hero-shade {
  position: absolute;
  inset: 0;
}

.wb-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4600ms ease;
}

.wb-hero-media img.is-active {
  opacity: 0.62;
  transform: scale(1);
}

.wb-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.76) 38%, rgba(7, 17, 31, 0.3) 100%),
    radial-gradient(circle at 78% 18%, rgba(34, 197, 94, 0.28), transparent 28%),
    radial-gradient(circle at 36% 86%, rgba(255, 176, 32, 0.22), transparent 30%);
}

.wb-hero-inner,
.wb-section,
.wb-final-cta,
.wb-footer {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.wb-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 64px;
  align-items: center;
}

.wb-hero-copy {
  max-width: 760px;
  color: #ffffff;
}

.wb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #39d9c8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wb-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: #ffb020;
}

.wb-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 68px;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.wb-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

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

.wb-hero-panel {
  display: grid;
  gap: 18px;
  min-height: 420px;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  box-shadow: 0 34px 90px -48px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(22px);
}

.wb-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #ffda76;
  font-size: 13px;
  font-weight: 900;
}

.wb-dots {
  display: inline-flex;
  gap: 7px;
}

.wb-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.wb-dots button.is-active {
  width: 28px;
  background: #ffb020;
}

.wb-hero-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
}

.wb-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.72;
}

.wb-metric-row {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.wb-metric-row strong {
  color: #ffffff;
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
}

.wb-metric-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.wb-section {
  padding: 104px 0;
}

.wb-section-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.wb-section-head h2,
.wb-package-copy h2,
.wb-final-cta h2 {
  margin: 0;
  color: #0b1220;
  font-size: 46px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.wb-section-head p,
.wb-package-copy p,
.wb-final-cta p {
  margin: 0;
  color: #526173;
  font-size: 17px;
  line-height: 1.8;
}

.wb-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.wb-service-card {
  display: grid;
  min-height: 310px;
  align-content: space-between;
  gap: 18px;
  padding: 28px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
  color: #0b1220;
  text-decoration: none;
  box-shadow: 0 30px 80px -60px rgba(15, 23, 42, 0.45);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wb-service-card:hover {
  border-color: #ffb020;
  box-shadow: 0 32px 80px -54px rgba(15, 23, 42, 0.55);
  transform: translateY(-3px);
}

.wb-service-card > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #ecfeff;
  color: #0369a1;
}

.wb-service-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.15;
}

.wb-service-card p {
  margin: 0;
  color: #526173;
  font-size: 15px;
  line-height: 1.75;
}

.wb-service-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b4a7b;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.wb-showcase {
  padding-top: 80px;
}

.wb-case-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.wb-case-card {
  display: grid;
  grid-template-rows: 230px auto auto;
  gap: 12px;
  padding-bottom: 20px;
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
  color: #0b1220;
  text-decoration: none;
}

.wb-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dbeafe;
  transition: transform 360ms ease;
}

.wb-case-card:hover img {
  transform: scale(1.04);
}

.wb-case-card span,
.wb-case-card strong {
  margin: 0 20px;
}

.wb-case-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.wb-case-card strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
}

.wb-packages {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding-top: 88px;
}

.wb-package-copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.wb-package-copy .wb-secondary {
  width: fit-content;
  margin-top: 8px;
}

.wb-plan-grid {
  display: grid;
  gap: 18px;
}

.wb-plan {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
}

.wb-plan.is-featured {
  border-color: #ffb020;
  box-shadow: 0 30px 82px -62px rgba(245, 158, 11, 0.7);
}

.wb-plan img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  background: #dbeafe;
}

.wb-plan span {
  color: #0b4a7b;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.wb-plan strong {
  display: block;
  margin-top: 8px;
  color: #0b1220;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.wb-plan p {
  margin: 12px 0 0;
  color: #526173;
  font-size: 14px;
  line-height: 1.65;
}

.wb-plan ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.wb-plan li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
}

.wb-plan li .icon-svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #059669;
}

.wb-flow {
  padding-top: 78px;
}

.wb-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.wb-flow-step {
  min-height: 250px;
  padding: 24px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
}

.wb-flow-step span {
  color: #ffb020;
  font-size: 13px;
  font-weight: 950;
}

.wb-flow-step h3 {
  margin: 36px 0 12px;
  color: #0b1220;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
}

.wb-flow-step p {
  margin: 0;
  color: #526173;
  font-size: 14px;
  line-height: 1.75;
}

.wb-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 32px;
  margin-bottom: 84px;
  padding: 42px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 20%, rgba(57, 217, 200, 0.32), transparent 26%),
    linear-gradient(135deg, #07111f, #102a43 58%, #0b4a7b);
  color: #ffffff;
}

.wb-final-cta h2,
.wb-final-cta p {
  color: #ffffff;
}

.wb-final-cta div {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.wb-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.wb-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 28px 0 38px;
  border-top: 1px solid #dfe7f1;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.wb-footer span {
  margin-right: auto;
  color: #0b1220;
  font-weight: 950;
}

.wb-footer a {
  color: #64748b;
  text-decoration: none;
}

.wb-footer a:hover {
  color: #0b4a7b;
}

@media (max-width: 1080px) {
  .wb-header {
    width: calc(100% - 28px);
  }

  .wb-header-actions {
    margin-left: auto;
  }

  .wb-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    border: 1px solid #dfe7f1;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 64px -42px rgba(15, 23, 42, 0.42);
  }

  .wb-home.is-menu-open .wb-nav {
    display: grid;
  }

  .wb-nav a {
    justify-content: space-between;
  }

  .wb-lang {
    display: none;
  }

  .wb-menu {
    display: inline-grid;
    place-items: center;
  }

  .wb-hero-inner,
  .wb-packages {
    grid-template-columns: 1fr;
  }

  .wb-hero-panel,
  .wb-package-copy {
    position: static;
  }

  .wb-service-grid,
  .wb-case-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .wb-home {
    background: #f6f8fb;
  }

  .wb-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 60px;
    padding: 0 10px 0 12px;
    gap: 10px;
  }

  .wb-brand {
    min-width: 0;
    font-size: 17px;
  }

  .wb-brand-mark {
    width: 34px;
    height: 34px;
  }

  .wb-contact {
    display: none;
  }

  .wb-hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .wb-hero-inner,
  .wb-section,
  .wb-final-cta,
  .wb-footer {
    width: calc(100% - 32px);
  }

  .wb-hero-inner {
    gap: 28px;
  }

  .wb-hero h1 {
    font-size: 38px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .wb-hero-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .wb-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wb-primary,
  .wb-secondary {
    width: 100%;
  }

  .wb-hero-panel {
    min-height: auto;
    padding: 20px;
  }

  .wb-hero-panel h2 {
    font-size: 24px;
  }

  .wb-section {
    padding: 70px 0;
  }

  .wb-section-head h2,
  .wb-package-copy h2,
  .wb-final-cta h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .wb-section-head p,
  .wb-package-copy p,
  .wb-final-cta p {
    font-size: 15px;
  }

  .wb-service-grid,
  .wb-case-strip,
  .wb-flow-grid {
    grid-template-columns: 1fr;
  }

  .wb-service-card {
    min-height: auto;
  }

  .wb-case-card {
    grid-template-rows: 210px auto auto;
  }

  .wb-plan {
    grid-template-columns: 1fr;
  }

  .wb-plan img {
    height: 210px;
  }

  .wb-final-cta {
    display: grid;
    margin-bottom: 52px;
    padding: 26px;
  }

  .wb-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wb-footer span {
    grid-column: 1 / -1;
  }
}

/* codex 2026-06-29 strict mountor homepage rebuild */
body[data-page="home"] {
  background: #ffffff;
  overflow-x: hidden;
}

body[data-page="home"] .mt-home-strict {
  min-height: 100vh;
  background: #ffffff;
  color: #111111;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body[data-page="home"] .mt-home-strict *,
body[data-page="home"] .mt-home-strict *::before,
body[data-page="home"] .mt-home-strict *::after {
  box-sizing: border-box;
}

body[data-page="home"] .mt-home-strict .mt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  padding: 0 49px 0 51px;
  background: transparent;
  color: #ffffff;
  transition: background 0.25s ease;
}

body[data-page="home"] .mt-home-strict .mt-header.is-scrolled,
body[data-page="home"] .mt-home-strict.is-menu-open .mt-header {
  background: #000000;
}

body[data-page="home"] .mt-home-strict .mt-logo {
  display: inline-flex;
  width: 142px;
  height: 42px;
  align-items: center;
  flex: 0 0 auto;
}

body[data-page="home"] .mt-home-strict .mt-logo img {
  display: block;
  width: 142px;
  height: auto;
}

body[data-page="home"] .mt-home-strict .mt-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-left: auto;
  margin-right: 72px;
}

body[data-page="home"] .mt-home-strict .mt-nav a {
  position: relative;
  display: inline-flex;
  height: 80px;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .mt-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  background: #ffd21f;
}

body[data-page="home"] .mt-home-strict .mt-contact {
  display: inline-flex;
  width: 126px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #087dff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .mt-menu-open,
body[data-page="home"] .mt-home-strict .mt-side-dots {
  border: 0;
  background: transparent;
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-menu-open {
  display: none;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding: 0;
}

body[data-page="home"] .mt-home-strict .mt-menu-open span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-side-dots {
  display: grid;
  width: 10px;
  height: 24px;
  margin-left: 38px;
  padding: 0;
  gap: 4px;
}

body[data-page="home"] .mt-home-strict .mt-side-dots span {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-main {
  overflow: hidden;
}

body[data-page="home"] .mt-home-strict .home-sect {
  position: relative;
}

body[data-page="home"] .mt-home-strict .mt-hero {
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #1d81bd;
}

body[data-page="home"] .mt-home-strict .mt-vslides,
body[data-page="home"] .mt-home-strict .mt-vslide,
body[data-page="home"] .mt-home-strict .mt-vslide picture,
body[data-page="home"] .mt-home-strict .mt-vslide img {
  position: absolute;
  inset: 0;
}

body[data-page="home"] .mt-home-strict .mt-vslide {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 42px, 0);
  transition: opacity 0.76s ease, transform 0.76s ease, visibility 0.76s ease;
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-vslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: transform 5s ease;
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-active img {
  transform: scale(1);
}

body[data-page="home"] .mt-home-strict .mt-copy {
  position: absolute;
  left: 50px;
  bottom: 190px;
  z-index: 4;
  width: min(660px, 56vw);
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

body[data-page="home"] .mt-home-strict .mt-copy h1 span {
  display: block;
}

body[data-page="home"] .mt-home-strict .mt-copy h1 .is-accent {
  position: relative;
  display: inline-block;
}

body[data-page="home"] .mt-home-strict .mt-copy h1 .is-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: -2px;
  bottom: 2px;
  z-index: -1;
  height: 13px;
  background: #ffd21f;
}

body[data-page="home"] .mt-home-strict .mt-copy p {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination {
  position: fixed;
  top: 50%;
  right: 52px;
  z-index: 40;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination button.is-active {
  height: 34px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about {
  min-height: 1180px;
  padding: 160px 50px 120px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 70px;
  width: min(1328px, 100%);
  margin: 0 auto;
  align-items: center;
}

body[data-page="home"] .mt-home-strict .mt-about-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-big {
  width: min(470px, 70%);
  max-height: 360px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(93%) saturate(1804%) hue-rotate(189deg) brightness(89%) contrast(105%);
}

body[data-page="home"] .mt-home-strict .mt-about-float {
  position: absolute;
  width: 168px;
  border-radius: 0;
  box-shadow: 0 28px 80px -48px rgba(0, 0, 0, 0.45);
}

body[data-page="home"] .mt-home-strict .mt-float-one {
  left: 40px;
  bottom: 42px;
}

body[data-page="home"] .mt-home-strict .mt-float-two {
  right: 46px;
  top: 50px;
}

body[data-page="home"] .mt-home-strict .mt-about-copy span {
  color: #087dff;
  font-size: 18px;
  font-weight: 700;
}

body[data-page="home"] .mt-home-strict .mt-about-copy h2 {
  margin: 18px 0 22px;
  color: #111111;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.14;
}

body[data-page="home"] .mt-home-strict .mt-about-copy p {
  margin: 0;
  color: #222222;
  font-size: 18px;
  line-height: 2;
}

body[data-page="home"] .mt-home-strict .mt-about-data {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, calc(100% - 120px));
  margin: 120px auto 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

body[data-page="home"] .mt-home-strict .mt-about-data div {
  min-height: 160px;
  display: grid;
  place-items: center;
  border-right: 1px solid #e5e7eb;
}

body[data-page="home"] .mt-home-strict .mt-about-data div:last-child {
  border-right: 0;
}

body[data-page="home"] .mt-home-strict .mt-about-data strong {
  color: #087dff;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

body[data-page="home"] .mt-home-strict .mt-about-data span {
  margin-top: -44px;
  color: #111111;
  font-size: 15px;
}

body[data-page="home"] .mt-home-strict .mt-section-head {
  text-align: center;
}

body[data-page="home"] .mt-home-strict .mt-section-head h2 {
  margin: 0;
  color: #111111;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.18;
}

body[data-page="home"] .mt-home-strict .mt-section-head p {
  margin: 12px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
}

body[data-page="home"] .mt-home-strict .mt-work {
  padding: 132px 50px 120px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px 20px;
  width: min(1328px, 100%);
  margin: 70px auto 0;
}

body[data-page="home"] .mt-home-strict .mt-work-card {
  display: block;
  color: #111111;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .mt-work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 652 / 326;
  object-fit: cover;
}

body[data-page="home"] .mt-home-strict .mt-work-card h3 {
  margin: 24px 0 6px;
  color: #111111;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}

body[data-page="home"] .mt-home-strict .mt-work-card p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
}

body[data-page="home"] .mt-home-strict .mt-ability {
  padding: 96px 50px 112px;
  background: #000000;
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-section-head-dark h2,
body[data-page="home"] .mt-home-strict .mt-section-head-dark p {
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-ability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 120px;
  width: min(1032px, 100%);
  margin: 76px auto 0;
}

body[data-page="home"] .mt-home-strict .mt-ability-card {
  min-height: 420px;
  padding: 42px 54px 34px;
  border-radius: 0 0 26px 26px;
  background: #f2f4f8;
  color: #111111;
}

body[data-page="home"] .mt-home-strict .mt-ability-card h3 {
  margin: 0;
  color: #111111;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

body[data-page="home"] .mt-home-strict .mt-ability-card p {
  margin: 18px 0 28px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

body[data-page="home"] .mt-home-strict .mt-ability-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .mt-home-strict .mt-ability-card li {
  position: relative;
  padding-left: 18px;
  color: #111111;
  font-size: 15px;
  line-height: 1.45;
}

body[data-page="home"] .mt-home-strict .mt-ability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border: 1px solid #087dff;
  border-radius: 50%;
}

body[data-page="home"] .mt-home-strict .mt-system {
  min-height: 760px;
  padding: 104px 50px 120px;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

body[data-page="home"] .mt-home-strict .mt-system h2 {
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.18;
}

body[data-page="home"] .mt-home-strict .mt-system p {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

body[data-page="home"] .mt-home-strict .mt-system-media {
  width: min(980px, 100%);
  margin: 70px auto 0;
}

body[data-page="home"] .mt-home-strict .mt-system-media img {
  display: block;
  width: 100%;
  border-radius: 0;
}

body[data-page="home"] .mt-home-strict .mt-adv {
  padding: 150px 50px 130px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1152px, 100%);
  margin: 70px auto 0;
}

body[data-page="home"] .mt-home-strict .mt-adv-card {
  min-height: 420px;
  padding: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-adv-card img {
  display: block;
  width: 100%;
  aspect-ratio: 300 / 220;
  object-fit: contain;
  background: #000000;
  border-radius: 20px;
}

body[data-page="home"] .mt-home-strict .mt-adv-card h3 {
  margin: 28px 0 12px;
  color: #111111;
  font-size: 24px;
  font-weight: 400;
}

body[data-page="home"] .mt-home-strict .mt-adv-card p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.75;
}

body[data-page="home"] .mt-home-strict .mt-news {
  padding: 120px 50px 150px;
  background: #f5f6f8;
}

body[data-page="home"] .mt-home-strict .mt-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1152px, 100%);
  margin: 64px auto 0;
}

body[data-page="home"] .mt-home-strict .mt-news-card {
  display: block;
  min-height: 220px;
  padding: 34px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .mt-news-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

body[data-page="home"] .mt-home-strict .mt-news-card p {
  margin: 18px 0 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.75;
}

body[data-page="home"] .mt-home-strict .mt-mobile-panel {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 850;
  display: none;
  padding: 18px 24px 28px;
  background: #000000;
}

body[data-page="home"] .mt-home-strict.is-menu-open .mt-mobile-panel {
  display: grid;
  gap: 8px;
}

body[data-page="home"] .mt-home-strict .mt-mobile-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .home-scroll-tipbox {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 120;
  width: 24px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  pointer-events: none;
}

body[data-page="home"] .mt-home-strict .home-scroll-tipbox span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  animation: mtScrollTip 1.5s infinite;
}

@keyframes mtScrollTip {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

@media (max-width: 1100px) {
  body[data-page="home"] .mt-home-strict .mt-header {
    padding: 0 30px;
  }

  body[data-page="home"] .mt-home-strict .mt-nav {
    display: none;
  }

  body[data-page="home"] .mt-home-strict .mt-menu-open {
    display: block;
  }

  body[data-page="home"] .mt-home-strict .mt-contact {
    margin-left: 28px;
  }

  body[data-page="home"] .mt-home-strict .mt-side-dots {
    display: none;
  }

  body[data-page="home"] .mt-home-strict .mt-about-stage,
  body[data-page="home"] .mt-home-strict .mt-ability-grid,
  body[data-page="home"] .mt-home-strict .mt-adv-grid,
  body[data-page="home"] .mt-home-strict .mt-news-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-grid {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-header {
    height: 64px;
    padding: 0 22px;
    background: transparent;
  }

  body[data-page="home"] .mt-home-strict .mt-logo,
  body[data-page="home"] .mt-home-strict .mt-logo img {
    width: 128px;
  }

  body[data-page="home"] .mt-home-strict .mt-menu-open {
    margin-left: auto;
  }

  body[data-page="home"] .mt-home-strict .mt-contact {
    display: none;
  }

  body[data-page="home"] .mt-home-strict .mt-mobile-panel {
    top: 64px;
    background: rgba(0, 0, 0, 0.92);
  }

  body[data-page="home"] .mt-home-strict .mt-hero {
    min-height: 844px;
  }

  body[data-page="home"] .mt-home-strict .mt-vslide img {
    object-position: center center;
  }

  body[data-page="home"] .mt-home-strict .mt-copy {
    top: 168px;
    left: 50% !important;
    right: auto !important;
    bottom: auto;
    width: 306px !important;
    max-width: calc(100vw - 48px) !important;
    text-align: center;
    transform: translateX(-50%) !important;
  }

  body[data-page="home"] .mt-home-strict .mt-copy h1 {
    font-size: 31px;
    line-height: 1.18;
  }

  body[data-page="home"] .mt-home-strict .mt-copy h1 .is-accent {
    color: #ffd21f;
  }

  body[data-page="home"] .mt-home-strict .mt-copy h1 .is-accent::after {
    display: none;
  }

  body[data-page="home"] .mt-home-strict .mt-copy p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
  }

  body[data-page="home"] .mt-home-strict .mt-hero-pagination,
  body[data-page="home"] .mt-home-strict .home-scroll-tipbox {
    display: none;
  }

  body[data-page="home"] .mt-home-strict .mt-about,
  body[data-page="home"] .mt-home-strict .mt-work,
  body[data-page="home"] .mt-home-strict .mt-ability,
  body[data-page="home"] .mt-home-strict .mt-system,
  body[data-page="home"] .mt-home-strict .mt-adv,
  body[data-page="home"] .mt-home-strict .mt-news {
    padding-left: 24px;
    padding-right: 24px;
  }

  body[data-page="home"] .mt-home-strict .mt-about {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 86px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-stage {
    gap: 32px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-visual {
    min-height: 300px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-float {
    width: 96px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-copy h2,
  body[data-page="home"] .mt-home-strict .mt-section-head h2,
  body[data-page="home"] .mt-home-strict .mt-system h2 {
    font-size: 36px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-copy p {
    font-size: 16px;
    line-height: 1.85;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 58px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data div {
    min-height: 130px;
    border-bottom: 1px solid #e5e7eb;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data strong {
    font-size: 38px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data span {
    margin-top: -34px;
  }

  body[data-page="home"] .mt-home-strict .mt-work,
  body[data-page="home"] .mt-home-strict .mt-adv,
  body[data-page="home"] .mt-home-strict .mt-news {
    padding-top: 92px;
    padding-bottom: 90px;
  }

  body[data-page="home"] .mt-home-strict .mt-work-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 48px;
  }

  body[data-page="home"] .mt-home-strict .mt-work-card h3 {
    font-size: 24px;
  }

  body[data-page="home"] .mt-home-strict .mt-ability {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-card {
    min-height: auto;
    padding: 30px;
  }

  body[data-page="home"] .mt-home-strict .mt-system {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  body[data-page="home"] .mt-home-strict .mt-system-media {
    margin-top: 44px;
  }

  body[data-page="home"] .mt-home-strict .mt-adv-grid,
  body[data-page="home"] .mt-home-strict .mt-news-grid {
    margin-top: 48px;
  }

  body[data-page="home"] .mt-home-strict .mt-adv-card {
    min-height: auto;
    padding: 28px;
    border-radius: 18px;
  }
}

/* codex 2026-06-29 mountor parity pass */
body[data-page="home"] .mt-home-strict .fade-up {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="home"] .mt-home-strict .mt-hero {
  background-color: #1d81bd;
  background-image: url("/site-assets/images/home-legacy-case-1.png");
  background-position: center center;
  background-size: cover;
}

body[data-page="home"] .mt-home-strict .mt-vslide:first-child img {
  object-position: center center;
}

@media (min-width: 761px) {
  body[data-page="home"] .mt-home-strict .mt-copy h1 .is-accent {
    display: block;
    width: max-content;
  }

  body[data-page="home"] .mt-home-strict .mt-copy h1 span:nth-child(2),
  body[data-page="home"] .mt-home-strict .mt-copy h1 span:nth-child(3) {
    display: inline;
  }
}

body[data-page="home"] .mt-home-strict .mt-about-copy p {
  max-width: 580px;
}

body[data-page="home"] .mt-home-strict .mt-work-grid {
  row-gap: 72px;
}

body[data-page="home"] .mt-home-strict .mt-ability-grid {
  width: min(1180px, 100%);
  gap: 36px;
  margin-top: 58px;
}

body[data-page="home"] .mt-home-strict .mt-ability-card {
  min-height: 448px;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
  background: #f2f4f8;
}

body[data-page="home"] .mt-home-strict .mt-ability-img {
  height: 218px;
  margin: 0;
  background: #000000;
}

body[data-page="home"] .mt-home-strict .mt-ability-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .mt-home-strict .mt-ability-body {
  padding: 32px 38px 30px;
}

body[data-page="home"] .mt-home-strict .mt-ability-card p {
  display: none;
}

body[data-page="home"] .mt-home-strict .mt-system-body {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 58px;
  width: min(1180px, 100%);
  margin: 76px auto 0;
  align-items: center;
  text-align: left;
}

body[data-page="home"] .mt-home-strict .mt-system-nav {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

body[data-page="home"] .mt-home-strict .mt-system-nav button {
  position: relative;
  min-height: 62px;
  padding: 0 18px 0 26px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

body[data-page="home"] .mt-home-strict .mt-system-nav button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

body[data-page="home"] .mt-home-strict .mt-system-nav button.is-active {
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-system-nav button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #087dff;
}

body[data-page="home"] .mt-home-strict .mt-system-media {
  margin: 0;
}

body[data-page="home"] .mt-home-strict .mt-system-media img {
  width: 100%;
  background: #111111;
}

body[data-page="home"] .mt-home-strict .mt-system-media p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-hero {
    background-image: url("/site-assets/images/home-legacy-case-1.png");
    background-position: center center;
  }

  body[data-page="home"] .mt-home-strict .mt-vslide:first-child img {
    object-position: center center;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-grid {
    gap: 28px;
    margin-top: 48px;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-card {
    min-height: auto;
    padding: 0;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-img {
    height: 190px;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-body {
    padding: 28px;
  }

  body[data-page="home"] .mt-home-strict .mt-system-body {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
  }

  body[data-page="home"] .mt-home-strict .mt-system-nav button {
    min-height: 56px;
    font-size: 15px;
  }
}

/* codex 2026-06-29 Oceasail brand assets */
.site-header .brand-link {
  min-width: 150px;
}

.site-header .site-brand-logo {
  display: block;
  width: 154px;
  max-height: 48px;
  object-fit: contain;
}

body[data-page="home"] .mt-home-strict .mt-logo {
  width: auto;
  height: 52px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px -28px rgba(0, 0, 0, 0.45);
}

body[data-page="home"] .mt-home-strict .mt-logo img {
  display: block;
  width: 154px !important;
  max-height: 40px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .site-header .brand-link {
    min-width: 130px;
  }

  .site-header .site-brand-logo {
    width: 132px;
    max-height: 42px;
  }

  body[data-page="home"] .mt-home-strict .mt-logo {
    height: 44px;
    padding: 5px 8px;
  }

  body[data-page="home"] .mt-home-strict .mt-logo img {
    width: 128px !important;
    max-height: 34px;
  }
}

/* codex 2026-06-29 mountor animation parity */
body[data-page="home"] .mt-home-strict .mt-vslide {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1), visibility 1.2s ease;
  will-change: transform;
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-prev {
  transform: translate3d(0, -100%, 0);
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-next {
  transform: translate3d(0, 100%, 0);
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-active {
  z-index: 3;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-subslides,
body[data-page="home"] .mt-home-strict .mt-subslide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

body[data-page="home"] .mt-home-strict .mt-subslide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.92s ease, visibility 0.92s ease;
}

body[data-page="home"] .mt-home-strict .mt-subslide.is-active {
  opacity: 1;
  visibility: visible;
}

body[data-page="home"] .mt-home-strict .mt-vslide .mt-subslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  transition: transform 5.8s ease;
  will-change: transform;
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-active .mt-subslide.is-active img {
  transform: scale(1);
}

body[data-page="home"] .mt-home-strict .mt-copy h1 .mt-title-line {
  display: block !important;
  overflow: hidden;
}

body[data-page="home"] .mt-home-strict .mt-copy h1 .mt-title-text {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 112%, 0);
  transition: opacity 0.72s ease, transform 0.92s cubic-bezier(0.2, 0.82, 0.2, 1);
  transition-delay: var(--line-delay, 0s);
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-active .mt-title-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-copy p {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.7s ease 0.36s, transform 0.7s ease 0.36s;
}

body[data-page="home"] .mt-home-strict .mt-vslide.is-active .mt-copy p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-sub-pagination {
  position: absolute;
  left: 50px;
  bottom: 142px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

body[data-page="home"] .mt-home-strict .mt-sub-pagination span {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

body[data-page="home"] .mt-home-strict .mt-sub-pagination span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
}

body[data-page="home"] .mt-home-strict .mt-sub-pagination span.is-active::after {
  animation: mtSubProgress 3.6s linear;
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination button {
  position: relative;
  overflow: hidden;
  transition: height 0.35s ease, background 0.35s ease;
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination button.is-active {
  background: rgba(255, 255, 255, 0.28);
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination button.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform-origin: top center;
  animation: mtHeroProgress 10.8s linear;
}

@keyframes mtSubProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes mtHeroProgress {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (min-width: 761px) {
  body[data-page="home"] .mt-home-strict .mt-copy h1 .mt-title-line:nth-child(2),
  body[data-page="home"] .mt-home-strict .mt-copy h1 .mt-title-line:nth-child(3) {
    display: inline-block !important;
  }

  body[data-page="home"] .mt-home-strict .mt-copy h1 .mt-title-line:nth-child(2) {
    margin-right: 0.24em;
  }
}

body[data-page="home"] .mt-home-strict .mt-about {
  --about-p: 0;
}

body[data-page="home"] .mt-home-strict .mt-about-stage {
  position: sticky;
  top: 108px;
  transform: translate3d(0, calc(var(--about-p) * -38px), 0) !important;
  transition: transform 0.12s linear;
}

body[data-page="home"] .mt-home-strict .mt-about-visual {
  transform: scale(calc(0.88 + var(--about-p) * 0.16));
  transition: transform 0.12s linear;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-big {
  opacity: calc(0.48 + var(--about-p) * 0.52);
  transform: rotate(calc((var(--about-p) - 0.35) * 5deg));
  transition: opacity 0.12s linear, transform 0.12s linear;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-big {
  filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(1680%) hue-rotate(181deg) brightness(76%) contrast(112%);
}

body[data-page="home"] .mt-home-strict .mt-about-float {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.7s ease;
}

body[data-page="home"] .mt-home-strict .mt-float-one {
  transform: translate3d(-60px, 40px, 0);
}

body[data-page="home"] .mt-home-strict .mt-float-two {
  transform: translate3d(60px, -40px, 0);
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-2 .mt-about-float {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-about-data div {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3 .mt-about-data div {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3 .mt-about-data div:nth-child(2) {
  transition-delay: 0.08s;
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3 .mt-about-data div:nth-child(3) {
  transition-delay: 0.16s;
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3 .mt-about-data div:nth-child(4) {
  transition-delay: 0.24s;
}

body[data-page="home"] .mt-home-strict .mt-system-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 980 / 552;
  overflow: hidden;
  background: #111111;
}

body[data-page="home"] .mt-home-strict .mt-system-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(42px, 0, 0);
  transition: opacity 0.58s ease, transform 0.72s cubic-bezier(0.2, 0.82, 0.2, 1), visibility 0.58s ease;
}

body[data-page="home"] .mt-home-strict .mt-system-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-system-slide video,
body[data-page="home"] .mt-home-strict .mt-system-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111111;
}

body[data-page="home"] .mt-home-strict .mt-system-slide img {
  z-index: 0;
}

body[data-page="home"] .mt-home-strict .mt-system-slide video {
  z-index: 1;
}

body[data-page="home"] .mt-home-strict .mt-system-nav button.is-active::after {
  transform-origin: left center;
  animation: mtSystemProgress 5.6s linear;
}

@keyframes mtSystemProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-vslide .mt-subslide img {
    object-position: 42% center;
  }

  body[data-page="home"] .mt-home-strict .mt-menu-open {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 4;
    display: grid !important;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    transform: translateY(-50%);
  }

  body[data-page="home"] .mt-home-strict .mt-menu-open span {
    width: 20px;
    height: 2px;
    margin: 0;
    background: #ffffff;
  }

  body[data-page="home"] .mt-home-strict .mt-sub-pagination {
    display: none;
  }

  body[data-page="home"] .mt-home-strict .mt-about-stage {
    position: relative;
    top: auto;
    transform: none !important;
  }

  body[data-page="home"] .mt-home-strict .mt-about-visual {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .mt-home-strict .mt-vslide,
  body[data-page="home"] .mt-home-strict .mt-subslide,
  body[data-page="home"] .mt-home-strict .mt-title-text,
  body[data-page="home"] .mt-home-strict .mt-system-slide {
    transition-duration: 0.01ms !important;
  }

  body[data-page="home"] .mt-home-strict .mt-hero-pagination button.is-active::after,
  body[data-page="home"] .mt-home-strict .mt-sub-pagination span.is-active::after,
  body[data-page="home"] .mt-home-strict .mt-system-nav button.is-active::after {
    animation: none !important;
  }
}

/* codex 2026-06-29 pixel parity expansion */
@media (min-width: 1101px) {
  body[data-page="home"] .mt-home-strict .mt-nav {
    max-width: 620px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: max-width 0.45s ease, opacity 0.32s ease, transform 0.45s ease, margin 0.45s ease;
    overflow: hidden;
  }

  body[data-page="home"] .mt-home-strict.is-nav-compact .mt-nav {
    max-width: 0;
    margin-left: auto;
    margin-right: 34px;
    opacity: 0;
    transform: translate3d(24px, 0, 0);
    pointer-events: none;
  }

  body[data-page="home"] .mt-home-strict.is-nav-compact .mt-menu-open {
    display: grid;
    width: 32px;
    height: 32px;
    margin-left: 0;
    margin-right: 28px;
    place-items: center;
  }

  body[data-page="home"] .mt-home-strict.is-nav-compact .mt-menu-open span {
    width: 20px;
    height: 2px;
    margin: 0;
  }

  body[data-page="home"] .mt-home-strict.is-nav-compact .mt-contact {
    margin-left: 0;
  }

  body[data-page="home"] .mt-home-strict.is-about-clean-header .mt-header.is-scrolled {
    background: transparent;
  }

  body[data-page="home"] .mt-home-strict.is-about-clean-header .mt-logo,
  body[data-page="home"] .mt-home-strict.is-about-clean-header .mt-nav,
  body[data-page="home"] .mt-home-strict.is-about-clean-header .mt-menu-open,
  body[data-page="home"] .mt-home-strict.is-about-clean-header .mt-side-dots {
    display: none;
  }

  body[data-page="home"] .mt-home-strict.is-about-clean-header .mt-contact {
    margin-left: auto;
  }
}

body[data-page="home"] .mt-home-strict .mt-about {
  min-height: 1800px;
  padding: 0;
  background: #ffffff;
  --about-logo-offset: 0px;
}

body[data-page="home"] .mt-home-strict .mt-main {
  overflow: visible;
}

body[data-page="home"] .site-main,
body[data-page="home"] [data-page-root] {
  overflow: visible !important;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-scene {
  position: relative;
  top: auto;
  z-index: 10;
  display: grid;
  height: calc(100vh - 80px);
  min-height: 720px;
  max-height: 820px;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  transform: translate3d(0, var(--about-logo-offset), 0);
  will-change: transform;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-scene::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 70%);
  pointer-events: none;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-scene img {
  width: min(470px, 44vw);
  filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(1680%) hue-rotate(181deg) brightness(76%) contrast(112%);
  opacity: 1;
  transform: translate3d(0, calc(var(--about-p, 0) * -10px), 0);
  transition: transform 0.12s linear, opacity 0.12s linear;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-spacer {
  height: 0;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-stage {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  width: 100%;
  max-width: none;
  min-height: 580px;
  margin: 0;
  padding: 96px 50px 80px;
  background:
    radial-gradient(circle at 38% 18%, rgba(0, 127, 255, 0.34), transparent 28%),
    radial-gradient(circle at 74% 38%, rgba(29, 181, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #030915, #06152a 46%, #02050a);
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.72) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(0,132,255,0.56) 0 1px, transparent 2px);
  background-position: 0 0, 32px 48px;
  background-size: 96px 96px, 140px 140px;
  opacity: 0.18;
  pointer-events: none;
  animation: mtStarDrift 22s linear infinite;
}

body[data-page="home"] .mt-home-strict .mt-about-stage > * {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .mt-home-strict .mt-about-copy span,
body[data-page="home"] .mt-home-strict .mt-about-copy h2,
body[data-page="home"] .mt-home-strict .mt-about-copy p {
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-copy h2 {
  font-size: clamp(48px, 5.2vw, 76px);
}

body[data-page="home"] .mt-home-strict .mt-about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .mt-home-strict .mt-about-data {
  width: 100%;
  min-height: 380px;
  margin: 0;
  padding: 54px min(6vw, 86px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.96), rgba(3, 21, 42, 0.94)),
    radial-gradient(circle at 52% 45%, rgba(26, 160, 255, 0.32), transparent 42%);
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-data div {
  min-height: 190px;
  border-right-color: rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .mt-home-strict .mt-about-data strong {
  color: #ffffff;
  font-size: clamp(58px, 7vw, 96px);
}

body[data-page="home"] .mt-home-strict .mt-about-data span {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .mt-home-strict .mt-client {
  position: relative;
  display: grid;
  min-height: 900px;
  place-items: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-client::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 42% 45%, rgba(31, 126, 255, 0.16), transparent 34%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.12), transparent 22%);
  opacity: calc(0.65 + var(--client-p, 0) * 0.35);
}

body[data-page="home"] .mt-home-strict .mt-client-starfield span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--s) * 4px);
  height: calc(var(--s) * 4px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.56);
  opacity: 0.55;
  animation: mtClientTwinkle 4.8s ease-in-out infinite;
  animation-delay: var(--d);
}

body[data-page="home"] .mt-home-strict .mt-client-wall {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1180px, calc(100% - 120px));
  max-height: 590px;
  object-fit: contain;
  opacity: 0.78;
  mix-blend-mode: screen;
  transform: translate3d(0, calc((0.5 - var(--client-p, 0)) * 60px), 0) scale(calc(0.94 + var(--client-p, 0) * 0.08));
  transition: transform 0.12s linear;
}

body[data-page="home"] .mt-home-strict .mt-client-pill {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 3;
  min-width: 482px;
  padding: 28px 46px;
  border-radius: 999px;
  background: #ffffff;
  color: #087dff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transform: translate3d(-50%, -50%, 0) scale(calc(0.9 + var(--client-p, 0) * 0.08));
  box-shadow: 0 30px 120px rgba(255, 255, 255, 0.12);
}

@keyframes mtStarDrift {
  from { background-position: 0 0, 32px 48px; }
  to { background-position: 96px 96px, 172px 188px; }
}

@keyframes mtClientTwinkle {
  0%, 100% { opacity: 0.22; transform: scale(0.7); }
  45% { opacity: 0.92; transform: scale(1.2); }
}

body[data-page="home"] .mt-home-strict .mt-adv {
  padding-bottom: 0;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion {
  width: min(810px, calc(100% - 64px));
  margin: 120px auto 0;
  padding: 58px 0 390px;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion article {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion button {
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion button span {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion button i {
  position: relative;
  width: 18px;
  height: 18px;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion button i::before,
body[data-page="home"] .mt-home-strict .mt-adv-accordion button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion article.is-active button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.28s ease, padding 0.35s ease;
}

body[data-page="home"] .mt-home-strict .mt-adv-accordion article.is-active p {
  max-height: 160px;
  padding: 0 70px 28px 0;
  opacity: 1;
}

body[data-page="home"] .mt-home-strict .mt-adv {
  background: linear-gradient(#ffffff 0 52%, #000000 52% 100%);
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-about {
    padding: 0;
    min-height: auto;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-scene {
    height: 540px;
    min-height: 540px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-spacer {
    height: 0;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-scene img {
    width: 230px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-stage {
    min-height: auto;
    padding: 74px 24px 80px;
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data {
    padding: 32px 24px;
  }

  body[data-page="home"] .mt-home-strict .mt-client {
    min-height: 620px;
  }

  body[data-page="home"] .mt-home-strict .mt-client-wall {
    width: 145%;
    max-width: none;
  }

  body[data-page="home"] .mt-home-strict .mt-client-pill {
    min-width: 0;
    width: calc(100% - 58px);
    padding: 18px 20px;
    font-size: 25px;
  }

  body[data-page="home"] .mt-home-strict .mt-adv {
    background: linear-gradient(#ffffff 0 45%, #000000 45% 100%);
  }

  body[data-page="home"] .mt-home-strict .mt-adv-accordion {
    width: calc(100% - 48px);
    margin-top: 66px;
    padding-bottom: 84px;
  }

  body[data-page="home"] .mt-home-strict .mt-adv-accordion button {
    min-height: 72px;
  }

body[data-page="home"] .mt-home-strict .mt-adv-accordion button span {
    font-size: 20px;
  }
}

/* codex 2026-06-29 deep mountor parity pass */
body[data-page="home"] .mt-home-strict .mt-logo {
  width: 154px;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .mt-home-strict .mt-logo img {
  width: 154px !important;
  max-height: 46px;
  object-fit: contain;
}

body[data-page="home"] .mt-home-strict .mt-sub-pagination span.is-active::after {
  animation-duration: 3s;
}

body[data-page="home"] .mt-home-strict .mt-hero-pagination button.is-active::after {
  animation: none;
  transform: scaleY(1);
}

body[data-page="home"] .mt-home-strict .mt-about {
  min-height: 1800px;
  padding: 0;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-scene {
  height: 100vh;
  min-height: 900px;
  max-height: none;
  padding-top: 150px;
  box-sizing: border-box;
  place-items: start center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.36s ease, visibility 0.36s ease, transform 0.12s linear;
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-dark .mt-about-logo-scene {
  visibility: hidden;
  opacity: 0;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-scene::before {
  display: none;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-stack {
  display: flex;
  width: min(760px, calc(100% - 80px));
  flex-direction: column;
  align-items: center;
  color: #000000;
  text-align: center;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-scene img {
  width: min(260px, 24vw);
  filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(1680%) hue-rotate(181deg) brightness(76%) contrast(112%);
  transform: none;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-media {
  position: relative;
  width: min(260px, 24vw);
  aspect-ratio: 300 / 185;
  overflow: hidden;
  transition: width 0.36s ease, opacity 0.28s ease, visibility 0.28s ease;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-fallback,
body[data-page="home"] .mt-home-strict .mt-about-logo-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-fallback {
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(1680%) hue-rotate(181deg) brightness(76%) contrast(112%);
  width: 100% !important;
  height: 100% !important;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-mark {
  background: #003356;
  -webkit-mask: url("/site-assets/images/mountor-about-logo-mask.svg") center / contain no-repeat;
  mask: url("/site-assets/images/mountor-about-logo-mask.svg") center / contain no-repeat;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-mark video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.45);
  filter: saturate(1.15) contrast(1.05);
}

body[data-page="home"] .mt-home-strict .mt-about-logo-title {
  width: 272px;
  margin: 72px auto 0;
  color: #171a23;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.12;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-word {
  margin-top: 64px;
  color: #000000;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-stack p {
  width: min(680px, 100%);
  margin: 30px auto 0;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  text-align: justify;
}

body[data-page="home"] .mt-home-strict .mt-about-stage {
  position: relative;
  top: auto;
  display: flex;
  min-height: 900px;
  padding: 150px min(6vw, 86px) 80px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  transform: none !important;
}

body[data-page="home"] .mt-home-strict .mt-about-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body[data-page="home"] .mt-home-strict .mt-about-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12) 56%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

body[data-page="home"] .mt-home-strict .mt-about-stage > *:not(.mt-about-bg-video) {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .mt-home-strict .mt-about-visual,
body[data-page="home"] .mt-home-strict .mt-about-logo-big,
body[data-page="home"] .mt-home-strict .mt-about-float {
  display: none;
}

body[data-page="home"] .mt-home-strict .mt-about-copy {
  width: min(760px, 58vw);
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(50px, 4.25vw, 68px);
  font-weight: 300;
  line-height: 1.18;
}

body[data-page="home"] .mt-home-strict .mt-about-copy h2 em {
  color: #fabb05;
  font-size: 1.57em;
  font-style: normal;
  line-height: 0.88;
}

body[data-page="home"] .mt-home-strict .mt-about-copy h2 sup {
  margin-left: 5px;
  font-size: 0.32em;
  vertical-align: super;
}

body[data-page="home"] .mt-home-strict .mt-about-copy p {
  width: min(700px, 100%);
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

body[data-page="home"] .mt-home-strict .mt-about-data {
  display: grid;
  width: 100%;
  min-height: 168px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
  background: transparent;
  color: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-about-data div {
  min-height: 168px;
  place-items: start;
  align-content: start;
  padding-top: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .mt-home-strict .mt-about-data strong {
  color: #ffffff;
  font-size: clamp(70px, 6.7vw, 94px);
  font-weight: 300;
  line-height: 1;
}

body[data-page="home"] .mt-home-strict .mt-about-data span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

body[data-page="home"] .mt-home-strict .mt-work {
  padding-bottom: 197px;
}

body[data-page="home"] .mt-home-strict .mt-ability {
  padding: 96px 50px 102px;
  background: #ffffff;
  color: #111111;
}

body[data-page="home"] .mt-home-strict .mt-section-head-dark h2 {
  color: #111111;
}

body[data-page="home"] .mt-home-strict .mt-section-head-dark p {
  color: #666666;
}

body[data-page="home"] .mt-home-strict .mt-ability-grid {
  width: min(1120px, 100%);
  gap: 58px;
}

body[data-page="home"] .mt-home-strict .mt-ability-card {
  position: relative;
  min-height: 384px;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: #111111;
  text-align: center;
}

body[data-page="home"] .mt-home-strict .mt-ability-img {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  place-items: center;
  pointer-events: none;
}

body[data-page="home"] .mt-home-strict .mt-ability-img::before {
  content: "";
  position: absolute;
  width: 68.75%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: #f3f5f9;
}

body[data-page="home"] .mt-home-strict .mt-ability-img img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.12;
  transform: scale(0.76);
}

body[data-page="home"] .mt-home-strict .mt-ability-card:nth-child(2) .mt-ability-img img {
  opacity: 0.34;
  transform: scale(0.9);
}

body[data-page="home"] .mt-home-strict .mt-ability-body {
  position: relative;
  z-index: 2;
  max-width: 285px;
  padding: 0;
}

body[data-page="home"] .mt-home-strict .mt-ability-body h3 {
  color: #000000;
  font-size: 28px;
  font-weight: 300;
}

body[data-page="home"] .mt-home-strict .mt-ability-body ul {
  gap: 10px;
  margin-top: 22px;
}

body[data-page="home"] .mt-home-strict .mt-ability-body li {
  padding-left: 0;
  color: #333333;
  font-size: 16px;
}

body[data-page="home"] .mt-home-strict .mt-ability-body li::before {
  display: none;
}

body[data-page="home"] .mt-home-strict .mt-adv-grid {
  width: min(1152px, 100%);
  gap: 20px;
}

body[data-page="home"] .mt-home-strict .mt-adv-card {
  min-height: 459px;
  padding: 32px;
  border-color: #e7e7e7;
  border-radius: 24px;
}

body[data-page="home"] .mt-home-strict .mt-adv-card img {
  aspect-ratio: 300 / 222;
  border-radius: 24px;
  object-fit: contain;
}

body[data-page="home"] .mt-home-strict .mt-adv-card h3 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
}

body[data-page="home"] .mt-home-strict .mt-news {
  padding: 170px 50px 150px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-news-grid {
  width: min(1152px, 100%);
  gap: 24px;
}

body[data-page="home"] .mt-home-strict .mt-news-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-news-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.742 / 1;
  object-fit: cover;
}

body[data-page="home"] .mt-home-strict .mt-news-body {
  display: flex;
  min-height: 256px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 30px;
  border: 1px solid #e3e3e3;
  border-top: 0;
  border-radius: 0 0 32px 32px;
}

body[data-page="home"] .mt-home-strict .mt-news-body strong {
  color: #111111;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.34;
}

body[data-page="home"] .mt-home-strict .mt-news-body small {
  margin-top: 14px;
  color: #555555;
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="home"] .mt-home-strict .mt-news-body i {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  font-style: normal;
}

body[data-page="home"] .mt-home-strict .mt-news-body b {
  padding: 4px 12px;
  border-radius: 999px;
  background: #efefef;
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 300;
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-logo {
    width: 128px;
    height: auto;
    padding: 0;
    background: transparent;
  }

  body[data-page="home"] .mt-home-strict .mt-logo img {
    width: 128px !important;
    max-height: 38px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-scene {
    height: 620px;
    min-height: 620px;
    padding: 110px 24px 0;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-stack {
    width: 100%;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-scene img {
    width: 180px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-media {
    width: 180px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-title {
    width: 170px;
    margin-top: 52px;
    font-size: 34px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-word {
    margin-top: 36px;
    font-size: 32px;
    white-space: normal;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-stack p {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  body[data-page="home"] .mt-home-strict .mt-about-stage {
    min-height: 760px;
    padding: 86px 24px 50px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-copy {
    width: 100%;
  }

  body[data-page="home"] .mt-home-strict .mt-about-copy h2 {
    font-size: 34px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-copy p {
    font-size: 14px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data div {
    min-height: 112px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-data strong {
    font-size: 46px;
  }

  body[data-page="home"] .mt-home-strict .mt-ability {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  body[data-page="home"] .mt-home-strict .mt-ability-card {
    min-height: 300px;
  }

  body[data-page="home"] .mt-home-strict .mt-news {
    padding: 80px 24px 90px;
  }

body[data-page="home"] .mt-home-strict .mt-news-body {
    min-height: 220px;
  }
}

/* codex 2026-06-29 v23 section timing refinements */
body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-stack {
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-scene img {
  width: min(470px, 44vw);
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-media {
  width: min(470px, 44vw);
}

body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-title,
body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-word,
body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-stack p {
  opacity: 0;
  visibility: hidden;
}

body[data-page="home"] .mt-home-strict .mt-about-logo-stack,
body[data-page="home"] .mt-home-strict .mt-about-logo-scene img,
body[data-page="home"] .mt-home-strict .mt-about-logo-media,
body[data-page="home"] .mt-home-strict .mt-about-logo-title,
body[data-page="home"] .mt-home-strict .mt-about-logo-word,
body[data-page="home"] .mt-home-strict .mt-about-logo-stack p {
  transition: transform 0.36s ease, width 0.36s ease, opacity 0.28s ease, visibility 0.28s ease;
}

body[data-page="home"] .mt-home-strict .mt-ability {
  padding-bottom: 197px;
}

body[data-page="home"] .mt-home-strict .mt-ability-img img {
  opacity: 0.06;
  transform: scale(0.68);
}

body[data-page="home"] .mt-home-strict .mt-ability-card:nth-child(2) .mt-ability-img img {
  opacity: 0.16;
  transform: scale(0.78);
}

body[data-page="home"] .mt-home-strict .mt-system {
  height: 900px;
  min-height: 900px;
  box-sizing: border-box;
  padding-bottom: 104px;
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-stack {
    transform: none;
  }

  body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-scene img {
    width: 180px;
  }

  body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-media {
    width: 180px;
  }

  body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-title,
  body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-word,
  body[data-page="home"] .mt-home-strict .mt-about.is-about-step-3:not(.is-about-dark) .mt-about-logo-stack p {
    opacity: 1;
    visibility: visible;
  }

  body[data-page="home"] .mt-home-strict .mt-ability {
    padding-bottom: 92px;
  }

body[data-page="home"] .mt-home-strict .mt-system {
    height: auto;
    min-height: auto;
    padding-bottom: 80px;
  }

  body[data-page="home"] .mt-home-strict .mt-about-logo-scene {
    height: 844px;
    min-height: 844px;
    max-height: none;
  }
}

/* codex 2026-06-30 banner image animation parity */
body[data-page="home"] .mt-home-strict .mt-vslide {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-page="home"] .mt-home-strict .mt-subslides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

body[data-page="home"] .mt-home-strict .mt-subtrack {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--sub-index, 0) * -100%), 0, 0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

body[data-page="home"] .mt-home-strict .mt-subtrack.is-resetting {
  transition: none !important;
}

body[data-page="home"] .mt-home-strict .mt-subtrack .mt-subslide {
  position: relative !important;
  inset: auto !important;
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

body[data-page="home"] .mt-home-strict .mt-subtrack .mt-subslide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-subtrack .mt-subslide img {
    object-position: center bottom;
  }
}

/* codex 2026-07-04 generic header menu layering repair */
body:not([data-page="home"]) [data-site-header-root],
body:not([data-page="home"]) .site-header {
  z-index: 10000 !important;
  isolation: isolate;
}

body:not([data-page="home"]) .site-header .mega-menu {
  position: fixed !important;
  top: 78px !important;
  left: 50% !important;
  z-index: 2147482000 !important;
  width: min(860px, calc(100vw - 48px)) !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 0;
  transform: translate(-50%, 10px) !important;
  box-shadow: 0 30px 80px -34px rgba(17, 24, 39, 0.38);
}

body:not([data-page="home"]) .site-header .nav-item:hover .mega-menu,
body:not([data-page="home"]) .site-header .nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible !important;
  transform: translate(-50%, 0) !important;
}

/* codex 2026-07-04 case-follow modules and admin carousel repair */
body[data-page="home"] .mt-home-strict .mt-work {
  padding-bottom: 72px;
}

body[data-page="home"] .mt-home-strict .mt-result-showcase {
  position: relative;
  overflow-x: clip;
  padding: 8px 0 78px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-result-marquee {
  width: 100vw;
  overflow: hidden;
  margin-left: 50%;
  transform: translateX(-50%);
}

body[data-page="home"] .mt-home-strict .mt-result-track {
  --mt-result-gap: clamp(72px, 7vw, 128px);
  --mt-result-shift: 1200px;
  --mt-result-duration: 58s;
  display: flex;
  align-items: flex-start;
  width: max-content;
  min-width: 100%;
  padding: 0 0 34px clamp(42px, 5.6vw, 90px);
  animation: mtResultMarquee var(--mt-result-duration) linear infinite;
  will-change: transform;
}

body[data-page="home"] .mt-home-strict .mt-result-marquee:hover .mt-result-track {
  animation-play-state: paused;
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem {
  position: relative;
  flex: 0 0 auto;
  width: clamp(168px, 13vw, 242px);
  padding-bottom: 34px;
  margin-right: var(--mt-result-gap);
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem:nth-child(4n+1) {
  margin-top: 58px;
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem:nth-child(4n+2) {
  margin-top: 8px;
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem:nth-child(4n+3) {
  margin-top: 86px;
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem:nth-child(4n) {
  margin-top: 34px;
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .mt-result-phone {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: #1a1a1a;
  padding: 4px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.14);
}

body[data-page="home"] .mt-home-strict .mt-result-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 3;
  width: 80px;
  height: 20px;
  border-radius: 999px;
  background: #202024;
  transform: translateX(-50%);
}

body[data-page="home"] .mt-home-strict .mt-result-screen {
  overflow: hidden;
  height: clamp(440px, 35vw, 612px);
  border-radius: 38px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-result-browser {
  height: 60px;
  padding: 26px 10px 0;
  background: #f2f2f7;
  box-sizing: border-box;
}

body[data-page="home"] .mt-home-strict .mt-result-url {
  overflow: hidden;
  height: 24px;
  border-radius: 8px;
  background: #ffffff;
  color: #777777;
  font-size: 10px;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body[data-page="home"] .mt-home-strict .mt-result-shot {
  display: block;
  width: 100%;
  height: calc(100% - 60px);
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

body[data-page="home"] .mt-home-strict .mt-result-phoneitem > a:hover .mt-result-shot {
  transform: scale(1.055);
}

body[data-page="home"] .mt-home-strict .mt-result-badge {
  position: absolute;
  left: -24px;
  bottom: 0;
  min-width: 148px;
  padding: 18px 20px 14px;
  border-radius: 12px;
  background: #fbb531;
  color: #111111;
  box-shadow: 0 18px 36px rgba(251, 181, 49, 0.24);
}

body[data-page="home"] .mt-home-strict .mt-result-badge strong {
  display: block;
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1;
}

body[data-page="home"] .mt-home-strict .mt-result-badge span {
  display: block;
  margin-top: 7px;
  color: #5b4a18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

@keyframes mtResultMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--mt-result-shift) * -1), 0, 0); }
}

body[data-page="home"] .mt-home-strict .mt-banner-cases {
  padding: 52px 50px 124px;
  background: #ffffff;
}

body[data-page="home"] .mt-home-strict .mt-banner-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1400px, 100%);
  margin: 0 auto;
}

body[data-page="home"] .mt-home-strict .mt-banner-case {
  display: block;
  overflow: hidden;
  background: #f5f6f8;
  color: inherit;
  text-decoration: none;
}

body[data-page="home"] .mt-home-strict .mt-banner-case img {
  display: block;
  width: 100%;
  aspect-ratio: 652 / 326;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}

body[data-page="home"] .mt-home-strict .mt-banner-case:hover img {
  transform: scale(1.035);
}

body[data-page="home"] .mt-home-strict .mt-system-title {
  text-align: center;
}

body[data-page="home"] .mt-home-strict .mt-system-stage {
  border: 1px solid rgba(78, 122, 255, 0.72);
  border-radius: 14px;
  background:
    radial-gradient(circle at 54% 52%, rgba(23, 96, 145, 0.58), rgba(11, 23, 51, 0.16) 42%, transparent 64%),
    linear-gradient(135deg, #071325 0%, #0d1730 55%, #05050b 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 34px 90px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .mt-home-strict .mt-system-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: clamp(28px, 4.2vw, 48px);
  color: #ffffff;
  box-sizing: border-box;
}

body[data-page="home"] .mt-home-strict .mt-system-visual-title {
  position: relative;
  z-index: 3;
  max-width: 560px;
  font-size: clamp(25px, 2.3vw, 32px);
  line-height: 1.15;
  font-weight: 800;
}

body[data-page="home"] .mt-home-strict .mt-system-visual-sub {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin-top: 14px;
  color: rgba(225, 235, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="home"] .mt-home-strict .mt-system-orbit {
  position: absolute;
  right: 8%;
  top: 16%;
  width: 72%;
  height: 66%;
  border: 1px solid rgba(74, 143, 213, 0.42);
  border-radius: 50%;
  transform: rotate(-7deg);
}

body[data-page="home"] .mt-home-strict .mt-system-orbit::before,
body[data-page="home"] .mt-home-strict .mt-system-orbit::after {
  content: "";
  position: absolute;
  inset: -42px;
  border: 18px solid rgba(64, 102, 156, 0.16);
  border-radius: 50%;
}

body[data-page="home"] .mt-home-strict .mt-system-orbit::after {
  inset: 46px;
  border-width: 1px;
  border-color: rgba(72, 210, 200, 0.26);
}

body[data-page="home"] .mt-home-strict .mt-system-line {
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 22%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(8,125,255,0.88) 62%, #2fe8dc 100%);
}

body[data-page="home"] .mt-home-strict .mt-system-card {
  position: absolute;
  z-index: 4;
  min-width: 138px;
  padding: 9px 15px;
  border: 1px solid rgba(87, 184, 255, 0.72);
  border-radius: 999px;
  background: rgba(6, 21, 38, 0.82);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .mt-home-strict .mt-system-card.card-1 {
  right: 11%;
  top: 31%;
}

body[data-page="home"] .mt-home-strict .mt-system-card.card-2 {
  left: 38%;
  bottom: 22%;
}

body[data-page="home"] .mt-home-strict .mt-system-card.card-3 {
  left: 45%;
  bottom: 30%;
}

body[data-page="home"] .mt-home-strict .mt-system-visual-devices .mt-system-card.card-1 {
  right: 14%;
  top: 25%;
}

body[data-page="home"] .mt-home-strict .mt-system-visual-devices .mt-system-card.card-2 {
  left: 28%;
  bottom: 20%;
}

body[data-page="home"] .mt-home-strict .mt-system-visual-devices .mt-system-card.card-3 {
  right: 18%;
  bottom: 24%;
}

body[data-page="home"] .mt-home-strict .mt-system-visual-seo .mt-system-line {
  background: linear-gradient(90deg, rgba(255,255,255,0.16), #00b7ff 52%, #35ff9f 100%);
}

body[data-page="home"] .mt-home-strict .mt-system-nav button.is-active::after {
  animation: mtSystemProgress 4.2s linear;
}

@media (max-width: 900px) {
  body[data-page="home"] .mt-home-strict .mt-banner-cases-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .mt-home-strict .mt-work {
    padding-bottom: 50px;
  }

  body[data-page="home"] .mt-home-strict .mt-result-showcase {
    padding-bottom: 58px;
  }

  body[data-page="home"] .mt-home-strict .mt-result-track {
    --mt-result-gap: 54px;
    padding-left: 30px;
  }

  body[data-page="home"] .mt-home-strict .mt-result-phoneitem {
    width: 184px;
  }

  body[data-page="home"] .mt-home-strict .mt-result-screen {
    height: 456px;
  }

  body[data-page="home"] .mt-home-strict .mt-result-badge {
    left: -14px;
    min-width: 118px;
    padding: 14px 15px 12px;
  }

  body[data-page="home"] .mt-home-strict .mt-banner-cases {
    padding: 30px 20px 78px;
  }

  body[data-page="home"] .mt-home-strict .mt-system-stage {
    aspect-ratio: 1 / 0.9;
  }

  body[data-page="home"] .mt-home-strict .mt-system-visual {
    padding: 24px;
  }

  body[data-page="home"] .mt-home-strict .mt-system-orbit {
    right: -16%;
    top: 25%;
    width: 112%;
    height: 58%;
  }

  body[data-page="home"] .mt-home-strict .mt-system-card {
    min-width: 112px;
    padding: 8px 12px;
    font-size: 12px;
  }

  body[data-page="home"] .mt-home-strict .mt-system-card.card-1 {
    right: 7%;
    top: 41%;
  }

  body[data-page="home"] .mt-home-strict .mt-system-card.card-2 {
    left: 18%;
    bottom: 18%;
  }

  body[data-page="home"] .mt-home-strict .mt-system-card.card-3 {
    left: 34%;
    bottom: 30%;
  }
}

/* Legacy homepage keeps its own static navigation and footer. */
body[data-page="home-legacy"] > nav {
  visibility: visible !important;
}
