:root {
  --font-sans: 'IBM Plex Sans JP', 'Noto Sans JP', sans-serif;
  --font-ui: 'Inter', 'IBM Plex Sans JP', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-display-jp: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-display-soft: 'Noto Sans JP', 'IBM Plex Sans JP', sans-serif;
  --font-cinema: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #ffffff;
  --surface-strong: #ffffff;
  --ink: #1d2327;
  --ink-soft: #4f5860;
  --line: #c9cdd2;
  --navy: #0b1119;
  --navy-2: #1a2431;
  --dark-surface: linear-gradient(135deg, rgba(11, 17, 25, 0.94), rgba(26, 36, 49, 0.9));
  --dark-surface-border: rgba(255, 255, 255, 0.08);
  --dark-surface-shadow: 0 24px 60px rgba(8, 10, 12, 0.18);
  --dark-surface-blur: blur(10px);
  --accent: #8b9096;
  --accent-soft: #e3e4e6;
  --lime: #f28a2b;
  --lime-deep: #dd6a12;
  --shadow: 0 18px 48px rgba(24, 29, 33, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-weight: 450;
  line-height: 1.92;
  letter-spacing: 0.006em;
}

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

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

.container {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.site-main {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.home .site-header {
  position: fixed;
  left: 0;
  right: 0;
}

.site-header .container {
  width: min(1520px, calc(100vw - 56px));
}

@media (max-width: 1320px) {
  .site-header .container {
    width: min(1520px, calc(100vw - 48px));
  }

  .nav-wrap {
    gap: 14px;
  }

  .brand {
    transform: translateX(0);
  }

  .brand-logo-mark {
    width: clamp(34px, 3vw, 46px);
    height: clamp(32px, 2.8vw, 44px);
  }

  .brand-text {
    font-size: 1.06rem;
  }

  .header-nav-cluster {
    gap: 14px;
    padding: 9px 14px;
    transform: translateX(0);
  }

  .menu-inline {
    gap: 18px;
  }

  .menu-inline a {
    font-size: 0.88rem;
  }
}

.site-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  transform: translateX(0);
}

.brand-logo {
  gap: 12px;
  color: var(--lime);
  transform: translateX(0);
  transition: color 0.22s ease;
}

.brand-logo-mark {
  display: block;
  width: clamp(36px, 3.2vw, 50px);
  height: clamp(34px, 3vw, 48px);
  flex: 0 0 auto;
  background: currentColor;
  mask: url('../images/corporate/logo.svg') center / contain no-repeat;
  -webkit-mask: url('../images/corporate/logo.svg') center / contain no-repeat;
}

.brand-text {
  font-size: 1.18rem;
  color: #f5fbfd;
  transition: color 0.22s ease;
}

.site-header:not(.is-transparent) .brand-text {
  color: var(--navy);
}

.site-header:not(.is-transparent) .brand-logo {
  color: var(--navy);
}

.site-nav {
  margin-left: auto;
}

.header-nav-cluster {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(40, 40, 44, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(7, 7, 9, 0.12);
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  transform: translateX(0);
}

.site-header:not(.is-transparent) .header-nav-cluster {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(29, 35, 39, 0.08);
  box-shadow: 0 12px 28px rgba(24, 29, 33, 0.08);
}

.menu-inline,
.menu-mobile,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-inline {
  display: flex;
  gap: 26px;
  align-items: center;
}

.menu-inline > li {
  position: relative;
}

.menu-inline a,
.footer-menu a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.site-header .menu-inline a {
  color: rgba(242, 249, 251, 0.9);
}

.site-header:not(.is-transparent) .menu-inline a {
  color: rgba(29, 35, 39, 0.82);
}

.menu-inline a:hover,
.footer-menu a:hover,
.text-link:hover {
  color: var(--ink);
}

.site-header .menu-inline a:hover {
  color: var(--lime);
}

.service-submenu,
.service-submenu-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 240px;
  padding: 14px;
  border: 1px solid rgba(230, 239, 242, 0.14);
  border-radius: 18px;
  background: rgba(40, 40, 44, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(5, 11, 16, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 80;
}

.service-submenu li + li {
  margin-top: 6px;
}

.service-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(242, 249, 251, 0.92);
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-submenu a:hover,
.service-submenu a:focus-visible {
  color: #ffffff;
  background: rgba(211, 244, 63, 0.12);
  outline: none;
}

.menu-item-has-children:hover .service-submenu,
.menu-item-has-children:focus-within .service-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(240, 248, 251, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #f4fbfd;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.mobile-nav {
  display: none;
  padding: 0 24px 24px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.menu-mobile {
  display: grid;
  gap: 10px;
}

.menu-mobile > li {
  display: grid;
  gap: 8px;
}

.menu-mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.service-submenu-mobile {
  display: grid;
  gap: 8px;
  padding-left: 14px;
}

.service-submenu-mobile a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 239, 242, 0.12);
  color: var(--ink-soft);
}

.mobile-cta,
.desktop-cta {
  white-space: nowrap;
}

.desktop-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
  color: rgba(242, 249, 251, 0.92);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.site-header:not(.is-transparent) .desktop-cta {
  color: rgba(29, 35, 39, 0.82);
}

.desktop-cta-label {
  opacity: 0.98;
}

.desktop-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--lime);
  background: var(--lime);
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex: 0 0 auto;
}

.desktop-cta-arrow {
  color: rgba(23, 23, 26, 0.92);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1;
  transform: translateX(0.5px) translateY(-0.5px);
}

.desktop-cta:hover {
  color: var(--lime);
}

.desktop-cta:hover .desktop-cta-icon {
  transform: translateX(3px);
  border-color: var(--lime);
  background: var(--lime);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--lime);
  border: 1px solid var(--lime);
  color: #1d2327;
}

.btn-primary:hover {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(29, 35, 39, 0.22);
  color: var(--ink);
}

.hero {
  position: relative;
  top: auto;
  z-index: 0;
  min-height: 100svh;
  height: 100svh;
  padding: 0;
  color: #f7fbfd;
  background: #262c31;
  --hero-shift-y: 0px;
  --hero-shift-x: 0px;
  --hero-scale: 1.08;
  --hero-copy-shift-y: 0px;
}

.hero-scroll-over {
  position: relative;
  min-height: auto;
  z-index: 0;
}

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

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.92) brightness(0.88) contrast(0.98);
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(var(--hero-scale));
  transform-origin: center 42%;
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(ellipse at 20% 42%, rgba(7, 10, 12, 0.34) 0%, rgba(7, 10, 12, 0.22) 26%, rgba(7, 10, 12, 0.1) 46%, rgba(7, 10, 12, 0.04) 60%, rgba(7, 10, 12, 0) 78%),
    linear-gradient(90deg, rgba(8, 10, 12, 0.22) 0%, rgba(8, 10, 12, 0.14) 20%, rgba(8, 10, 12, 0.08) 36%, rgba(8, 10, 12, 0.03) 52%, rgba(8, 10, 12, 0) 70%);
}

.hero-shell {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 24px;
  z-index: 1;
}

.hero-copy {
  width: min(980px, 78vw);
  max-width: none;
  transform: translate3d(0, var(--hero-copy-shift-y), 0);
  will-change: transform;
}

.eyebrow,
.mini-label,
.note-date {
  color: var(--ink-soft);
  font-family: var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero h1,
.section-title,
.panel-card h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.16;
}

.hero h1,
.hero-title {
  font-family: var(--font-display-soft);
  font-size: clamp(2.38rem, 3.7vw, 3.86rem);
  max-width: none;
  color: #f6fbfd;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.006em;
  text-wrap: unset;
  display: grid;
  gap: 0.14em;
}

.hero-title-line {
  display: block;
  width: fit-content;
}

.hero-word-emphasis {
  position: relative;
  display: inline-block;
}

.hero-word-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(223, 255, 25, 0.12);
  opacity: 0;
  transform: translate3d(28px, 0, 0) scaleX(0.4);
  transform-origin: left center;
  animation: hero-word-underline 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards;
}

.hero-lead,
.section-lead,
.rich-text,
.panel-card p,
.feature-card p,
.service-card p,
.post-body p,
.note-card p {
  color: var(--ink-soft);
}

.hero-lead {
  max-width: 34ch;
  margin: 32px 0 0;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(242, 248, 251, 0.9);
}

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

.hero .eyebrow {
  color: rgba(226, 234, 238, 0.78);
}

.hero-outline {
  border-color: rgba(244, 249, 251, 0.46);
  color: #f5fafc;
}

.hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-primary {
  box-shadow: 0 10px 22px rgba(184, 222, 23, 0.16);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 18px;
  margin-top: 64px;
  align-self: flex-start;
}

.hero-facts div,
.split-panel,
.feature-card,
.service-card,
.post-card,
.note-card,
.panel-card,
.empty-card {
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(24, 29, 33, 0.035);
}

.hero-facts div {
  position: relative;
  padding: 22px 24px 20px;
  background: linear-gradient(135deg, rgba(10, 12, 14, 0.72), rgba(18, 21, 24, 0.54));
  border-color: rgba(221, 232, 237, 0.08);
  box-shadow: 0 14px 32px rgba(7, 11, 14, 0.14);
  overflow: hidden;
}

.hero-facts div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 255, 25, 0.68), rgba(223, 255, 25, 0));
}

.top-story-shell .split-panel,
.top-story-shell .post-card,
.top-story-shell .note-card,
.top-story-shell .empty-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#evolution .split-panel {
  padding: 6px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#evolution .split-panel::before {
  content: "";
  display: block;
  width: min(180px, 34%);
  height: 1px;
  margin: 0 0 22px auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24));
}

#evolution .split-panel .stacked-points {
  gap: 0;
}

#evolution .split-panel .stacked-points div {
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

#evolution .split-panel .stacked-points div:first-child {
  border-top: 0;
  padding-top: 0;
}

#evolution .split-panel .stacked-points strong,
#evolution .split-panel .stacked-points span {
  color: rgba(243, 248, 250, 0.9);
}

#works .empty-card,
#news-list .empty-card {
  padding: 20px 0 0;
  border-top: 1px solid rgba(29, 35, 39, 0.14);
}

.hero-facts span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(231, 240, 244, 0.58);
}

.hero-facts strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 1.56rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.split-media img,
.article-image img,
.post-thumb img {
  width: 100%;
  border-radius: 22px;
}

.section,
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 124px 0;
}

.page-hero {
  padding-bottom: 36px;
  background: var(--bg);
}

.top-story-shell {
  position: relative;
  isolation: isolate;
  z-index: 2;
  --story-overlap: clamp(40px, 5.2vw, 72px);
  margin-top: 0;
  padding-top: 0;
}

.top-story-shell::before {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--story-overlap);
  background: var(--bg);
  border-radius: 0;
  z-index: 1;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08), 0 -16px 42px rgba(7, 7, 9, 0.08);
  transform: translateY(-100%);
  pointer-events: none;
}

.top-story-shell > .section {
  position: relative;
  z-index: 2;
}

#services {
  background: var(--bg);
  padding-top: 72px;
}

#home-news.section-soft {
  padding-bottom: 72px;
}

.lower-story-shell {
  position: relative;
  isolation: isolate;
  background: var(--bg);
  z-index: 2;
}

.lower-story-shell > .section {
  position: relative;
  z-index: 1;
}

.hologram-stage {
  position: relative;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  opacity: 1;
  transition: none;
}

.hologram-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  mix-blend-mode: normal;
  filter: saturate(0.98) contrast(1.12);
}

.hologram-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.spiral-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.spiral-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  mix-blend-mode: normal;
  filter: saturate(0.94) contrast(1.06);
}

.spiral-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.section > .container,
.page-hero > .container {
  position: relative;
  z-index: 2;
}

.lower-story-shell .section > .container {
  position: relative;
  z-index: 2;
}

.section-soft {
  background: #ffffff;
}

#home-news.section-soft {
  background: #ffffff;
  padding-top: calc(92px + clamp(34px, 5vw, 62px));
  padding-bottom: 72px;
}

.policy-editorial-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 44px 72px;
  align-items: center;
}

.policy-editorial-copy {
  max-width: 34rem;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.policy-editorial-title {
  margin: 18px 0 0;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.policy-editorial-body {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  max-width: 34ch;
}

.policy-editorial-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.92;
}

.policy-editorial-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 30px;
}

.policy-editorial-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 19, 30, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-editorial-visual {
  position: relative;
  min-height: 760px;
  overflow: visible;
}

.policy-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid rgba(12, 19, 30, 0.06);
  box-shadow: 0 28px 70px rgba(11, 17, 25, 0.1);
}

.policy-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.policy-photo-main {
  right: 0;
  top: 8px;
  width: min(43vw, 620px);
  height: 520px;
  z-index: 2;
}

.policy-photo-sub-a {
  left: 4%;
  top: 42px;
  width: min(17vw, 240px);
  height: 230px;
  z-index: 3;
}

.policy-photo-sub-b {
  left: 14%;
  bottom: 18px;
  width: min(24vw, 340px);
  height: 240px;
  z-index: 1;
}

.policy-editorial-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: min(16vw, 180px);
  height: min(16vw, 180px);
  background: rgba(227, 138, 74, 0.14);
  border-radius: 18px;
  z-index: 0;
}

.policy-editorial-visual::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 12%;
  width: min(12vw, 128px);
  height: min(12vw, 128px);
  border-radius: 999px;
  border: 1px solid rgba(12, 19, 30, 0.12);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  z-index: 0;
}

#news-list.section-soft {
  background: var(--bg);
  padding-top: clamp(96px, 11vw, 156px);
  padding-bottom: clamp(112px, 12vw, 176px);
  transition: background-color 0.18s linear, color 0.18s linear;
}

