:root {
  color-scheme: light;
  --ink: #151821;
  --ink-soft: #303746;
  --muted: #687080;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #dfe3e8;
  --coal: #07111f;
  --teal: #00a6a6;
  --teal-dark: #007f86;
  --accent-sky: #1d9bd1;
  --blue: #2d6cdf;
  --blue-dark: #184da3;
  --gray-card: #263244;
  --shadow: 0 22px 56px rgba(7, 17, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 95, 209, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 174px 18px 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(9, 24, 42, 0.8)),
    rgba(7, 17, 31, 0.84);
  border-bottom: 1px solid rgba(118, 231, 222, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.04rem;
  line-height: 1.2;
}

.brand small {
  color: rgba(158, 239, 229, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
}

.global-nav a {
  min-height: 40px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  border-radius: 999px;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--white);
  background: rgba(0, 166, 166, 0.18);
}

.global-nav a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 166, 166, 0.28), rgba(45, 108, 223, 0.2));
}

.language-switch {
  position: fixed;
  top: 22px;
  right: 44px;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 3px;
  border: 1px solid rgba(158, 239, 229, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.language-switch a {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.breadcrumb {
  padding: 96px 44px 14px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  width: min(1160px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #a5acb8;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 126px 44px 112px;
  color: var(--white);
  overflow: hidden;
  background: var(--coal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
  opacity: 0.48;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 28%, rgba(0, 166, 166, 0.28), transparent 32%),
    radial-gradient(circle at 86% 74%, rgba(45, 108, 223, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.78) 42%, rgba(7, 17, 31, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.78), rgba(7, 17, 31, 0.12) 48%, rgba(7, 17, 31, 0.58)),
    url("assets/photo-hero-corporate.jpg") center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  color: var(--white);
  animation: intro-rise 900ms ease both;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 166, 166, 0.14);
  border: 1px solid rgba(158, 239, 229, 0.42);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero .eyebrow {
  color: #9eefe5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 11em;
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.45;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-console {
  position: absolute;
  z-index: 1;
  right: 44px;
  bottom: 142px;
  width: min(360px, calc(100% - 88px));
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 30, 47, 0.94), rgba(8, 18, 31, 0.78)),
    linear-gradient(135deg, rgba(0, 166, 166, 0.22), transparent 52%);
  border: 1px solid rgba(158, 239, 229, 0.22);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: console-float 5.6s ease-in-out infinite;
}

.console-header,
.console-meter,
.hero-console li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-header {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  letter-spacing: 0;
}

.console-header span {
  width: 10px;
  height: 10px;
  background: var(--teal);
}

.console-meter {
  margin-bottom: 10px;
}

.console-meter span,
.hero-console li span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.console-meter strong {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.console-bar {
  height: 8px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.console-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--accent-sky));
}

.hero-console ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.hero-console li {
  padding: 12px 0;
  background: rgba(13, 16, 22, 0.56);
}

.hero-console li strong {
  font-size: 0.84rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 168px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 166, 166, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--teal-dark), var(--blue-dark));
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--coal);
}

.hero-proof {
  position: absolute;
  z-index: 1;
  left: 44px;
  right: 44px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  animation: intro-rise 1000ms 160ms ease both;
}

.kinetic-strip {
  overflow: hidden;
  padding: 18px 0;
  color: var(--white);
  background: var(--coal);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kinetic-track {
  display: flex;
  gap: 38px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}

.kinetic-track span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 2.4vw, 2rem);
  font-weight: 800;
}

.kinetic-track span:nth-child(3n) {
  color: #9eefe5;
}

.kinetic-track span:nth-child(4n) {
  color: #b8cdfc;
}

.logo-section {
  padding: 54px 44px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.logo-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.logo-layout h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logo-card {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 22px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 246, 248, 0.96)),
    var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(16, 18, 23, 0.12);
  background: var(--white);
}

.logo-card img {
  width: min(168px, 82%);
  max-height: 52px;
  object-fit: contain;
}

.corporate-message-section {
  padding: 86px 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 38%, rgba(0, 166, 166, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(45, 108, 223, 0.16), transparent 42%),
    var(--coal);
  overflow: hidden;
}