.news-shell {
  width: min(1480px, calc(100vw - 56px));
  margin: 0 auto;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.updates-panel {
  width: 100%;
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 0 0 clamp(44px, 5vw, 68px);
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
  transition: border-color 0.18s linear;
}

.news-display-title {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(3.6rem, 8.8vw, 8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: color 0.18s linear;
}

.updates-grid .news-display-title {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  letter-spacing: -0.035em;
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  align-self: center;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s linear;
}

.news-all-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  flex: 0 0 auto;
}

.news-all-link span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 40px;
  border-radius: 999px;
  background: rgba(200, 131, 78, 0.12);
  border: 1px solid rgba(200, 131, 78, 0.22);
}

.news-stream {
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
  transition: border-color 0.18s linear;
}

#home-news > .container,
#services > .container,
.top-trust-section > .container {
  width: min(1480px, calc(100vw - 56px));
}

#news-list > .container {
  width: min(1560px, calc(100vw - 40px));
}

#evolution.section-accent {
  background: #ffffff;
  color: var(--ink);
  padding: clamp(72px, 7vw, 104px) 0 clamp(88px, 8vw, 124px);
  overflow: visible;
  position: relative;
}

#evolution.section-accent,
#evolution.section-accent p,
#evolution.section-accent strong,
#evolution.section-accent a,
#evolution.section-accent h2,
#evolution.section-accent h3 {
  color: var(--ink);
}

#evolution.section-accent .eyebrow {
  color: rgba(17, 23, 33, 0.54);
}

#evolution .evolution-shell {
  width: min(100vw - 48px, 1540px);
  margin: 0 auto;
}

.evolution-stage {
  display: grid;
  grid-template-columns: minmax(620px, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(44px, 4.6vw, 90px);
  align-items: center;
}

.evolution-panel {
  --evolution-bleed-left: calc((100vw - min(calc(100vw - 48px), 1540px)) / -2);
  position: relative;
  min-height: clamp(640px, 56vw, 820px);
  padding: clamp(42px, 3.8vw, 56px);
  display: grid;
  align-content: start;
  gap: clamp(20px, 2vw, 26px);
}

.evolution-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(96px, 8vw, 152px);
  bottom: clamp(118px, 11vw, 168px);
  left: var(--evolution-bleed-left);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.35px) 0 0 / 12px 12px,
    radial-gradient(circle at 62% 48%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.45px) 0 0 / 18px 18px,
    linear-gradient(112deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.03) 52%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 100%) 0 0 / 100% 7px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 100%) 0 0 / 9px 100%,
    linear-gradient(145deg, #132030 0%, #0f1a28 46%, #101a27 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -18px 40px rgba(7, 12, 18, 0.16);
  z-index: 0;
}

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

#evolution.section-accent .evolution-display-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(4.6rem, 8.5vw, 8.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #111721;
  max-width: 8ch;
}

.evolution-panel-image {
  width: min(100%, 760px);
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border-radius: 28px;
  margin-left: clamp(84px, 8vw, 132px);
  margin-top: clamp(12px, 1.8vw, 22px);
  box-shadow: 0 28px 68px rgba(17, 23, 33, 0.16);
}

.evolution-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.02);
}

.evolution-info {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  align-content: center;
  align-self: stretch;
  padding: clamp(8px, 1vw, 12px) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.evolution-info-intro {
  display: grid;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 23, 33, 0.12);
}

.evolution-info-index {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--lime-deep);
}

.evolution-heading-copy {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.42rem, 2vw, 1.92rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(17, 23, 33, 0.96);
  letter-spacing: -0.02em;
}

.evolution-summary-text {
  margin: 0;
  color: rgba(31, 42, 58, 0.74);
  font-size: 1rem;
  line-height: 1.98;
  max-width: 32rem;
}

.evolution-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-top: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.evolution-link:hover {
  color: var(--lime);
  transform: translateX(2px);
}

.evolution-link span:last-child {
  color: var(--lime);
}

.evolution-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: clamp(2px, 0.6vw, 8px);
  max-width: 100%;
}

.evolution-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 0;
  align-content: start;
  padding: 16px 0 0;
  border-top: 1px solid rgba(17, 23, 33, 0.12);
  position: relative;
  background: transparent;
}

.evolution-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 40px;
  height: 1px;
  background: rgba(200, 131, 78, 0.5);
}

.evolution-point-index {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--lime-deep);
}

.evolution-point-copy {
  display: grid;
  gap: 6px;
}

.evolution-point-copy strong {
  color: var(--lime-deep);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.52;
}

.evolution-point-copy p {
  margin: 0;
  color: rgba(31, 42, 58, 0.72);
  font-size: 0.96rem;
  line-height: 1.8;
}


.section-dark {
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.92), rgba(23, 23, 26, 0.88));
  color: #fff;
}

.section-dark .eyebrow,
.section-dark .section-lead,
.section-dark .check-list li,
.section-dark .section-title {
  color: #fff;
}

.section-dark-core {
  position: relative;
  overflow: hidden;
}

.section-dark-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(211, 244, 63, 0.12), transparent 24%),
    linear-gradient(90deg, transparent, rgba(211, 244, 63, 0.06), transparent);
  pointer-events: none;
}

.section-dark-core .split-copy {
  position: relative;
}

.section-dark-core .split-copy::before {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--lime), rgba(211, 244, 63, 0.08));
  box-shadow: 0 0 18px rgba(211, 244, 63, 0.2);
}

.section-dark-core .eyebrow {
  color: rgba(211, 244, 63, 0.84);
}

.section-dark-core .section-title {
  text-wrap: balance;
}

.section-dark-core .check-list li::before {
  width: 12px;
  height: 12px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(211, 244, 63, 0.12);
}

.section-dark-core .split-media {
  position: relative;
}

.section-dark-core .split-media::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  border-right: 2px solid rgba(211, 244, 63, 0.82);
  border-bottom: 2px solid rgba(211, 244, 63, 0.82);
  border-radius: 0 0 20px 0;
  box-shadow: 0 0 22px rgba(211, 244, 63, 0.14);
}

.section-accent {
  position: relative;
  z-index: 1;
  background: var(--surface-soft);
}

body,
.site-main,
.page-hero,
.top-story-shell,
.lower-story-shell,
#services,
.top-trust-section,
#services-page-business {
  background: #ffffff !important;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.section-title {
  font-size: clamp(1.58rem, 2.9vw, 2.46rem);
  max-width: 19ch;
  line-height: 1.22;
}

.section-lead {
  margin: 24px 0 0;
  max-width: 64ch;
  font-size: 0.96rem;
  line-height: 1.96;
  font-weight: 500;
}

.three-up,
.service-grid,
.card-grid,
.card-grid-compact,
.company-grid,
.two-column {
  display: grid;
  gap: 22px;
}

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

.line-list {
  display: grid;
}

.line-list-strengths {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 36px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.line-item {
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.line-item h2 {
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(1.18rem, 1.78vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.line-item p:last-child {
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.products-shell {
  width: min(1480px, calc(100vw - 56px));
  margin: 0 auto;
}

#services-page-business {
  background: var(--bg);
}

#services-page-business .eyebrow,
#services-page-business .products-display-title,
#services-page-business .products-description,
#services-page-business .products-description-sub,
#services-page-business .service-row-index,
#services-page-business .service-row-body h3,
#services-page-business .service-row-body p,
#services-page-business .service-row-link {
  color: var(--ink);
}

#services-page-business .products-description-sub,
#services-page-business .service-row-body p,
#services-page-business .service-row-note {
  color: var(--ink-soft);
}

#services-page-business .service-row-link:hover,
#services-page-business .service-row-link:focus-visible {
  color: var(--ink);
}

#services-page-business .service-row-featured .service-row-index,
#services-page-business .service-row-featured .service-row-body h3,
#services-page-business .service-row-featured .service-row-body p,
#services-page-business .service-row-featured .service-row-note,
#services-page-business .service-row-featured .service-row-link {
  color: var(--bg);
}

#services-page-business .service-row-featured:hover .service-row-index,
#services-page-business .service-row-featured:hover .service-row-body h3,
#services-page-business .service-row-featured:hover .service-row-body p,
#services-page-business .service-row-featured:hover .service-row-note,
#services-page-business .service-row-featured:hover .service-row-link,
#services-page-business .service-row-featured:focus-within .service-row-index,
#services-page-business .service-row-featured:focus-within .service-row-body h3,
#services-page-business .service-row-featured:focus-within .service-row-body p,
#services-page-business .service-row-featured:focus-within .service-row-note,
#services-page-business .service-row-featured:focus-within .service-row-link {
  color: rgba(17, 20, 24, 0.96);
}

.products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 36px;
  align-items: end;
  padding: 0 0 clamp(44px, 5vw, 68px);
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.products-display-title {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.products-copy {
  position: relative;
  display: grid;
  gap: 12px;
  align-self: center;
  padding-left: 30px;
}

.products-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(200, 131, 78, 0.18);
  border: 1px solid rgba(200, 131, 78, 0.44);
}

.products-description {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.45vw, 1.3rem);
  font-weight: 500;
  line-height: 1.55;
}

.products-description-sub {
  padding-left: 18px;
  border-left: 1px solid rgba(200, 131, 78, 0.34);
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 450;
  line-height: 1.85;
}

.service-rail,
.work-list {
  position: relative;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.service-rail {
  padding-right: clamp(280px, 26vw, 420px);
}

.service-row,
.work-row {
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.service-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.service-row-main {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.service-row-index {
  margin: 0;
  padding-top: 0.08em;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(29, 35, 39, 0.54);
}

.service-row-index::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 14px;
  background: rgba(200, 131, 78, 0.34);
}

.service-row-body {
  display: grid;
  gap: 8px;
}

.service-row-body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.08rem, 1.38vw, 1.24rem);
  font-weight: 600;
  line-height: 1.45;
}

.service-row-body p {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.9;
}

.service-row-note {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 500;
}

.service-row-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.18s ease;
}

.service-row-link span {
  display: inline-block;
  transition: transform 0.18s ease;
}

.service-row-link:hover {
  color: var(--lime-deep);
}

.service-row-link:hover span {
  transform: translateX(4px);
}

.service-row-featured {
  position: relative;
  margin: 0;
  padding: 28px 0;
  border-bottom-color: transparent;
  background: transparent;
  overflow: visible;
  z-index: 1;
}

.service-row-featured::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: calc(-100vw + 100%);
  width: 100vw;
  background: rgba(11, 17, 25, 0.9);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: background 0.22s ease;
}

.service-row-featured.is-visible::before {
  animation: serviceFeaturedSweep 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

@keyframes serviceFeaturedSweep {
  to {
    transform: scaleX(1);
  }
}

.service-row-featured .service-row-index {
  color: rgba(236, 235, 234, 0.4);
}

.service-row-featured .mini-label {
  color: rgba(236, 235, 234, 0.76);
}

.service-row-featured .service-row-body h3 {
  color: var(--bg);
}

.service-row-featured .service-row-body p {
  color: rgba(236, 235, 234, 0.82);
}

.service-row-featured .service-row-link {
  color: var(--bg);
}

.service-row-featured:hover::before,
.service-row-featured:focus-within::before {
  background: var(--lime);
}

.service-row-featured:hover .service-row-index,
.service-row-featured:focus-within .service-row-index {
  color: rgba(29, 35, 39, 0.34);
}

.service-row-featured:hover .mini-label,
.service-row-featured:focus-within .mini-label,
.service-row-featured:hover .service-row-body h3,
.service-row-featured:focus-within .service-row-body h3,
.service-row-featured:hover .service-row-body p,
.service-row-featured:focus-within .service-row-body p,
.service-row-featured:hover .service-row-link,
.service-row-featured:focus-within .service-row-link {
  color: var(--ink);
}

.services-hologram-column {
  position: absolute;
  top: 50%;
  right: clamp(4px, 1.2vw, 18px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(300px, 27vw, 440px);
  pointer-events: none;
}

.services-hologram-stage {
  width: min(100%, 440px);
  aspect-ratio: 1 / 1;
}

#services-page-business .hologram-canvas {
  opacity: 1;
  filter: saturate(1.05) contrast(1.28);
}

.feature-card,
.service-card,
.post-card,
.note-card,
.empty-card {
  padding: 28px;
}

.feature-card h2,
.service-card h3,
.post-card h2,
.post-card h3,
.note-card h3,
.empty-card h2,
.empty-card h3,
.split-panel h2,
.split-panel h3,
.panel-card h2,
.mini-list h4 {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.3;
}

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

.service-card {
  position: relative;
  min-height: 240px;
}

.service-card-detail {
  display: flex;
  flex-direction: column;
}

.service-card-detail .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.services-intro-section {
  padding-top: 36px;
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.92), rgba(23, 23, 26, 0.88));
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}


.services-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(223, 255, 25, 0.08), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.services-intro-grid {
  align-items: start;
  position: relative;
  z-index: 1;
}

.services-intro-grid .eyebrow,
.services-intro-grid .section-title,
.services-intro-grid .rich-text p,
.services-intro-grid .stacked-points strong {
  color: #ffffff;
}

.services-intro-grid .eyebrow {
  color: rgba(223, 255, 25, 0.88);
}

.services-intro-grid .rich-text p,
.services-intro-grid .stacked-points span {
  color: rgba(239, 245, 248, 0.76);
}

.services-intro-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 52px rgba(8, 12, 15, 0.18);
  backdrop-filter: blur(10px);
}

.services-intro-panel .stacked-points div {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ai-dx-intro-section {
  padding-top: 48px;
}

.ai-dx-intro-section .services-intro-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 36px;
}

.ai-dx-intro-section .rich-text p,
.ai-dx-intro-section .check-list li {
  color: rgba(245, 248, 250, 0.86);
}

.ai-dx-intro-section .check-list li::before {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(223, 255, 25, 0.1);
}

.ai-dx-summary-panel {
  position: relative;
  padding: 34px 34px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(223, 255, 25, 0.34);
  box-shadow: 0 26px 56px rgba(8, 12, 15, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.ai-dx-intro-section .split-copy {
  position: relative;
}

.ai-dx-intro-section .split-copy::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  width: clamp(140px, 22vw, 240px);
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 255, 25, 0), rgba(223, 255, 25, 0.72), rgba(223, 255, 25, 0));
  opacity: 0.72;
}

.ai-dx-panel-figure {
  margin: 0 0 24px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 36px rgba(8, 12, 15, 0.18);
}

.ai-dx-panel-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ai-dx-panel-figure-secondary {
  margin-bottom: 22px;
}

.ai-dx-summary-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(160px, 42%);
  height: 2px;
  background: linear-gradient(90deg, rgba(223, 255, 25, 0.86), rgba(223, 255, 25, 0));
  box-shadow: 0 0 16px rgba(223, 255, 25, 0.22);
}

.ai-dx-summary-panel .eyebrow {
  margin-bottom: 18px;
}

.ai-dx-summary-panel .stacked-points {
  gap: 16px;
}

.ai-dx-summary-panel .stacked-points div {
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-dx-summary-panel .stacked-points strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.ai-dx-summary-panel .stacked-points strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(223, 255, 25, 0.28);
}

.ai-dx-summary-panel .stacked-points span {
  color: rgba(239, 245, 248, 0.74);
  line-height: 1.7;
}

.ai-dx-pricing-section {
  padding-top: 84px;
}

.ai-dx-pricing-section .section-heading {
  max-width: 760px;
}

.ai-dx-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.ai-dx-plan-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.08);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(24, 29, 33, 0.035);
}

.ai-dx-plan-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(132px, 44%);
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 35, 39, 0.22), rgba(29, 35, 39, 0));
}

.ai-dx-plan-card::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 26px;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 35, 39, 0), rgba(29, 35, 39, 0.18));
}

.ai-dx-plan-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.34rem, 1.55vw, 1.68rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.006em;
  color: var(--ink);
}

.ai-dx-plan-card > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.82;
}

.ai-dx-plan-card .check-list {
  margin-top: 0;
}

.ai-dx-plan-card .mini-label {
  color: rgba(29, 35, 39, 0.56);
}

.ai-dx-plan-card-featured {
  background:
    linear-gradient(135deg, rgba(7, 7, 9, 0.96) 0%, rgba(23, 23, 26, 0.92) 100%);
  border-color: rgba(223, 255, 25, 0.16);
  box-shadow: 0 26px 60px rgba(8, 12, 15, 0.24);
}

.ai-dx-plan-card-featured::before {
  width: min(160px, 50%);
  background: linear-gradient(90deg, rgba(223, 255, 25, 0.88), rgba(223, 255, 25, 0));
  box-shadow: 0 0 20px rgba(223, 255, 25, 0.2);
}

.ai-dx-plan-card-featured .mini-label,
.ai-dx-plan-card-featured h3,
.ai-dx-plan-card-featured > p,
.ai-dx-plan-card-featured .check-list li {
  color: #ffffff;
}

.ai-dx-plan-card-featured .mini-label {
  color: rgba(223, 255, 25, 0.9);
}

.ai-dx-plan-card-featured .check-list li::before {
  background: var(--lime);
}

.ai-dx-pricing-note {
  margin: 22px 0 0;
  color: rgba(29, 35, 39, 0.58);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ai-dx-training-section .split-layout {
  align-items: start;
}

.ai-dx-training-section {
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.96) 0%, rgba(23, 23, 26, 0.92) 100%);
}

.ai-dx-training-section .section-lead,
.ai-dx-training-section .split-copy p:not(.eyebrow) {
  color: rgba(245, 248, 250, 0.8);
}

.ai-dx-training-section .split-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(223, 255, 25, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 52px rgba(8, 12, 15, 0.22);
}

.ai-dx-training-section .split-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(148px, 46%);
  height: 2px;
  background: linear-gradient(90deg, rgba(223, 255, 25, 0.9), rgba(223, 255, 25, 0));
  box-shadow: 0 0 18px rgba(223, 255, 25, 0.18);
}

.ai-dx-training-section .split-copy {
  position: relative;
}

.ai-dx-training-section .split-copy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: clamp(132px, 20vw, 220px);
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 255, 25, 0.82), rgba(223, 255, 25, 0));
  opacity: 0.8;
}

.ai-dx-training-section .stacked-points div {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ai-dx-training-section .stacked-points strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.ai-dx-training-section .stacked-points strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(223, 255, 25, 0.3);
}

.ai-dx-training-section .stacked-points span {
  color: rgba(239, 245, 248, 0.74);
}

.ai-dx-development-section .split-layout,
.ai-dx-blog-section .split-layout {
  align-items: start;
}

.ai-dx-development-panel,
.ai-dx-blog-panel {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.09);
  box-shadow: 0 14px 30px rgba(24, 29, 33, 0.035);
}

.ai-dx-development-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ai-dx-development-panel::before,
.ai-dx-blog-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(136px, 42%);
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 35, 39, 0.26), rgba(29, 35, 39, 0));
}

.ai-dx-development-panel::before {
  display: none;
}

.ai-dx-development-panel h3,
.ai-dx-development-panel h4,
.ai-dx-blog-panel h3,
.ai-dx-blog-panel h4 {
  color: var(--ink);
}

.ai-dx-development-panel .mini-list article,
.ai-dx-blog-panel .mini-list article {
  border-top-color: rgba(29, 35, 39, 0.1);
}

.ai-dx-development-visual {
  position: relative;
  margin: 0;
  min-height: clamp(420px, 46vw, 560px);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(7, 7, 9, 0.08);
  box-shadow: 0 30px 64px rgba(24, 29, 33, 0.1);
}

.ai-dx-development-visual img {
  display: block;
  width: 100%;
  min-height: inherit;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ai-dx-development-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(78%, 360px);
  max-width: calc(100% - 48px);
  padding: 22px 24px 20px;
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.96) 0%, rgba(23, 23, 26, 0.92) 100%);
  border: 1px solid rgba(223, 255, 25, 0.16);
  border-radius: 0;
  box-shadow: 0 22px 44px rgba(8, 12, 15, 0.24);
}

.ai-dx-development-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(140px, 50%);
  height: 2px;
  background: linear-gradient(90deg, rgba(223, 255, 25, 0.88), rgba(223, 255, 25, 0));
}

.ai-dx-development-note .eyebrow {
  margin-bottom: 14px;
}

.ai-dx-development-note .mini-list {
  gap: 0;
}

.ai-dx-development-note .mini-list article {
  display: grid;
  gap: 6px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-dx-development-note .mini-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.ai-dx-development-note h4 {
  color: #ffffff;
}

.ai-dx-development-note p {
  color: rgba(239, 245, 248, 0.74);
}

.ai-dx-blog-section .split-copy {
  position: relative;
}

.ai-dx-blog-section .split-copy::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  width: clamp(132px, 18vw, 210px);
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 35, 39, 0), rgba(29, 35, 39, 0.22));
}

.ai-dx-development-panel .mini-list p,
.ai-dx-blog-panel .mini-list p,
.ai-dx-blog-panel > p {
  color: var(--ink-soft);
}

.ai-dx-page-hero {
  position: relative;
  padding-bottom: clamp(54px, 6vw, 86px);
  border-bottom: 1px solid rgba(29, 35, 39, 0.08);
  background:
    linear-gradient(90deg, rgba(227, 138, 74, 0.1), transparent 34%),
    #ffffff;
}

.ai-dx-page-hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 0;
  width: min(280px, 36vw);
  height: 4px;
  background: var(--lime);
}

.ai-dx-editorial-section {
  padding-top: clamp(44px, 5vw, 76px);
}

.ai-dx-editorial-shell {
  width: min(1480px, calc(100vw - 56px));
}

.ai-dx-editorial-photo {
  height: clamp(460px, 48vw, 700px);
  min-height: 0;
  border: 1px solid rgba(29, 35, 39, 0.08);
  box-shadow: none;
}

.ai-dx-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(0.97) brightness(0.98);
}

.ai-dx-shape-square {
  background: rgba(154, 177, 194, 0.26);
}

.ai-dx-shape-circle {
  background: rgba(227, 138, 74, 0.24);
}

.ai-dx-editorial-copy-group {
  max-width: 38ch;
}

.ai-dx-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.ai-dx-inline-links .about-editorial-link {
  margin-top: 0;
}

.ai-dx-link-secondary {
  color: var(--ink);
  border-color: rgba(29, 35, 39, 0.16);
  background: #ffffff;
  box-shadow: none;
}

.ai-dx-link-secondary:hover {
  color: var(--ink);
  border-color: rgba(29, 35, 39, 0.22);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 23, 33, 0.06);
}

.ai-dx-link-secondary span:last-child {
  color: var(--lime);
}

.ai-dx-plans-section {
  padding-top: clamp(28px, 3vw, 46px);
}

.ai-dx-plans-section .about-values-title {
  max-width: 14ch;
}

.ai-dx-plan-list {
  align-items: start;
}

.ai-dx-plan-item {
  align-items: start;
}

.ai-dx-plan-item > div {
  display: grid;
  gap: 12px;
}

.ai-dx-plan-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.18em 0.72em;
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #9b4a08;
  background: rgba(227, 138, 74, 0.14);
  border: 1px solid rgba(227, 138, 74, 0.24);
  border-radius: 999px;
}

.ai-dx-plan-item strong {
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  line-height: 1.35;
}

.ai-dx-plan-item .about-value-index {
  margin-top: 4px;
  color: rgba(29, 35, 39, 0.56);
}

.ai-dx-plan-item > div > p:nth-of-type(2) {
  font-size: 0.97rem;
  line-height: 1.82;
}

.ai-dx-plan-points {
  margin-top: 0;
  padding-top: 2px;
}

.ai-dx-plan-points li::before {
  background: var(--lime);
}

.ai-dx-plan-points li {
  font-size: 0.95rem;
}

.ai-dx-plan-points li + li {
  margin-top: 2px;
}

.ai-dx-pricing-note {
  max-width: 76ch;
}

.ai-dx-training-section {
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}

.ai-dx-training-fullbleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(780px, 86vh, 1080px);
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.ai-dx-training-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.ai-dx-training-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.ai-dx-training-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.72) 0%, rgba(8, 12, 18, 0.54) 34%, rgba(8, 12, 18, 0.22) 60%, rgba(8, 12, 18, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.18) 0%, rgba(8, 12, 18, 0.36) 100%);
}

.ai-dx-training-copy-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
}

.ai-dx-training-copy {
  position: relative;
  width: min(100%, clamp(360px, 34vw, 520px));
  display: grid;
  gap: 16px;
  padding: clamp(28px, 3.6vw, 44px);
  background: rgba(9, 13, 19, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ai-dx-training-copy .eyebrow {
  color: rgba(242, 248, 251, 0.76);
}

.ai-dx-training-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(1.66rem, 2.5vw, 2.52rem);
  line-height: 1.24;
  font-weight: 600;
}

.ai-dx-training-copy > p {
  margin: 0;
  color: rgba(244, 249, 251, 0.9);
  line-height: 1.84;
  max-width: 32rem;
}

.ai-dx-training-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.ai-dx-training-item {
  display: grid;
  gap: 8px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.ai-dx-training-item strong {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.42;
}

.ai-dx-training-item p:last-child {
  margin: 0;
  color: rgba(244, 249, 251, 0.82);
  font-size: 0.96rem;
  line-height: 1.78;
}

.ai-dx-course-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.2em 0.75em;
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
  background: rgba(231, 126, 63, 0.28);
  border: 1px solid rgba(231, 126, 63, 0.38);
  border-radius: 999px;
}

.ai-dx-training-copy .ai-dx-course-price {
  font-size: clamp(1.04rem, 1.38vw, 1.2rem);
}

@media (max-width: 840px) {
  .contact-page-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-page-copy {
    position: static;
  }

  .contact-page-form-panel {
    padding: 24px 18px;
  }

  .contact-page-form .wpcf7 input[type="submit"] {
    width: 100%;
  }

  .ai-dx-training-fullbleed {
    min-height: 760px;
  }

  .ai-dx-training-overlay {
    background:
      linear-gradient(180deg, rgba(8, 12, 18, 0.32) 0%, rgba(8, 12, 18, 0.7) 100%);
  }

  .ai-dx-training-copy-wrap {
    align-items: flex-end;
    padding: 18px;
  }

  .ai-dx-training-copy {
    width: 100%;
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
}

.ai-dx-development-section {
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

.ai-dx-development-panel {
  display: grid;
  gap: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.08);
  box-shadow: 0 14px 30px rgba(24, 29, 33, 0.035);
}

.ai-dx-development-visual {
  margin: 0 0 22px;
  min-height: auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(29, 35, 39, 0.08);
  box-shadow: none;
  background: #ffffff;
}

.ai-dx-development-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ai-dx-development-list {
  gap: 0;
}

.ai-dx-development-list article {
  display: grid;
  gap: 6px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.ai-dx-development-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.ai-dx-blog-section {
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

.ai-dx-blog-panel {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.08);
  box-shadow: 0 14px 30px rgba(24, 29, 33, 0.035);
}

.ai-dx-blog-panel .mini-list article {
  padding: 16px 0;
}

.ai-dx-blog-panel .mini-list article:first-child {
  padding-top: 0;
}

.ai-dx-blog-panel .mini-list p {
  color: var(--ink-soft);
}

.ai-dx-cta-section .cta-panel {
  color: var(--ink);
}

.ai-dx-cta-section .cta-panel h2,
.ai-dx-cta-section .cta-panel p {
  color: var(--ink);
}

.ai-dx-cta-section .cta-panel .eyebrow {
  color: var(--lime-deep);
}

.ai-dx-cta-section .btn-primary {
  min-width: 200px;
  background: var(--lime);
  border-color: var(--lime);
  color: #1d2327;
  text-shadow: none;
  box-shadow: 0 12px 26px rgba(227, 138, 74, 0.16);
}

.ai-dx-cta-section .btn-primary:hover {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
  color: #1d2327;
}

.services-list-section {
  padding-top: 88px;
}

.services-list-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: start;
}

.services-list-copy {
  position: sticky;
  top: 118px;
}

.split-layout-reverse .split-copy {
  order: 2;
}

.split-layout-reverse .split-media {
  order: 1;
}

.split-panel {
  padding: 32px;
}

.about-intro-grid,
.about-dx-grid,
.about-closing-grid {
  align-items: start;
}

.about-page-intro-section {
  position: relative;
  z-index: 3;
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(72px, 7vw, 112px);
  background: var(--bg);
}

.about-editorial-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 5vw, 74px);
  padding-bottom: clamp(64px, 7vw, 112px);
  background: var(--bg);
}