.corporate-message {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.message-mark {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(158, 239, 229, 0.28);
  background:
    linear-gradient(145deg, rgba(0, 166, 166, 0.18), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  text-align: center;
}

.corporate-message h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  line-height: 1.08;
}

.corporate-message p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--white);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 200ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 54px;
}

.hero-proof div {
  min-height: 86px;
  padding: 18px 20px;
  background: rgba(12, 14, 20, 0.38);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.section {
  padding: 96px 44px;
}

.section-light {
  background: var(--paper);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 44px;
}

.section-heading p,
.reason-copy p,
.process-layout > div > p,
.cta-layout p {
  color: var(--muted);
  font-size: 1rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 48px;
  align-items: end;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.issue-item {
  min-height: 236px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.issue-item span,
.reason-panel span,
.service-card span,
.process-list span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}

.issue-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.coverage-grid,
.deliverable-grid,
.package-grid,
.snapshot-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

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

.coverage-grid article,
.deliverable-grid article,
.package-grid article,
.snapshot-grid article {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 246, 248, 0.94)),
    var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.coverage-grid span,
.deliverable-grid span,
.package-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}

.coverage-grid p,
.deliverable-grid p,
.package-grid p,
.snapshot-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-suite-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 166, 166, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(45, 108, 223, 0.12), transparent 26%),
    var(--white);
  overflow: hidden;
}

.product-suite-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.64), transparent 76%);
}

.product-suite-section .section-inner {
  position: relative;
  z-index: 1;
}

.product-suite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 17, 31, 0.12);
  border: 1px solid rgba(7, 17, 31, 0.12);
}

.product-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.98)),
    var(--white);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 158px;
  height: 158px;
  border: 1px solid rgba(0, 166, 166, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 166, 166, 0.16) 0 34%, transparent 35%),
    radial-gradient(circle, rgba(45, 108, 223, 0.14) 0 58%, transparent 59%);
}

.product-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(7, 17, 31, 0.14);
}

.product-status {
  align-self: flex-start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-status-core {
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.product-status-build {
  background: var(--blue);
}

.product-status-operating {
  background: linear-gradient(135deg, var(--accent-sky), var(--teal-dark));
}

.product-card-future .product-status {
  color: var(--ink);
  background: #c9f5ef;
}

.product-card p {
  margin: 26px 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.product-card strong {
  display: block;
  min-height: 3.2em;
  color: var(--ink-soft);
  line-height: 1.6;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  background: var(--teal);
}

.channel-section {
  background: var(--white);
}

.channel-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.channel-list a {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 24px 28px;
  background: var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.channel-list a:hover,
.channel-list a:focus-visible {
  position: relative;
  z-index: 1;
  transform: translateX(8px);
  background: #f7f8fa;
  box-shadow: 0 20px 50px rgba(16, 18, 23, 0.12);
}

.channel-list span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.84rem;
}

.channel-list strong {
  color: var(--ink);
  font-size: 1.24rem;
}

.package-grid ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.package-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 800;
}

.package-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: var(--teal);
}

.snapshot-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1.1;
}

.snapshot-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}

.reason-band {
  position: relative;
  color: var(--white);
  background: var(--coal);
  overflow: hidden;
}

.reason-band::after,
.mini-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
  opacity: 0.45;
}

.reason-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 1.16fr);
  gap: 48px;
  align-items: start;
}

.reason-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.reason-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.reason-panel div {
  padding: 30px;
  background: #181b22;
}

.reason-panel p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.intelligence-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 24%, rgba(0, 166, 166, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(45, 108, 223, 0.16), transparent 38%),
    var(--coal);
}

.intelligence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.62;
}

.intelligence-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 48px;
  align-items: start;
}

.intelligence-layout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.system-grid article {
  min-height: 260px;
  padding: 28px;
  background: rgba(20, 24, 32, 0.88);
}

.system-grid span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}

.system-grid h3 {
  margin-top: 32px;
  color: var(--white);
}

.system-grid p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(210, 214, 222, 0.72);
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.service-card::before,
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(22, 24, 30, 0.04));
  opacity: 0.82;
  z-index: 1;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
  transition: transform 520ms ease, filter 300ms ease;
}