@keyframes aboutEditorialMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.about-editorial-shell {
  width: min(1480px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  min-height: clamp(500px, 54vw, 700px);
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
  position: relative;
  z-index: 1;
}

.about-editorial-label {
  align-self: start;
  padding-top: clamp(18px, 3vw, 40px);
}

.about-editorial-overline {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.34rem, 2.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.about-editorial-stage {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 760px);
}

.about-editorial-shape {
  position: absolute;
  pointer-events: none;
}

.about-editorial-shape-square {
  top: -34px;
  right: -34px;
  width: clamp(92px, 9vw, 148px);
  height: clamp(92px, 9vw, 148px);
  background: rgba(154, 177, 194, 0.28);
}

.about-editorial-shape-circle {
  left: -22px;
  bottom: 32px;
  width: clamp(54px, 5vw, 86px);
  height: clamp(54px, 5vw, 86px);
  border-radius: 999px;
  background: rgba(183, 128, 89, 0.24);
}

.about-editorial-photo {
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(460px, 48vw, 720px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.08);
  box-shadow: none;
}

.about-editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.96) brightness(0.96);
}

.about-editorial-copy {
  align-self: center;
}

.about-editorial-copy-group {
  display: grid;
  gap: 14px;
  max-width: 34ch;
}

.about-editorial-card {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  background: #ffffff;
  border: 1px solid rgba(221, 106, 18, 0.28);
  box-shadow: 0 10px 28px rgba(17, 23, 33, 0.04);
}

.about-editorial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 1px;
  height: calc(100% - 56px);
  background: rgba(221, 106, 18, 0.42);
}

.about-editorial-card::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 64px;
  height: 1px;
  background: rgba(221, 106, 18, 0.52);
}

.about-editorial-line {
  margin: 0;
  font-size: clamp(1.02rem, 1.42vw, 1.24rem);
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.about-editorial-body {
  margin-top: 8px;
  font-size: 0.98rem;
  font-weight: 450;
  line-height: 1.94;
  color: var(--ink-soft);
}

.about-editorial-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  color: #fdfbf7;
  border: 1px solid rgba(11, 17, 25, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 17, 25, 0.96), rgba(26, 36, 49, 0.96));
  box-shadow: 0 10px 22px rgba(11, 17, 25, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.about-editorial-link:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(11, 17, 25, 0.98);
  background: linear-gradient(135deg, rgba(14, 22, 32, 0.98), rgba(30, 42, 58, 0.98));
  box-shadow: 0 14px 26px rgba(11, 17, 25, 0.16);
}

.about-editorial-link span:last-child {
  color: var(--lime);
}

.about-values-section {
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(84px, 8vw, 128px);
  background: var(--bg);
}

.about-values-shell {
  width: min(1480px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 3vw, 42px);
  position: relative;
}

.about-values-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: end;
  padding-bottom: clamp(24px, 3vw, 34px);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.about-values-title {
  margin: 12px 0 0;
  max-width: 15ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.about-values-copy {
  max-width: 62ch;
  margin-left: auto;
}

.about-values-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.9;
}

.about-values-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
}

.about-value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.12);
}

.about-value-index {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(29, 35, 39, 0.44);
}

.about-value-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

.about-value-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.about-dx-editorial-section {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg);
}

.about-dx-editorial-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
}

.about-dx-editorial-stage {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #0b1119;
}

.about-dx-shape {
  position: absolute;
  pointer-events: none;
}

.about-dx-shape-square {
  right: clamp(42px, 4vw, 84px);
  top: clamp(42px, 4vw, 78px);
  width: clamp(112px, 10vw, 168px);
  height: clamp(112px, 10vw, 168px);
  background: rgba(154, 177, 194, 0.16);
}

.about-dx-shape-line {
  left: clamp(48px, 5vw, 84px);
  top: clamp(42px, 4vw, 62px);
  width: 168px;
  height: 1px;
  background: rgba(183, 128, 89, 0.62);
}

.about-dx-editorial-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
  background: #0b1119;
  border-radius: 0;
  box-shadow: none;
}

.about-dx-editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.44) saturate(0.9) contrast(1.03);
}

.about-dx-editorial-copy {
  position: absolute;
  inset: clamp(52px, 5vw, 88px) clamp(56px, 5vw, 96px) clamp(52px, 5vw, 84px) auto;
  z-index: 2;
  display: grid;
  gap: 26px;
  width: min(100%, 560px);
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-dx-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-dx-line-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-dx-line-item strong {
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.about-dx-line-item span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.about-dx-editorial-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.about-dx-editorial-copy .section-title {
  color: #ffffff;
  max-width: 14ch;
}

.about-dx-editorial-copy .about-rich p {
  color: rgba(255, 255, 255, 0.8);
}

.about-dx-link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(11, 17, 25, 0.24);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-dx-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.about-dx-links .about-dx-link {
  margin-top: 0;
}

.about-dx-link-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.about-dx-link:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 138, 43, 0.58);
  background: rgba(11, 17, 25, 0.36);
}

.about-dx-link span:last-child {
  color: var(--lime);
}

@media (max-width: 1100px) {
  .about-editorial-shell {
    width: min(1320px, calc(100vw - 36px));
    grid-template-columns: minmax(140px, 0.2fr) minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: 28px;
    min-height: auto;
  }

  .about-editorial-photo {
    min-height: 420px;
  }

  .about-dx-editorial-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .about-dx-editorial-photo {
    min-height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 820px) {
  .about-editorial-shell {
    width: min(1120px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .about-dx-editorial-shell {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .about-editorial-label {
    padding-top: 0;
  }

  .about-editorial-overline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .about-editorial-stage,
  .about-editorial-photo {
    width: 100%;
  }

  .about-editorial-photo {
    min-height: 380px;
  }

  .about-dx-editorial-copy {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 32px 20px 36px;
    margin-top: 0;
    background: #0b1119;
  }

  .about-editorial-card::before {
    top: 22px;
    height: calc(100% - 44px);
  }

  .about-editorial-copy-group {
    max-width: 100%;
  }

  .about-dx-editorial-photo {
    position: relative;
    inset: auto;
    min-height: 52svh;
    border-radius: 0;
    box-shadow: none;
  }

  .about-editorial-shape-square,
  .about-dx-shape-square {
    width: 96px;
    height: 96px;
  }
}

.about-finale-shell {
  width: min(1480px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: center;
  min-height: clamp(320px, 32vw, 420px);
}

.about-finale-copy {
  position: relative;
}

.about-finale-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-finale-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-finale-item strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
}

.about-finale-item span {
  color: rgba(239, 245, 248, 0.72);
  line-height: 1.82;
}

.ai-cases-section {
  background: #ffffff;
  padding: 28px 0 96px;
}

.ai-cases-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34rem);
  gap: 28px 48px;
  align-items: end;
  margin-bottom: 28px;
}

.ai-cases-title {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.ai-cases-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.9;
  max-width: 32rem;
}

.ai-cases-carousel {
  position: relative;
  --ai-case-gap: 34px;
  --ai-case-width: calc((100% - (var(--ai-case-gap) * 2)) / 3);
  overflow: hidden;
  padding: 10px 0 0;
}

.ai-cases-track {
  display: flex;
  gap: var(--ai-case-gap);
  width: max-content;
  transition: transform 0.74s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ai-case-card {
  position: relative;
  flex: 0 0 var(--ai-case-width-px, var(--ai-case-width));
  min-width: 0;
  border: 1px solid rgba(17, 23, 33, 0.08);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
  transform-origin: center center;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-case-card:hover,
.ai-case-card:focus-within {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 18px 36px rgba(11, 17, 25, 0.09);
  border-color: rgba(17, 23, 33, 0.14);
}

.ai-case-card-image {
  margin: 0;
  aspect-ratio: 0.98 / 1;
  overflow: hidden;
  background: rgba(11, 17, 25, 0.08);
}

.ai-case-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-case-card:hover .ai-case-card-image img,
.ai-case-card:focus-within .ai-case-card-image img {
  transform: scale(1.03);
}

.ai-case-card-body {
  position: static;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 0 0;
  background: #ffffff;
  color: var(--ink);
}

.ai-case-card-label {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(17, 23, 33, 0.52);
}

.ai-case-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
}

.ai-case-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-page-intro-layout {
  width: min(1480px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.94fr) minmax(280px, 0.46fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  min-height: clamp(500px, 54vw, 700px);
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.about-page-intro-label,
.about-page-intro-photo,
.about-page-intro-copy {
  position: relative;
  z-index: 1;
}

.about-page-intro-label {
  align-self: start;
  padding-top: clamp(18px, 3vw, 40px);
}

.about-page-overline {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.34rem, 2.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.about-page-intro-photo {
  align-self: center;
  justify-self: center;
  width: min(100%, 760px);
  min-height: clamp(460px, 48vw, 720px);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(8, 10, 13, 0.1);
}

.about-page-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.96) brightness(0.96);
}

.about-page-intro-copy {
  align-self: center;
}

.about-page-copy-group {
  display: grid;
  gap: 12px;
  max-width: 30ch;
}

.about-page-copy-line {
  margin: 0;
  font-size: clamp(0.98rem, 1.36vw, 1.18rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-page-copy-body {
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.36vw, 1.18rem);
  font-weight: 500;
  line-height: 1.72;
  color: var(--ink-soft);
}

.about-rich {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.about-rich p {
  margin: 0;
  color: var(--ink-soft);
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 52px rgba(6, 10, 13, 0.22);
  position: relative;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-main {
  min-height: 480px;
}

.about-photo-main img {
  min-height: 480px;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 88px;
  height: 88px;
  border-right: 2px solid rgba(183, 221, 31, 0.72);
  border-bottom: 2px solid rgba(183, 221, 31, 0.72);
  border-radius: 0 0 22px 0;
  box-shadow: 0 0 20px rgba(183, 221, 31, 0.12);
  pointer-events: none;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 21, 24, 0.04), rgba(16, 21, 24, 0.16));
  pointer-events: none;
}

.about-floating-note {
  width: min(320px, 82%);
  margin: -86px 0 0 auto;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(211, 244, 63, 0.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px rgba(7, 12, 15, 0.24);
  position: relative;
  z-index: 2;
}

.about-floating-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.about-floating-note p {
  margin: 0;
  color: rgba(243, 248, 250, 0.8);
  line-height: 1.75;
}

.about-point-panel {
  display: grid;
  gap: 16px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px rgba(6, 10, 13, 0.22);
}

.about-point-panel div {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-point-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-point-panel strong {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-point-panel strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(211, 244, 63, 0.32);
}

.about-point-panel span {
  color: rgba(240, 245, 247, 0.78);
}

.about-boundary-accent {
  --about-boundary-height: clamp(36px, 4.2vw, 60px);
  --about-boundary-icon-size: clamp(18px, 2vw, 24px);
  position: absolute;
  left: 0;
  bottom: calc(var(--about-boundary-height) / -2);
  z-index: 5;
  width: clamp(320px, 42vw, 620px);
  height: var(--about-boundary-height);
  background: #dfff19;
  box-shadow: 0 18px 40px rgba(8, 10, 13, 0.22);
  transform-origin: left center;
  pointer-events: none;
}

.about-boundary-accent::before,
.about-boundary-accent::after {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
}

.about-boundary-accent::before {
  left: clamp(16px, 2vw, 24px);
  width: var(--about-boundary-icon-size);
  height: var(--about-boundary-icon-size);
  margin-top: calc(var(--about-boundary-icon-size) / -2);
  border-radius: 999px;
  background: rgba(20, 24, 27, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-boundary-accent::after {
  left: calc(clamp(16px, 2vw, 24px) + (var(--about-boundary-icon-size) / 2) - 4px);
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1.75px solid #dfff19;
  border-right: 1.75px solid #dfff19;
  transform: rotate(45deg);
}

.about-boundary-accent.scroll-accent {
  opacity: 1;
  transform:
    translate3d(calc((1 - var(--accent-progress, 0)) * -96px), 0, 0)
    scaleX(calc(0.28 + (var(--accent-progress, 0) * 0.72)));
}

.about-boundary-accent-right {
  left: auto;
  right: 0;
  top: calc(var(--about-boundary-height) / -2);
  bottom: auto;
  transform-origin: right center;
}

.about-boundary-accent-right::before {
  left: auto;
  right: clamp(16px, 2vw, 24px);
}

.about-boundary-accent-right.scroll-accent {
  transform:
    translate3d(calc((1 - var(--accent-progress, 0)) * 96px), 0, 0)
    scaleX(calc(0.28 + (var(--accent-progress, 0) * 0.72)));
}

.top-boundary-accent {
  --top-boundary-height: clamp(36px, 4.2vw, 60px);
  position: absolute;
  left: 0;
  top: calc(var(--top-boundary-height) / -2);
  z-index: 5;
  width: clamp(320px, 42vw, 620px);
  height: var(--top-boundary-height);
  background: #dfff19;
  box-shadow: 0 18px 40px rgba(8, 10, 13, 0.22);
  transform-origin: left center;
  pointer-events: none;
}

.top-boundary-accent::before,
.top-boundary-accent::after {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
}

.top-boundary-accent::before {
  right: clamp(16px, 2vw, 24px);
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  margin-top: calc(clamp(18px, 2vw, 24px) / -2);
  border-radius: 999px;
  background: rgba(20, 24, 27, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.top-boundary-accent::after {
  right: calc(clamp(16px, 2vw, 24px) + (clamp(18px, 2vw, 24px) / 2) - 4px);
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 1.75px solid #dfff19;
  border-bottom: 1.75px solid #dfff19;
  transform: rotate(45deg);
}

.top-boundary-accent.scroll-accent {
  opacity: 1;
  transform:
    translate3d(calc((1 - var(--accent-progress, 0)) * -220px), 0, 0)
    scaleX(calc(0.28 + (var(--accent-progress, 0) * 0.72)));
}

.top-trust-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: var(--bg);
  padding: clamp(72px, 8vw, 132px) 0 clamp(84px, 9vw, 144px);
}

.top-trust-section.is-about-pin {
  z-index: 2;
  will-change: transform;
}

.top-trust-section > .container {
  width: min(1480px, calc(100vw - 48px));
}

.top-trust-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1.02fr) minmax(280px, 0.46fr);
  gap: clamp(40px, 4.2vw, 72px);
  align-items: center;
  min-height: clamp(500px, 54vw, 700px);
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.top-trust-heading,
.top-trust-visuals,
.top-trust-description {
  position: relative;
  z-index: 2;
}

.top-trust-heading {
  align-self: start;
  padding-top: clamp(18px, 3vw, 42px);
  min-width: 0;
}

.top-trust-overline {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: clamp(1.34rem, 2.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.top-trust-overline::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(200, 131, 78, 0.86);
  box-shadow: 0 0 0 8px rgba(200, 131, 78, 0.08);
  flex: 0 0 auto;
}

.top-trust-visuals {
  align-self: center;
  justify-self: center;
  position: relative;
  width: min(100%, 860px);
  min-height: clamp(520px, 50vw, 720px);
}

.top-trust-image-bg,
.top-trust-image-main,
.top-trust-image-sub {
  position: absolute;
  overflow: hidden;
  background: #ffffff;
}

.top-trust-image-bg {
  right: 0;
  bottom: 0;
  width: clamp(220px, 30vw, 380px);
  height: clamp(200px, 24vw, 300px);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.58;
  filter: blur(18px);
  z-index: 1;
}

.top-trust-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  filter: saturate(0.9) brightness(0.84);
}

.top-trust-image-main {
  left: 12%;
  top: 8%;
  width: min(100%, 540px);
  height: clamp(340px, 34vw, 460px);
  z-index: 3;
  box-shadow: 0 28px 60px rgba(11, 17, 25, 0.1);
}

.top-trust-image-main img,
.top-trust-image-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.95) contrast(0.97) brightness(0.97);
}

.top-trust-image-sub {
  z-index: 2;
  box-shadow: 0 18px 40px rgba(11, 17, 25, 0.08);
}

.top-trust-image-sub-a {
  left: 0;
  top: 0;
  width: clamp(176px, 18vw, 260px);
  height: clamp(180px, 20vw, 270px);
}

.top-trust-image-sub-b {
  left: 4%;
  bottom: 0;
  width: clamp(220px, 24vw, 340px);
  height: clamp(150px, 16vw, 220px);
}

.top-trust-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.top-trust-shape-square {
  left: 24%;
  top: 0;
  width: clamp(90px, 9vw, 136px);
  height: clamp(90px, 9vw, 136px);
  background: rgba(154, 177, 194, 0.24);
}

.top-trust-shape-circle {
  right: 8%;
  top: 14%;
  width: clamp(56px, 5vw, 84px);
  height: clamp(56px, 5vw, 84px);
  border-radius: 999px;
  background: rgba(242, 138, 43, 0.18);
}

.top-trust-description {
  align-self: center;
  padding-bottom: 0;
  position: relative;
}

.top-trust-description::before {
  content: "";
  position: absolute;
  right: 6px;
  top: -18px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(200, 131, 78, 0.22);
  background: rgba(200, 131, 78, 0.06);
  z-index: 0;
}

.top-trust-copy-group {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 28ch;
}

.top-trust-copy-line {
  margin: 0;
  font-size: clamp(0.98rem, 1.36vw, 1.18rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.top-trust-copy-body {
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.36vw, 1.18rem);
  font-weight: 500;
  line-height: 1.72;
  color: var(--ink-soft);
}

.top-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 20, 24, 0.14);
  padding-bottom: 10px;
  transition: gap 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.top-trust-link:hover,
.top-trust-link:focus-visible {
  gap: 18px;
  color: var(--ink);
  border-color: rgba(17, 20, 24, 0.36);
}

.top-trust-link span:last-child {
  color: var(--lime-deep);
}

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

.lower-story-shell {
  position: relative;
  z-index: 4;
  background: var(--bg);
}

.lower-story-shell.is-about-overlap {
  will-change: transform;
}

@keyframes hero-word-underline {
  0% {
    opacity: 0;
    transform: translate3d(28px, 0, 0) scaleX(0.4);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

.about-boundary-accent-right::after {
  left: auto;
  right: calc(clamp(16px, 2vw, 24px) + (var(--about-boundary-icon-size) / 2) - 4px);
  transform: rotate(-135deg);
}

.about-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: start;
}

.about-statement-copy {
  display: grid;
  gap: 20px;
}

.about-statement-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.9;
}

.about-mini-points {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(24, 29, 33, 0.03);
}

.about-dx-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 42px;
}

.about-dx-grid .eyebrow,
.about-dx-grid .section-title {
  color: var(--ink);
}

.about-dx-grid .about-rich p {
  color: var(--ink-soft);
}

.about-dx-grid .about-photo {
  min-height: 360px;
}

.about-dx-grid .about-photo img {
  min-height: 360px;
}

.about-closing-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
}

.about-finale-section {
  margin-top: 0;
  padding-top: clamp(20px, 2.6vw, 36px);
  padding-bottom: clamp(48px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(11, 17, 25, 0.96) 0%, rgba(26, 36, 49, 0.92) 100%);
  overflow: visible;
}


.about-finale-section::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.about-finale-section .split-copy::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04));
  box-shadow: none;
}

.about-finale-section .eyebrow {
  color: rgba(241, 247, 249, 0.68);
}

.about-finale-section .section-title,
.about-finale-section .section-lead,
.about-finale-section .stacked-points strong {
  color: #ffffff;
}

.about-finale-section .section-lead,
.about-finale-section .stacked-points span {
  color: rgba(239, 245, 248, 0.72);
}

.about-finale-section .split-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(8, 12, 15, 0.16);
  backdrop-filter: blur(10px);
}

.about-finale-section .stacked-points div {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.message-page-intro-section {
  position: relative;
  z-index: 3;
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(72px, 7vw, 112px);
  background: var(--bg);
}

.message-page-intro-layout {
  width: min(1480px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.94fr) minmax(280px, 0.46fr);
  gap: clamp(34px, 4vw, 68px);
  align-items: center;
  min-height: clamp(500px, 54vw, 700px);
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.message-page-intro-label,
.message-page-intro-photo,
.message-page-intro-copy {
  position: relative;
  z-index: 1;
}

.message-page-intro-label {
  align-self: start;
  padding-top: clamp(18px, 3vw, 40px);
}

.message-page-overline {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.34rem, 2.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.message-page-intro-photo {
  align-self: center;
  justify-self: center;
  width: min(100%, 760px);
  min-height: clamp(500px, 50vw, 720px);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.message-page-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.96) brightness(0.96);
}

.message-page-intro-copy {
  display: grid;
  gap: 16px;
  align-self: center;
}

.message-page-copy-group {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  max-width: 30ch;
}

.message-page-copy-line {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.message-page-intro-copy .eyebrow {
  color: rgba(23, 23, 26, 0.56);
}

.message-role {
  margin: 4px 0 -6px;
  color: rgba(23, 23, 26, 0.56);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

.message-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.76rem, 2.4vw, 2.42rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.018em;
  color: var(--ink);
  text-wrap: balance;
}

.message-body {
  display: grid;
  gap: 18px;
}

.message-body p {
  margin: 0;
  color: var(--ink-soft);
}

.message-signoff {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.message-signoff span {
  color: rgba(23, 23, 26, 0.56);
}

.message-signoff strong {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

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

.message-pillars-editorial {
  gap: clamp(24px, 2.6vw, 38px);
  padding-top: 8px;
}

.message-pillar {
  padding: 20px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(29, 35, 39, 0.12);
  box-shadow: none;
}

.message-pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.message-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(227, 138, 74, 0.34);
  border-radius: 999px;
  color: var(--lime-deep);
  font-size: 0.92rem;
  line-height: 1;
  background: rgba(227, 138, 74, 0.08);
}

.message-pillar-meta {
  display: grid;
  gap: 2px;
}

.message-pillar-meta .eyebrow {
  margin: 0;
}

.message-pillar-sub {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 35, 39, 0.5);
}

.message-pillar h2 {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.26;
}

.message-pillar p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.message-profile-section {
  background: #ffffff;
  padding-top: 42px;
}

.message-profile-shell {
  width: min(1440px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 0.9fr) minmax(260px, 0.46fr);
  gap: 30px 42px;
  align-items: start;
  padding-top: 0;
  border-top: 0;
}

.message-profile-label,
.message-profile-copy,
.message-profile-aside {
  opacity: 1;
}

.message-profile-label {
  padding-top: 8px;
}

.message-profile-copy {
  max-width: 50rem;
}

.message-profile-copy .section-title {
  margin: 14px 0 0;
}

.message-profile-aside {
  align-self: stretch;
}

.message-profile-note {
  position: relative;
  padding: 26px 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 23, 33, 0.1);
}

.message-profile-note::before {
  content: "";
  display: block;
  width: 108px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--lime), rgba(227, 138, 74, 0));
}

.message-profile-note .eyebrow {
  color: var(--lime-deep);
}

.message-profile-note strong {
  color: var(--ink);
}

.message-profile-note span {
  color: var(--ink-soft);
}

.message-profile-note .stacked-points div {
  border-bottom-color: rgba(17, 23, 33, 0.08);
}

body.page-id-31 .message-profile-section,
body.page-id-31 .message-profile-shell,
body.page-id-31 .message-profile-copy,
body.page-id-31 .message-profile-note {
  background: #ffffff;
  color: var(--ink);
}

body.page-id-31 .message-profile-section .section-title,
body.page-id-31 .message-profile-section p,
body.page-id-31 .message-profile-section li,
body.page-id-31 .message-profile-section strong,
body.page-id-31 .message-profile-section a {
  color: inherit;
}

body.page-id-31 .message-profile-section .eyebrow,
body.page-id-31 .message-profile-section .message-page-overline {
  color: var(--lime-deep);
}

.company-overview-section {
  padding-top: 36px;
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.92), rgba(23, 23, 26, 0.88));
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}


.company-overview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(211, 244, 63, 0.08), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.company-overview-grid {
  align-items: start;
  gap: 42px;
  position: relative;
  z-index: 1;
  padding-top: 12px;
}

.company-lead {
  margin: 20px 0 0;
  max-width: 34ch;
  color: rgba(239, 245, 248, 0.76);
  font-size: 1.02rem;
  line-height: 1.9;
}

.company-overview-grid .eyebrow,
.company-overview-grid .section-title {
  color: #ffffff;
}

.company-overview-grid .eyebrow {
  color: rgba(211, 244, 63, 0.88);
}

.company-visual-stack {
  display: grid;
  gap: 18px;
  position: relative;
}

.company-photo {
  box-shadow: 0 24px 56px rgba(6, 10, 13, 0.24);
}

.company-photo-exterior {
  min-height: 320px;
}

.company-photo-exterior img {
  min-height: 320px;
}

.company-photo-main {
  min-height: 420px;
}

.company-photo-main img {
  min-height: 420px;
}

.company-photo-sub {
  min-height: 260px;
}

.company-photo-sub img {
  min-height: 260px;
}

.company-floating-note {
  width: min(320px, 82%);
  margin: -78px 0 0 auto;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(211, 244, 63, 0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px rgba(7, 12, 15, 0.22);
  position: relative;
  z-index: 2;
}

.company-note-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(211, 244, 63, 0.9);
}

.company-floating-note p {
  margin: 0;
  color: rgba(243, 248, 250, 0.8);
  line-height: 1.75;
}

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

.company-fact-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.08);
  border-radius: 26px;
  box-shadow: 0 12px 26px rgba(24, 29, 33, 0.03);
}

.company-fact-card h2 {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.26;
}

.company-fact-card p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.company-access-grid {
  align-items: stretch;
}

.company-access-copy {
  display: grid;
  gap: 18px;
}