.service-card:hover,
.story-card:hover,
.portfolio-grid a:hover,
.package-grid article:hover,
.coverage-grid article:hover,
.deliverable-grid article:hover,
.news-list article:hover,
.news-archive article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(16, 18, 23, 0.14);
}

.service-card:hover img,
.story-card:hover img,
.field-gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.02);
}

.service-card div {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 2px;
}

.field-section,
.package-section,
.news-preview-section,
.company-snapshot-section {
  background: var(--white);
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 56px;
  align-items: center;
}

.field-layout p {
  color: var(--muted);
}

.field-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-gallery figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid rgba(210, 214, 222, 0.72);
  box-shadow: 0 14px 34px rgba(16, 18, 23, 0.12);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.field-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98);
  transition: transform 520ms ease, filter 300ms ease;
}

.field-gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(16, 18, 23, 0.16);
}

.field-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(16, 18, 23, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.process-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(210, 214, 222, 0.72);
  filter: saturate(0.78) contrast(0.98);
  transition: transform 520ms ease, filter 300ms ease;
}

.process-image:hover img {
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.02);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 150px) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  margin-bottom: 0;
}

.process-list strong {
  color: var(--ink);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.case-card {
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  background: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card p,
.case-card span {
  color: rgba(255, 255, 255, 0.78);
}

.case-card p {
  margin-bottom: 16px;
}

.case-card strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 2rem;
  line-height: 1.15;
}

.accent-blue {
  background: var(--blue);
}

.accent-dark {
  background: var(--gray-card);
}

.voice {
  margin: 34px 0 0;
  padding: 34px;
  background: var(--white);
  border-left: 6px solid var(--teal);
  box-shadow: 0 16px 40px rgba(16, 18, 23, 0.08);
}

.voice blockquote {
  margin: 0;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.voice figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.news-list,
.news-archive {
  display: grid;
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

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

.news-archive {
  grid-template-columns: 1fr;
}

.news-list article,
.news-archive article {
  padding: 26px;
  background: var(--white);
}

.news-archive article {
  display: grid;
  grid-template-columns: 132px 92px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.news-archive p {
  grid-column: 3;
  color: var(--muted);
  margin-bottom: 0;
}

.news-list time,
.news-archive time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.news-list span,
.news-archive span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.news-list h3,
.news-archive h3 {
  margin: 16px 0 0;
}

.news-archive h3 {
  margin: 0;
}

.section-link {
  margin-top: 28px;
}

.cta-section {
  padding: 96px 44px;
  background: #eef0f3;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-hidden {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 32px 44px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--coal);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-layout strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-layout p {
  margin-bottom: 0;
}

.footer-address {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-layout a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: var(--white);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(16, 18, 23, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 148px 44px 88px;
  color: var(--white);
  background: var(--coal);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.94), rgba(9, 11, 18, 0.62) 54%, rgba(9, 11, 18, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(9, 11, 18, 0.48)),
    var(--page-image) center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.66), transparent 76%);
  opacity: 0.42;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #b8cdfc;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.page-hero-services {
  --page-image: url("assets/photo-business-ops.jpg");
}

.page-hero-cases {
  --page-image: url("assets/photo-live-ops.jpg");
}

.page-hero-about {
  --page-image: url("assets/hero-city.jpg");
}

.page-hero-contact {
  --page-image: url("assets/photo-hero-corporate.jpg");
}

.page-hero-news {
  --page-image: url("assets/strategy.jpg");
}

.page-hero-sustainability {
  --page-image: url("assets/about-team-ai.jpg");
}

.page-hero-privacy {
  --page-image: url("assets/index-strategy-ai.jpg");
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.portfolio-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.portfolio-grid span,
.strength-grid span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
}

.portfolio-grid strong {
  display: block;
  margin: 26px 0 8px;
  font-size: 1.12rem;
  line-height: 1.4;
}

.portfolio-grid small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.portfolio-grid a:hover,
.portfolio-grid a:focus-visible {
  background: #f0f3f8;
}

.service-detail-section {
  background: var(--white);
}

.service-detail-list {
  display: grid;
  gap: 72px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.service-detail.reverse img {
  order: 2;
}

.service-detail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(210, 214, 222, 0.72);
  filter: saturate(0.78) contrast(0.98);
  box-shadow: var(--shadow);
}

.service-detail p:not(.eyebrow) {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.mini-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
}

.mini-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mini-cta h2 {
  margin-bottom: 0;
  max-width: 800px;
}

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

.story-card,
.faq-grid article,
.strength-grid article {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.story-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
}

.story-card div,
.faq-grid article,
.strength-grid article {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.story-card p:not(.eyebrow),
.faq-grid p,
.strength-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-layout,
.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.about-layout p {
  color: var(--muted);
}

.about-layout img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(210, 214, 222, 0.72);
  filter: saturate(0.78) contrast(0.98);
  box-shadow: var(--shadow);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.strength-grid article {
  background: #181b22;
  border: 0;
}

.strength-grid h3 {
  color: var(--white);
  margin-top: 26px;
}

.strength-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.company-layout {
  align-items: start;
}

.company-table {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt,
.company-table dd {
  margin: 0;
  padding: 22px 24px;
}

.company-table dt {
  font-weight: 800;
  color: var(--ink);
  background: #f0f2f5;
}

.company-table dd {
  color: var(--ink-soft);
}

.company-table a,
.contact-info a {
  color: var(--blue);
  font-weight: 800;
}

.contact-info {
  display: inline-grid;
  gap: 4px;
  margin-top: 26px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.representative-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 95, 209, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(118, 231, 222, 0.12), transparent 54%),
    var(--coal);
}

.representative-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
}

.representative-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.representative-photo {
  position: relative;
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.representative-photo img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.02);
}

.representative-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(12, 14, 20, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.representative-photo figcaption span,
.representative-actions span,
.representative-actions small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.representative-photo figcaption strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.representative-content blockquote {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.18rem, 2.1vw, 1.72rem);
  line-height: 1.75;
}

.representative-message {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.representative-sign {
  margin: 0 0 30px;
  color: #9eefe5;
  font-weight: 800;
}

.career-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 1px;
  margin: 0 0 34px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.career-panel > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.career-panel > div h3 {
  color: var(--white);
}

.career-panel > div p:not(.eyebrow),
.career-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.career-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.career-list li {
  display: grid;
  grid-template-columns: minmax(86px, 0.22fr) minmax(0, 1fr);
  gap: 10px 14px;
  padding: 18px 20px;
  background: rgba(13, 16, 22, 0.46);
}

.career-list span {
  grid-row: 1 / 3;
  color: #9eefe5;
  font-size: 0.8rem;
  font-weight: 800;
}

.career-list strong {
  color: var(--white);
  line-height: 1.35;
}

.representative-nav-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.representative-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.representative-actions a {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.representative-actions a:hover,
.representative-actions a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.representative-actions strong {
  display: block;
  color: var(--white);
  font-size: 1.14rem;
}

.faq-section {
  background: var(--white);
}

@media (max-width: 960px) {
  .site-header {
    padding: 14px 146px 14px 22px;
  }

  .language-switch {
    top: 17px;
    right: 22px;
  }

  .global-nav {
    gap: 2px;
  }

  .global-nav a {
    padding: 8px 9px;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 24px 172px;
  }

  .hero-console {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-proof {
    left: 24px;
    right: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof div {
    min-height: 72px;
    padding: 14px 18px;
  }

  .section,
  .cta-section,
  .page-hero {
    padding: 72px 24px;
  }

  .split-heading,
  .reason-layout,
  .intelligence-layout,
  .field-layout,
  .process-layout,
  .cta-layout,
  .service-detail,
  .about-layout,
  .corporate-message,
  .company-layout,
  .representative-layout {
    grid-template-columns: 1fr;
  }

  .logo-layout {
    grid-template-columns: 1fr;
  }

  .issue-grid,
  .service-grid,
  .case-grid,
  .product-suite-grid,
  .portfolio-grid,
  .system-grid,
  .story-grid,
  .faq-grid,
  .strength-grid,
  .coverage-grid,
  .deliverable-grid,
  .package-grid,
  .snapshot-grid,
  .news-list,
  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-archive article {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .news-archive h3,
  .news-archive p {
    grid-column: 1 / -1;
  }

  .service-detail.reverse img {
    order: 0;
  }

  .process-image img {
    aspect-ratio: 16 / 9;
  }

  .representative-photo,
  .representative-photo img {
    min-height: 520px;
  }

  .career-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  .site-header {
    max-width: 100vw;
    max-width: 100dvw;
  }

  .site-header {
    position: fixed;
    width: 100%;
    width: 100dvw;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px 8px;
    overflow: visible;
  }

  .brand,
  .page-hero-inner,
  .hero-content {
    max-width: 100%;
  }

  .brand {
    width: 100%;
  }

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

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .language-switch {
    position: fixed;
    top: auto;
    left: auto;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 12;
    width: max-content;
    max-width: calc(100vw - 24px);
    max-width: calc(100dvw - 24px);
    background: rgba(7, 17, 31, 0.92);
    border-color: rgba(158, 239, 229, 0.34);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .language-switch a {
    min-height: 28px;
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .global-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-content,
  .page-hero-inner,
  .section-inner,
  .section-heading,
  .split-heading,
  .corporate-message {
    width: 100%;
    max-width: calc(100vw - 36px);
    max-width: calc(100dvw - 36px);
    min-width: 0;
  }

  .global-nav::-webkit-scrollbar {
    display: none;
  }

  .global-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 84svh;
    padding: 136px 18px 212px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(9, 11, 18, 0.92), rgba(9, 11, 18, 0.58)),
      linear-gradient(0deg, rgba(9, 11, 18, 0.75), rgba(9, 11, 18, 0.16) 48%, rgba(9, 11, 18, 0.66)),
      url("assets/photo-hero-corporate.jpg") center / cover no-repeat;
  }

  h1 {
    max-width: calc(100vw - 36px);
    max-width: calc(100dvw - 36px);
    font-size: 1.45rem;
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  h2 {
    font-size: 1.58rem;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-lead {
    max-width: calc(100vw - 36px);
    max-width: calc(100dvw - 36px);
    font-size: 1rem;
  }

  .button {
    width: 100%;
    max-width: calc(100vw - 36px);
    max-width: calc(100dvw - 36px);
  }

  .hero-proof {
    left: 18px;
    right: 18px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section,
  .page-hero,
  .logo-section {
    padding: 58px 18px;
  }

  .page-hero {
    min-height: 440px;
    align-items: end;
    padding-top: 136px;
  }

  .breadcrumb {
    padding: 126px 18px 12px;
  }

  .corporate-message-section {
    padding: 64px 18px;
  }

  .corporate-message {
    gap: 28px;
  }

  .message-mark {
    min-height: 132px;
    padding: 20px;
    font-size: 1.45rem;
  }

  .corporate-message h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7vw, 2.05rem);
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .page-hero h1,
  .page-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    word-break: normal;
  }

  .page-hero h1,
  .section-heading h2,
  .split-heading h2 {
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .section-heading p,
  .system-grid p,
  .career-list p,
  .representative-message,
  .company-table dd {
    word-break: break-word;
  }

  .issue-grid,
  .service-grid,
  .case-grid,
  .product-suite-grid,
  .portfolio-grid,
  .system-grid,
  .story-grid,
  .faq-grid,
  .strength-grid,
  .coverage-grid,
  .deliverable-grid,
  .package-grid,
  .snapshot-grid,
  .news-list,
  .field-gallery,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .representative-actions {
    grid-template-columns: 1fr;
  }

  .career-list li {
    grid-template-columns: 1fr;
  }

  .career-list span {
    grid-row: auto;
  }

  .representative-photo,
  .representative-photo img {
    min-height: 430px;
  }

  .representative-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-archive article {
    grid-template-columns: 1fr;
  }

  .news-archive h3,
  .news-archive p {
    grid-column: auto;
  }

  .issue-item {
    min-height: auto;
    padding: 24px;
  }

  .service-card div,
  .reason-panel div,
  .contact-form,
  .voice {
    padding: 24px;
  }

  .process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .process-list li p {
    grid-column: 2;
  }

  .mini-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .company-table div {
    grid-template-columns: 1fr;
  }

  .company-table dd {
    padding-top: 0;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