.company-access-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.company-map-panel {
  padding: 20px;
  background: linear-gradient(135deg, rgba(7, 7, 9, 0.92), rgba(23, 23, 26, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(8, 12, 15, 0.18);
}

.company-map-panel .eyebrow {
  margin: 0 0 14px;
  color: rgba(211, 244, 63, 0.88);
}

.company-map-panel iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 22px;
}

.company-editorial-section,
.company-profile-section,
.company-workspace-section,
.company-access-section {
  background: var(--bg);
}

.company-editorial-section {
  padding-top: 28px;
}

.company-editorial-shell,
.company-profile-shell,
.company-workspace-shell,
.company-access-shell {
  width: min(1480px, calc(100vw - 48px));
  margin: 0 auto;
}

.company-editorial-shell {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: center;
  padding-top: 20px;
  min-height: clamp(500px, 52vw, 700px);
  border-top: 1px solid rgba(29, 35, 39, 0.1);
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.company-editorial-label {
  align-self: start;
  padding-top: clamp(18px, 3vw, 42px);
}

.company-editorial-overline {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.34rem, 2.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.company-editorial-photo {
  margin: 0;
  min-height: clamp(420px, 46vw, 620px);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(8, 10, 13, 0.08);
}

.company-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.96) brightness(0.96);
}

.company-editorial-copy {
  min-width: 0;
}

.company-editorial-copy-group {
  display: grid;
  gap: 12px;
  max-width: 28ch;
}

.company-editorial-facts {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.company-editorial-fact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.company-editorial-fact:last-of-type {
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.company-editorial-fact strong,
.company-editorial-fact span {
  display: block;
}

.company-editorial-fact strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.company-editorial-fact span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(29, 35, 39, 0.56);
}

.company-editorial-line {
  margin: 0;
  font-size: clamp(0.98rem, 1.36vw, 1.18rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.company-editorial-body {
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.36vw, 1.12rem);
  font-weight: 500;
  line-height: 1.78;
  color: var(--ink-soft);
}

.company-profile-section {
  padding-top: clamp(56px, 6vw, 88px);
}

.company-profile-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.company-profile-head {
  display: grid;
  gap: 12px;
}

.company-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.company-profile-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(29, 35, 39, 0.1);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(29, 35, 39, 0.64);
  background: #ffffff;
}

.company-profile-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 3.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.company-profile-copy {
  margin: 0;
  max-width: 30ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.company-table {
  background: transparent;
  border: 1px solid rgba(29, 35, 39, 0.1);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.company-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.company-table span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink-soft);
}

.company-table span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(227, 138, 74, 0.08);
  color: var(--lime-deep);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1;
  flex: 0 0 28px;
}

.company-workspace-section {
  padding-top: clamp(56px, 6vw, 88px);
}

.company-workspace-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.52fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.company-workspace-main,
.company-workspace-sub {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.company-workspace-main {
  grid-row: span 2;
  min-height: clamp(440px, 46vw, 620px);
}

.company-workspace-main img,
.company-workspace-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.96) brightness(0.96);
}

.company-workspace-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.company-workspace-lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.86;
}

.company-workspace-lines {
  display: grid;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.company-workspace-line {
  display: grid;
  grid-template-columns: minmax(108px, 0.24fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.company-workspace-line strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink);
}

.company-workspace-line strong i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(227, 138, 74, 0.08);
  color: var(--lime-deep);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1;
  flex: 0 0 28px;
}

.company-workspace-line span {
  color: var(--ink-soft);
}

.company-workspace-sub {
  min-height: 240px;
}

.company-access-section {
  padding-top: clamp(56px, 6vw, 88px);
}

.company-access-shell {
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.company-access-head {
  display: grid;
  gap: 12px;
  max-width: 48rem;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.company-access-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 40px);
  align-items: start;
}

.company-access-copy {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.1);
}

.company-access-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.company-access-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.company-access-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 138, 74, 0.28);
  color: var(--lime-deep);
  background: rgba(227, 138, 74, 0.08);
  font-size: 1.02rem;
  line-height: 1;
  flex: 0 0 46px;
}

.company-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 10px;
}

.company-access-actions .about-editorial-link {
  margin-top: 0;
}

.company-map-link {
  color: var(--ink);
  border-color: rgba(29, 35, 39, 0.18);
  background: #ffffff;
  box-shadow: none;
}

.company-map-link:hover {
  color: var(--ink);
  border-color: rgba(11, 17, 25, 0.24);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 17, 25, 0.08);
}

.company-map-panel {
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.1);
  box-shadow: none;
}

.company-map-panel iframe {
  min-height: 420px;
  border-radius: 0;
}

.wire-rope-note {
  color: var(--ink-soft);
}

.wire-rope-editorial-section {
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(44px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(242, 138, 43, 0.055), transparent 30%),
    #ffffff;
}

.wire-rope-editorial-shell {
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 0.96fr) minmax(340px, 0.52fr);
  gap: clamp(28px, 3.4vw, 54px);
  min-height: clamp(370px, 38vw, 530px);
}

.wire-rope-editorial-photo {
  min-height: clamp(340px, 34vw, 500px);
}

.wire-rope-editorial-section .about-editorial-stage {
  align-self: start;
  padding-top: clamp(34px, 4vw, 58px);
}

.wire-rope-editorial-photo img {
  object-position: center center;
  filter: saturate(0.92) contrast(0.98) brightness(0.9);
}

.wire-rope-editorial-section .about-editorial-shape-square {
  background: rgba(154, 177, 194, 0.32);
}

.wire-rope-editorial-section .about-editorial-shape-circle {
  background: rgba(242, 138, 43, 0.22);
}

.wire-rope-editorial-copy-group {
  position: relative;
  max-width: 42ch;
  padding-top: 18px;
  padding-left: 0;
}

.wire-rope-editorial-copy-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(54px, 5vw, 82px);
  height: 2px;
  background: rgba(242, 138, 43, 0.72);
}

.wire-rope-editorial-copy-group .about-editorial-line {
  font-size: clamp(1.04rem, 1.34vw, 1.22rem);
  font-weight: 600;
  line-height: 1.54;
}

.wire-rope-editorial-copy-group .about-editorial-body {
  margin-top: 6px;
  max-width: 38em;
  font-size: 0.92rem;
  line-height: 1.86;
}

.wire-rope-values-section {
  padding-top: clamp(24px, 3vw, 42px);
  background: #ffffff;
}

.wire-rope-values-section .about-values-head {
  align-items: start;
}

.wire-rope-values-section .about-values-title {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

.wire-rope-values-section .eyebrow,
.wire-rope-values-section .about-value-index {
  color: var(--lime-deep);
}

.wire-rope-page-hero {
  position: relative;
  padding-bottom: clamp(54px, 6vw, 86px);
  border-bottom: 1px solid rgba(11, 17, 25, 0.08);
  background:
    linear-gradient(90deg, rgba(242, 138, 43, 0.12), transparent 34%),
    #ffffff;
}

.wire-rope-page-hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 0;
  width: min(280px, 36vw);
  height: 4px;
  background: var(--lime);
}

.wire-rope-intro-section {
  padding-top: clamp(68px, 7vw, 104px);
  padding-bottom: clamp(76px, 8vw, 118px);
  background:
    linear-gradient(135deg, rgba(11, 17, 25, 0.98), rgba(26, 36, 49, 0.94)),
    var(--navy);
  border-top: 0;
  border-bottom: 0;
}

.wire-rope-intro-section::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 138, 43, 0.16), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.72;
}

.wire-rope-intro-section .check-list li {
  color: rgba(244, 248, 250, 0.82);
}

.wire-rope-intro-section .check-list li::before {
  color: var(--lime);
}

.wire-rope-consult-grid {
  align-items: start;
  gap: 42px;
}

.wire-rope-consult-panel,
.wire-rope-inquiry-panel {
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 29, 33, 0.03);
}

.wire-rope-hero-visual {
  position: relative;
}

.wire-rope-hero-visual img {
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 24px 24px 0 rgba(242, 138, 43, 0.16);
}

.wire-rope-floating-note {
  width: min(320px, 82%);
  margin: -92px 0 0 auto;
  padding: 22px 24px;
  border-radius: 0;
  background: rgba(11, 17, 25, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--lime);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px rgba(7, 12, 15, 0.24);
  position: relative;
  z-index: 2;
}

.wire-rope-floating-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.wire-rope-floating-note p {
  margin: 0;
  color: rgba(243, 248, 250, 0.8);
  line-height: 1.75;
}

.wire-rope-intro-points {
  margin-top: 24px;
}

.wire-rope-meta-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.wire-rope-meta-bar div {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 30px rgba(6, 10, 12, 0.16);
}

.wire-rope-meta-bar div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 138, 43, 0.92), rgba(242, 138, 43, 0));
}

.wire-rope-meta-bar span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 138, 43, 0.92);
}

.wire-rope-meta-bar strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
}

.wire-rope-consult-section {
  position: relative;
  padding-top: clamp(74px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 108px);
  background: #ffffff;
}

.wire-rope-consult-section::before {
  content: "";
  position: absolute;
  inset: 72px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 35, 39, 0.08), transparent);
  pointer-events: none;
}

.wire-rope-consult-grid,
.wire-rope-inquiry-section .split-layout {
  position: relative;
  gap: clamp(42px, 6vw, 92px);
}

.wire-rope-consult-grid::before,
.wire-rope-inquiry-section .split-layout::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(180deg, rgba(29, 35, 39, 0), rgba(29, 35, 39, 0.08), rgba(29, 35, 39, 0));
  pointer-events: none;
}

.wire-rope-panel-lead {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.wire-rope-consult-panel {
  position: relative;
  padding: clamp(8px, 1vw, 12px) 0 0;
  background: #ffffff;
  border: 0;
  border-top: 1px solid rgba(29, 35, 39, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.wire-rope-consult-panel::before,
.wire-rope-inquiry-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 2px;
  background: rgba(242, 138, 43, 0.78);
}

.wire-rope-consult-panel .eyebrow {
  color: var(--lime-deep);
}

.wire-rope-consult-panel .wire-rope-panel-lead,
.wire-rope-consult-panel .check-list li {
  color: var(--ink-soft);
}

.wire-rope-consult-panel .check-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.wire-rope-consult-panel .check-list li {
  padding: 13px 0 13px 24px;
  border-top: 1px solid rgba(29, 35, 39, 0.09);
}

.wire-rope-consult-panel .check-list li:first-child {
  border-top: 0;
}

.wire-rope-consult-panel .check-list li::before {
  color: var(--lime-deep);
  left: 0;
  top: calc(13px + 0.82em);
  background: rgba(29, 35, 39, 0.42);
  transform: translateY(-50%);
}

.wire-rope-inquiry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.wire-rope-inquiry-panel {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.wire-rope-inquiry-photo {
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 0;
}

.wire-rope-inquiry-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.wire-rope-inquiry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid rgba(29, 35, 39, 0.12);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

.wire-rope-note {
  margin: 18px 0 0;
}

.wire-rope-inquiry-section .split-copy {
  position: relative;
}

.wire-rope-side-note {
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(29, 35, 39, 0.12);
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

.wire-rope-side-note span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-ui);
}

.wire-rope-side-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.wire-rope-inquiry-section {
  padding-top: clamp(70px, 7vw, 112px);
  padding-bottom: clamp(76px, 8vw, 122px);
  background:
    linear-gradient(90deg, rgba(11, 17, 25, 0.035), transparent 34%),
    #ffffff;
}

.wire-rope-cta-section {
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(80px, 8vw, 128px);
  background: #ffffff;
}

body:not(.home) .site-main > section.wire-rope-cta-section:last-of-type {
  background: #ffffff;
  background-image: none;
  color: var(--ink);
}

body:not(.home) .site-main > section.wire-rope-cta-section:last-of-type h2,
body:not(.home) .site-main > section.wire-rope-cta-section:last-of-type p,
body:not(.home) .site-main > section.wire-rope-cta-section:last-of-type a {
  color: inherit;
}

body:not(.home) .site-main > section.wire-rope-cta-section:last-of-type .cta-panel p:not(.eyebrow) {
  color: var(--ink-soft);
}

.wire-rope-cta-section .cta-panel {
  width: min(1480px, calc(100vw - 56px));
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding: clamp(30px, 4vw, 56px) 0 0;
  color: var(--ink);
  border-top: 1px solid rgba(29, 35, 39, 0.12);
}

.wire-rope-cta-section .cta-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(96px, 10vw, 150px);
  height: 2px;
  background: rgba(242, 138, 43, 0.82);
}

.wire-rope-cta-section .cta-panel h2 {
  max-width: 22ch;
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(1.68rem, 3.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.wire-rope-cta-section .cta-panel p {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.wire-rope-cta-section .cta-panel .eyebrow {
  color: var(--lime-deep);
}

.stacked-points {
  display: grid;
  gap: 18px;
}

.stacked-points div {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.stacked-points div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stacked-points strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

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

.business-works-section .section-heading-inline {
  margin-bottom: 28px;
}

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

.works-card {
  display: grid;
  gap: 0;
}

.works-card .post-thumb {
  margin-bottom: 18px;
}

.works-card .post-thumb img {
  height: 240px;
  object-fit: cover;
}

.works-card .post-body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  font-weight: 600;
  line-height: 1.36;
}

.works-card .post-body p {
  color: var(--ink-soft);
}

.works-footer {
  margin-top: 28px;
}

.work-row {
  gap: 14px;
}

.work-row-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 26px;
  align-items: start;
}

.work-row-copy {
  display: grid;
  gap: 10px;
}

.work-row h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.14rem, 1.5vw, 1.34rem);
  font-weight: 500;
  line-height: 1.34;
}

.work-row p {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
}

.work-row-thumb {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.work-row-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

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

.post-card,
.note-card {
  overflow: hidden;
}

.post-thumb {
  display: block;
  margin: -28px -28px 20px;
}

.post-body,
.note-card {
  display: grid;
  gap: 10px;
}

.note-date {
  margin: 0;
}

.news-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
  background: transparent;
}

.news-row-main {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.news-row h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.06rem, 1.55vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
}

.news-row h3 a {
  color: var(--ink);
  text-decoration: none;
}

.news-row .note-date {
  margin: 0;
  padding-top: 0.15em;
  color: rgba(29, 35, 39, 0.66);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

#news-list .note-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#news-list .note-date::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(200, 131, 78, 0.4);
  flex: 0 0 auto;
}

.news-row-arrow {
  color: var(--lime-deep);
  font-size: 1.2rem;
  line-height: 1;
}

.news-row-empty .news-row-main {
  grid-template-columns: 140px minmax(0, 1fr);
}

@media (max-width: 1024px) {
  .news-shell {
    width: min(100%, calc(100vw - 40px));
  }

  #news-list > .container {
    width: min(100%, calc(100vw - 32px));
  }

  .updates-grid {
    grid-template-columns: 1fr;
  }

  .news-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-list-shell {
    width: min(100%, calc(100vw - 40px));
  }

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

@media (max-width: 1040px) {
  #evolution.section-accent {
    padding-bottom: clamp(56px, 8vw, 84px);
  }

  .evolution-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .evolution-panel {
    --evolution-bleed-left: 0px;
    min-height: auto;
    padding: 28px 24px 22px;
  }

  .evolution-panel::before {
    inset: 0 18px 72px 0;
    border-radius: 30px;
  }

  .evolution-panel-image {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
  }

  .evolution-heading-copy {
    max-width: 100%;
  }

  .evolution-info {
    padding: 4px 0 0;
  }

  .evolution-points {
    gap: 18px;
    width: 100%;
  }
}

.cta-section {
  position: relative;
  min-height: min(78svh, 860px);
  padding: clamp(72px, 8vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
  background: #111416;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../images/corporate/contact-main.jpg") 56% center / 112% auto no-repeat;
  transform: scale(1.015);
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.home .cta-section {
  z-index: 3;
  padding-bottom: clamp(84px, 10vw, 128px);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: min(52svh, 520px);
  padding: clamp(108px, 12vw, 156px) 0 0;
  color: #fff;
  border-top: 0;
}

.cta-frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: min(100%, 420px);
  padding: clamp(28px, 3.4vw, 42px);
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
}

.cta-panel .eyebrow,
.cta-panel p,
.cta-panel h2 {
  color: inherit;
}

.cta-copy {
  width: 100%;
  max-width: none;
  text-align: center;
}

.cta-panel .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel h2 {
  margin: 0 0 22px;
  font-family: var(--font-cinema);
  font-size: clamp(2.14rem, 4.4vw, 3.86rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #fff;
  text-wrap: balance;
}

.cta-panel p {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  line-height: 1.92;
  color: rgba(245, 248, 250, 0.9);
}

.cta-action {
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.cta-circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #fff;
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  text-decoration: none;
  background: transparent;
  transition: transform 220ms ease, color 220ms ease;
}

.cta-circle-link:hover {
  transform: scale(1.02);
  color: #dfff19;
}

.company-grid,
.two-column {
  grid-template-columns: 1.1fr 0.9fr;
}

.company-table {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.company-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table span {
  font-weight: 600;
  color: var(--ink-soft);
}

.company-table p {
  margin: 0;
}

.panel-card {
  padding: 30px;
}

.contact-page-hero {
  padding-bottom: clamp(44px, 5vw, 72px);
}

.contact-page-section {
  padding-top: clamp(56px, 6vw, 96px);
  background: #ffffff;
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

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

.contact-page-copy h2,
.contact-page-form-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.36;
  font-weight: 650;
}

.contact-page-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.9;
}

.contact-page-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-page-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(29, 35, 39, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(29, 35, 39, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-page-direct {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.contact-page-direct p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-page-form-panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(29, 35, 39, 0.12);
  background: #ffffff;
}

.contact-page-form-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.contact-page-form {
  color: var(--ink);
}

.contact-form-placeholder {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px dashed rgba(29, 35, 39, 0.24);
  background: rgba(29, 35, 39, 0.025);
}

.contact-form-placeholder p {
  margin: 0;
}

.contact-page-form .wpcf7 {
  margin: 0;
}

.contact-page-form .wpcf7 form {
  display: grid;
  gap: 20px;
}

.contact-page-form .wpcf7 p {
  margin: 0;
}

.contact-page-form .wpcf7 label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.contact-page-form .wpcf7 input[type="text"],
.contact-page-form .wpcf7 input[type="email"],
.contact-page-form .wpcf7 input[type="tel"],
.contact-page-form .wpcf7 input[type="url"],
.contact-page-form .wpcf7 input[type="number"],
.contact-page-form .wpcf7 select,
.contact-page-form .wpcf7 textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(29, 35, 39, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-page-form .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-page-form .wpcf7 input:focus,
.contact-page-form .wpcf7 select:focus,
.contact-page-form .wpcf7 textarea:focus {
  outline: none;
  border-color: rgba(242, 138, 43, 0.7);
  box-shadow: 0 0 0 3px rgba(242, 138, 43, 0.12);
}

.contact-page-form .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  min-width: 180px;
  padding: 0 24px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: #1d2327;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.contact-page-form .wpcf7 input[type="submit"]:hover,
.contact-page-form .wpcf7 input[type="submit"]:focus-visible {
  transform: translateY(-1px);
  background: var(--lime-deep);
  border-color: var(--lime-deep);
}

.contact-page-form .wpcf7-spinner {
  margin: 0 0 0 12px;
}

.contact-page-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #a13a24;
  font-size: 0.82rem;
}

.contact-page-form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
}

.wrap textarea,
.wrap input[type="text"],
.wrap input[type="email"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.taxonomy-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-chip {
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200, 131, 78, 0.28);
}

.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.blog-taxonomy-filter {
  margin-top: 32px;
  margin-bottom: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(29, 35, 39, 0.1);
}

.blog-list-shell {
  width: min(1540px, calc(100vw - 56px));
}

body.blog .site-main > .section,
body.blog:not(.home) .site-main > section.section:last-of-type,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) {
  background: #ffffff;
  color: var(--ink);
}

body.category .site-main > section,
body.archive .site-main > section {
  background: #ffffff;
  color: var(--ink);
}

body.category .site-main > section h1,
body.category .site-main > section h2,
body.category .site-main > section h3,
body.category .site-main > section p,
body.category .site-main > section a,
body.archive .site-main > section h1,
body.archive .site-main > section h2,
body.archive .site-main > section h3,
body.archive .site-main > section p,
body.archive .site-main > section a {
  color: var(--ink);
}

body.blog .site-main > .section h1,
body.blog .site-main > .section h2,
body.blog .site-main > .section h3,
body.blog .site-main > .section p,
body.blog .site-main > .section a,
body.blog:not(.home) .site-main > section.section:last-of-type h1,
body.blog:not(.home) .site-main > section.section:last-of-type h2,
body.blog:not(.home) .site-main > section.section:last-of-type h3,
body.blog:not(.home) .site-main > section.section:last-of-type p,
body.blog:not(.home) .site-main > section.section:last-of-type a,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) h1,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) h2,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) h3,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) p,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) a {
  color: var(--ink);
}

body.blog .site-main > .section .blog-card-body > p:not(.blog-card-meta),
body.blog .site-main > .section .blog-card-meta,
body.blog .site-main > .section .blog-card-category,
body.blog .site-main > .section .blog-card-category-set,
body.category .site-main > section .blog-card-body > p:not(.blog-card-meta),
body.category .site-main > section .blog-card-meta,
body.category .site-main > section .blog-card-category,
body.category .site-main > section .blog-card-category-set,
body.archive .site-main > section .blog-card-body > p:not(.blog-card-meta),
body.archive .site-main > section .blog-card-meta,
body.archive .site-main > section .blog-card-category,
body.archive .site-main > section .blog-card-category-set,
body.blog:not(.home) .site-main > section.section:last-of-type .blog-card-body > p:not(.blog-card-meta),
body.blog:not(.home) .site-main > section.section:last-of-type .blog-card-meta,
body.blog:not(.home) .site-main > section.section:last-of-type .blog-card-category,
body.blog:not(.home) .site-main > section.section:last-of-type .blog-card-category-set,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) .blog-card-body > p:not(.blog-card-meta),
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) .blog-card-meta,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) .blog-card-category,
body.blog:not(.home) .site-main > section:last-of-type:not(.message-profile-section):not(.company-access-section):not(.wire-rope-cta-section) .blog-card-category-set {
  color: rgba(29, 35, 39, 0.72);
}

body.category .site-main > section .blog-card-category-child,
body.archive .site-main > section .blog-card-category-child {
  background: var(--accent-strong) !important;
  border-color: var(--accent-strong) !important;
  color: #ffffff !important;
}

body.category .site-main > section .blog-card-category-parent,
body.archive .site-main > section .blog-card-category-parent {
  background: #ffffff;
  color: var(--ink);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 35, 39, 0.12);
  border-left: 1px solid rgba(29, 35, 39, 0.12);
  background: #ffffff;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(29, 35, 39, 0.12);
  border-bottom: 1px solid rgba(29, 35, 39, 0.12);
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  background: rgba(29, 35, 39, 0.025);
  transform: translateY(-2px);
}

.blog-card-thumb {
  display: block;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(29, 35, 39, 0.1);
}

.blog-card-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-thumb img,
.blog-card:focus-within .blog-card-thumb img {
  transform: scale(1.035);
}

.blog-card-thumb-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(11, 17, 25, 0.08), rgba(11, 17, 25, 0.03)),
    repeating-linear-gradient(135deg, rgba(17, 23, 33, 0.045) 0 1px, transparent 1px 18px);
}

.blog-card-body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 28px 30px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.blog-card-category-set {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid rgba(29, 35, 39, 0.16);
  border-radius: 999px;
  color: rgba(29, 35, 39, 0.7);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.blog-card-category-parent {
  background: #ffffff;
}

.blog-card-category-child {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #ffffff !important;
}

.blog-card h2 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 600;
  line-height: 1.45;
}

.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
  color: var(--accent);
}

.blog-card-body > p:not(.blog-card-meta) {
  margin: 0;
  color: rgba(29, 35, 39, 0.7);
  line-height: 1.85;
}

.category-archive-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.category-archive-back {
  min-width: 180px;
  padding-inline: 22px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.blog-pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.blog-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  min-width: 24px;
  padding: 0;
}

.mini-list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.mini-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 38, 58, 0.1);
}

.mini-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-image {
  margin-bottom: 24px;
}

.rich-text > *:first-child {
  margin-top: 0;
}

.rich-text > *:last-child {
  margin-bottom: 0;
}

.rich-text h2,
.rich-text h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-top: 32px;
}

.site-footer {
  margin-top: 80px;
  padding: 48px 0 36px;
  background:
    radial-gradient(circle at 88% 14%, rgba(227, 138, 74, 0.12), rgba(227, 138, 74, 0) 24%),
    linear-gradient(135deg, rgba(11, 17, 25, 0.985) 0%, rgba(18, 28, 40, 0.97) 52%, rgba(30, 42, 58, 0.955) 100%);
  border-top: 1px solid rgba(244, 241, 236, 0.12);
  color: rgba(244, 241, 236, 0.92);
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-footer::after {
  content: none;
}

.home .site-footer {
  margin-top: 0;
  padding-top: 48px;
  position: sticky;
  bottom: 0;
  z-index: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(340px, 38vw);
  height: 2px;
  background: linear-gradient(90deg, rgba(227, 138, 74, 0.92), rgba(227, 138, 74, 0));
}

.footer-intro {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  position: relative;
}

.footer-intro::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: min(220px, 30vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(227, 138, 74, 0.78), rgba(227, 138, 74, 0));
}

.footer-overline {
  margin: 0;
  max-width: 42ch;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(244, 241, 236, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr 0.85fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-grid::after {
  content: none;
}

.footer-monument-panel {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(244, 241, 236, 0.1);
  padding-right: 18px;
  overflow: visible;
}

.footer-hologram-stage {
  position: relative;
  width: 300px;
  height: 300px;
  pointer-events: none;
  overflow: visible;
}

.footer-hologram-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: normal;
  filter: saturate(0.92) contrast(1.02);
}

.footer-hologram-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.footer-brand,
.footer-title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: rgba(244, 241, 236, 0.96);
}

.footer-kicker,
.footer-info-label {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.5);
}

.footer-brand-panel,
.footer-info-panel,
.footer-bottom-nav {
  display: grid;
  gap: 8px;
}

.footer-brand-panel {
  align-content: start;
  padding: 0;
}

.footer-brand {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.post-row-date,
.post-row-title,
.ai-dx-plan-card h3,
.message-name,
.message-focus-card strong,
.company-fact-card strong,
.wire-rope-meta-bar strong,
.wire-rope-inquiry-list span,
.message-hero-copy .eyebrow,
.company-overview-grid .eyebrow,
.about-intro-grid .eyebrow,
.about-dx-grid .eyebrow,
.about-finale-section .eyebrow,
.services-intro-grid .eyebrow,
.wire-rope-consult-panel .eyebrow,
.company-map-panel .eyebrow,
.cta-panel .eyebrow {
  font-family: var(--font-sans);
}

.message-hero-copy .eyebrow,
.company-overview-grid .eyebrow,
.about-intro-grid .eyebrow,
.about-dx-grid .eyebrow,
.about-finale-section .eyebrow,
.services-intro-grid .eyebrow,
.wire-rope-consult-panel .eyebrow,
.company-map-panel .eyebrow,
.cta-panel .eyebrow {
  font-family: var(--font-ui);
}

.footer-copy,
.copyright {
  color: rgba(244, 241, 236, 0.76);
}

.footer-copy {
  max-width: 28ch;
  font-size: 1rem;
}

.footer-note {
  margin: 10px 0 0;
  max-width: 34ch;
  color: rgba(244, 241, 236, 0.56);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.footer-business-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(227, 138, 74, 0.36);
  border-radius: 999px;
  background: rgba(227, 138, 74, 0.08);
  color: rgba(244, 241, 236, 0.82);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-info-panel {
  padding: 14px 0 0;
}

.footer-info-panel p {
  margin: 0;
  color: rgba(244, 241, 236, 0.82);
}

.footer-info-label-inline {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 241, 236, 0.08);
}

.footer-grid > :not(.footer-monument-panel) {
  position: relative;
}

.footer-grid > :not(.footer-monument-panel)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(227, 138, 74, 0.52) 0%,
    rgba(244, 241, 236, 0.12) 42%,
    rgba(244, 241, 236, 0.02) 100%
  );
  box-shadow: none;
}

.footer-title-small {
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .footer-menu a,
.site-footer a {
  color: rgba(244, 241, 236, 0.9);
}

.site-footer .footer-menu a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.reveal,
.reveal-child {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(6px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal.is-visible,
.reveal-child.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.site-footer .reveal,
.site-footer .reveal-child {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
  will-change: auto;
}

.site-footer .reveal.is-visible,
.site-footer .reveal-child.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 1040px) {
  .site-header .container {
    width: min(1520px, calc(100vw - 40px));
  }

  .nav-wrap {
    gap: 14px;
  }

  .brand {
    transform: translateX(-4px);
  }

  .header-nav-cluster {
    gap: 14px;
    padding: 9px 14px;
    transform: translateX(0);
  }

  .menu-inline {
    gap: 18px;
  }

  .split-layout,
  .services-intro-grid,
  .services-list-grid,
  .ai-dx-plan-grid,
  .about-statement-grid,
  .message-hero-grid,
  .message-pillars,
  .company-facts-grid,
  .company-grid,
  .two-column,
  .footer-grid,
  .three-up,
  .line-list-strengths,
  .service-grid,
  .card-grid,
  .card-grid-compact,
  .ai-dx-plan-list {
    grid-template-columns: 1fr;
  }

  .wire-rope-list-two-column {
    grid-template-columns: 1fr;
  }

  .wire-rope-cta-section .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ai-dx-inline-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .ai-dx-plans-section .about-values-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .ai-dx-plans-section .about-values-copy {
    margin-left: 0;
    max-width: 100%;
  }

  .service-row,
  .work-row-main {
    grid-template-columns: 1fr;
  }

  .products-shell {
    width: min(100%, calc(100vw - 40px));
  }

  .policy-editorial-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .policy-editorial-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .policy-editorial-points {
    margin-top: 24px;
  }

  .policy-editorial-visual {
    min-height: 560px;
  }

  .policy-photo-main {
    right: 0;
    top: 0;
    width: min(76vw, 560px);
    height: 360px;
  }

  .policy-photo-sub-a {
    left: 0;
    top: 62px;
    width: 168px;
    height: 200px;
  }

  .policy-photo-sub-b {
    left: 14%;
    width: 210px;
    height: 162px;
  }

  .policy-editorial-visual::before {
    width: 132px;
    height: 132px;
  }

  .policy-editorial-visual::after {
    width: 104px;
    height: 104px;
  }

  .ai-cases-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ai-cases-track {
    gap: 24px;
  }

  .ai-cases-carousel {
    --ai-case-gap: 24px;
    --ai-case-width: calc((100% - var(--ai-case-gap)) / 2);
    padding-top: 8px;
  }

  .products-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 28px;
  }

  .products-copy {
    max-width: 42rem;
  }

  .service-rail {
    padding-right: 0;
  }

  .service-row-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-row {
    gap: 14px;
  }

  .service-row-index {
    font-size: 0.94rem;
  }

  .service-row-link {
    width: fit-content;
  }

.section-heading-inline,
.cta-panel,
.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
  }

  .hero h1,
  .section-title {
    max-width: none;
  }

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

  .news-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .message-portrait-wrap {
    position: static;
  }

  .message-focus-points {
    grid-template-columns: 1fr;
  }

  .services-list-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand-panel {
    grid-column: 1 / -1;
  }

  .footer-monument-panel {
    min-height: 220px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-footer::after {
    content: none;
  }

  .footer-grid::after {
    content: none;
  }

  .wire-rope-hero-visual img {
    min-height: 420px;
  }

  .wire-rope-meta-bar {
    grid-template-columns: 1fr;
  }

  .wire-rope-consult-grid::before,
  .wire-rope-inquiry-section .split-layout::before {
    display: none;
  }

  .about-boundary-accent {
    --about-boundary-height: 48px;
    left: 0;
    width: min(420px, 54vw);
  }

  .about-boundary-accent-right {
    left: auto;
    right: 0;
  }

  .top-boundary-accent {
    --top-boundary-height: 48px;
    width: min(420px, 54vw);
  }

  .top-trust-section > .container {
    width: min(1320px, calc(100vw - 36px));
  }

  .about-page-intro-layout {
    width: min(1320px, calc(100vw - 36px));
    grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 28px;
    min-height: 560px;
  }

  .message-page-intro-layout {
    width: min(1320px, calc(100vw - 36px));
    grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 28px;
    min-height: 560px;
  }

  .message-profile-shell {
    width: min(1320px, calc(100vw - 36px));
    grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 28px;
  }

  .about-page-intro-photo {
    min-height: 420px;
  }

  .message-page-intro-photo {
    min-height: 420px;
  }

  .about-page-overline {
    font-size: clamp(1.56rem, 2.8vw, 2.72rem);
  }

  .message-page-overline {
    font-size: clamp(1.56rem, 2.8vw, 2.72rem);
  }

  .top-trust-layout {
    grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr) minmax(220px, 0.5fr);
    gap: 28px;
    min-height: 520px;
  }

  .top-trust-visuals {
    min-height: 520px;
  }

  .top-trust-overline {
    font-size: clamp(1.56rem, 2.8vw, 2.72rem);
  }

  .cta-panel {
    min-height: auto;
    padding-top: 112px;
    justify-content: center;
  }

  .cta-frame {
    width: min(100%, 380px);
  }

  .cta-copy {
    max-width: 100%;
  }

  .cta-action {
    align-items: flex-start;
    padding-bottom: 0;
  }

  .top-trust-section > .container {
    width: min(1120px, calc(100vw - 32px));
  }

  .about-page-intro-layout {
    width: min(1120px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .about-page-intro-label {
    padding-top: 0;
  }

  .about-page-overline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .about-page-intro-photo {
    width: 100%;
    min-height: 420px;
  }

  .about-page-copy-group {
    max-width: 100%;
    gap: 10px;
  }

  .about-page-copy-line,
  .about-page-copy-body {
    font-size: 1rem;
    line-height: 1.75;
  }

  .message-page-intro-layout {
    width: min(1120px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .message-profile-shell {
    width: min(1120px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }

  .message-page-intro-label {
    padding-top: 0;
  }

  .message-profile-label {
    padding-top: 0;
  }

  .message-page-overline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .message-page-intro-photo {
    width: 100%;
    min-height: 420px;
  }

  .message-page-copy-group {
    max-width: 100%;
    gap: 10px;
  }

  .message-profile-copy {
    max-width: 100%;
  }

  .message-page-copy-line,
  .message-page-copy-body {
    font-size: 1rem;
    line-height: 1.75;
  }

  .message-profile-note {
    padding: 22px 24px;
  }

  .top-trust-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .top-trust-heading {
    padding-top: 0;
  }

  .top-trust-overline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .top-trust-visuals {
    order: 2;
    width: 100%;
    min-height: 500px;
  }

  .top-trust-image-main {
    left: 10%;
    top: 10%;
    width: min(78vw, 520px);
    height: 340px;
  }

  .top-trust-image-sub-a {
    width: 200px;
    height: 180px;
  }

  .top-trust-image-sub-b {
    width: 260px;
    height: 170px;
    left: 0;
  }

  .top-trust-image-bg {
    width: 300px;
    height: 210px;
    right: 0;
  }

  .top-trust-description {
    order: 3;
    padding-bottom: 0;
  }

  .top-trust-copy-group {
    max-width: 100%;
    gap: 10px;
  }

  .top-trust-copy-line,
  .top-trust-copy-body {
    font-size: 1rem;
    line-height: 1.75;
  }

}


@media (max-width: 1040px) {
  .company-editorial-shell,
  .company-profile-shell,
  .company-workspace-shell,
  .company-access-grid {
    grid-template-columns: 1fr;
  }

  .company-editorial-shell {
    min-height: auto;
    gap: 26px;
  }

  .company-editorial-label,
  .company-editorial-copy {
    padding-top: 0;
  }

  .company-editorial-photo,
  .company-workspace-main {
    min-height: 360px;
  }

  .company-workspace-main {
    grid-row: auto;
  }

  .company-workspace-sub {
    min-height: 260px;
  }

  .company-profile-copy,
  .company-editorial-copy-group {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    width: min(100vw - 28px, 100%);
  }

  .site-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-nav-cluster {
    display: none;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 28px, 100%);
  }

  .blog-list-shell {
    width: min(100%, calc(100vw - 28px));
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 0;
  }

  .blog-card-thumb {
    margin: 0;
  }

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

  .ai-cases-section {
    padding: 24px 0 72px;
  }

  .ai-cases-track {
    gap: 22px;
  }

  .ai-cases-carousel {
    --ai-case-gap: 22px;
    --ai-case-width: 100%;
    padding-top: 6px;
  }

  .company-editorial-shell,
  .company-profile-shell,
  .company-workspace-shell,
  .company-access-shell {
    width: min(100%, calc(100vw - 32px));
  }

  .company-editorial-overline {
    font-size: 1.2rem;
  }

  .company-profile-title {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .company-table div,
  .company-workspace-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-access-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .company-editorial-photo,
  .company-workspace-main,
  .company-map-panel iframe {
    min-height: 300px;
  }

  .hologram-canvas {
    opacity: 0.34;
  }

  .wire-rope-floating-note {
    width: calc(100% - 24px);
    margin: -48px 12px 0;
  }

  .about-boundary-accent {
    --about-boundary-height: 34px;
    left: 0;
    width: min(300px, calc(100vw - 56px));
  }

  .about-boundary-accent.scroll-accent {
    transform:
      translate3d(calc((1 - var(--accent-progress, 0)) * -48px), 0, 0)
      scaleX(calc(0.4 + (var(--accent-progress, 0) * 0.6)));
  }

  .about-boundary-accent-right {
    left: auto;
    right: 0;
  }

  .about-boundary-accent-right.scroll-accent {
    transform:
      translate3d(calc((1 - var(--accent-progress, 0)) * 48px), 0, 0)
      scaleX(calc(0.4 + (var(--accent-progress, 0) * 0.6)));
  }

  .top-boundary-accent {
    --top-boundary-height: 34px;
    width: min(300px, calc(100vw - 56px));
  }

  .top-boundary-accent.scroll-accent {
    transform:
      translate3d(calc((1 - var(--accent-progress, 0)) * -48px), 0, 0)
      scaleX(calc(0.4 + (var(--accent-progress, 0) * 0.6)));
  }

  .wire-rope-side-note {
    margin-top: 22px;
  }

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

  .ai-dx-development-visual {
    min-height: 360px;
  }

  .ai-dx-development-visual img {
    aspect-ratio: 4 / 3;
  }

  .ai-dx-development-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 18px 18px 16px;
  }


  .wire-rope-list-two-column {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .page-hero {
    padding: 72px 0;
  }

  .news-shell {
    width: calc(100vw - 32px);
  }

  .news-hero {
    gap: 20px;
    padding-bottom: 28px;
  }

  .news-display-title {
    margin-top: 12px;
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  .news-all-link {
    gap: 14px;
    font-size: 0.92rem;
  }

  .news-all-link span:last-child {
    min-width: 64px;
    height: 36px;
  }

  .news-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 20px 0;
  }

  .news-row-main,
  .news-row-empty .news-row-main {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-scroll-over {
    min-height: auto;
  }

  .hero {
    position: relative;
    top: auto;
    min-height: 100svh;
    padding: 0;
  }

  .hero-shell {
    min-height: 100svh;
    padding-top: 110px;
    padding-bottom: 32px;
  }

  .top-story-shell {
    --story-overlap: 40px;
    margin-top: 0;
    padding-top: 0;
  }

  .top-story-shell::before {
    content: none;
  }


  .hero h1,
  .hero-title {
    font-size: 2.08rem;
    gap: 0.12em;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .cta-frame {
    width: 100%;
    padding: 24px;
  }

  .cta-panel h2 {
    margin-bottom: 16px;
  }

  .cta-panel p {
    max-width: 100%;
  }

.feature-card,
.service-card,
.post-card,
.note-card,
.panel-card,
.split-panel,
.empty-card {
  padding: 22px;
}

  .post-thumb {
    margin: -22px -22px 18px;
  }

  .about-photo-main,
  .about-photo-main img {
    min-height: 340px;
  }

  .about-point-panel,
  .about-mini-points,
  .message-pillar {
    padding: 22px;
  }

  .message-pillar-head {
    gap: 10px;
  }

  .message-portrait,
  .message-portrait img {
    min-height: 360px;
  }

  .message-portrait-note {
    width: min(100%, 300px);
    margin-top: -54px;
  }

  .company-photo-main,
  .company-photo-main img,
  .company-map-panel iframe {
    min-height: 320px;
  }

  .services-hologram-column {
    display: none;
  }

  .services-hologram-stage {
    width: min(72vw, 340px);
    max-width: 340px;
    aspect-ratio: 1 / 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-overline {
    max-width: 26ch;
  }

  .site-footer::after {
    content: none;
  }

  .footer-grid::after {
    display: none;
  }

  .footer-monument-panel {
    min-height: 180px;
    justify-content: center;
  }

  .footer-grid > :not(.footer-monument-panel)::before {
    top: -8px;
  }

  .footer-hologram-stage {
    width: 236px;
    height: 236px;
  }

  .evolution-carousel-card {
    flex-basis: 260px;
  }

  .evolution-carousel-track {
    gap: 16px;
  }
}

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