:root {
  --ink: #102027;
  --deep: #12343a;
  --teal: #1f8a8a;
  --mint: #d9f0eb;
  --gold: #c9933a;
  --paper: #f8f6f0;
  --white: #ffffff;
  --line: rgba(16, 32, 39, 0.14);
  --muted: #65747a;
  --shadow: 0 18px 50px rgba(16, 32, 39, 0.14);
  --max: 1180px;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 240, 0.28);
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  backdrop-filter: blur(22px) saturate(1.12);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(330px, 58vw);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: conic-gradient(from 210deg, var(--teal), var(--deep), var(--gold), var(--teal));
  box-shadow: 0 10px 24px rgba(31, 138, 138, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #31464d;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(31, 138, 138, 0.25);
}

.button.secondary {
  color: var(--deep);
  border-color: rgba(18, 52, 58, 0.24);
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #102027;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.9) contrast(1.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 20%, rgba(31, 138, 138, 0.34), transparent 32%),
    linear-gradient(90deg, rgba(5, 16, 20, 0.94) 0%, rgba(5, 16, 20, 0.76) 48%, rgba(5, 16, 20, 0.36) 100%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 118px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b9ebe4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2.2vw, 22px);
}

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

.hero-panel {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(520px, 48vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(1.12);
  color: rgba(255, 255, 255, 0.86);
}

.hero-panel strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
}

.section {
  padding: 94px 0;
}

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

.section.dark {
  color: var(--white);
  background: var(--deep);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.6fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.split h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head p,
.split p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p,
.dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.value-grid,
.service-grid,
.problem-grid,
.flow-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.tile,
.service-card,
.problem,
.flow-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.tile {
  padding: 30px;
  min-height: 234px;
}

.tile .num,
.service-card .num,
.flow-step .num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--teal);
  border: 1px solid rgba(31, 138, 138, 0.26);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.tile h3,
.service-card h3,
.problem h3,
.flow-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.tile p,
.service-card p,
.problem p,
.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 32, 39, 0.05);
}

.service-card ul,
.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  color: #41545b;
  font-size: 14px;
}

.service-card li + li,
.plain-list li + li {
  margin-top: 9px;
}

.service-card li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 62px;
  align-items: center;
}

.route-visual {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--deep);
}

.problem {
  padding: 22px;
  min-height: 146px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 52, 58, 0.94), rgba(31, 138, 138, 0.84)),
    url("route-map.svg") center / cover;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 86px 0 70px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 32, 39, 0.94), rgba(18, 52, 58, 0.86)),
    url("route-map.svg") center / cover;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.info-table th,
.info-table td {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(16, 32, 39, 0.08);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 220px;
  color: var(--deep);
  background: #eef5f3;
}


.map-section {
  margin-top: 34px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 32, 39, 0.04);
}

.map-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-copy h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
}

.map-copy p {
  margin: 0;
  color: var(--muted);
}

.mod-map-wrapper {
  position: relative;
  min-height: 420px;
  background: #d9f0eb;
}

.mod-map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.55fr);
  gap: 34px;
}

.contact-box {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.contact-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-item strong {
  display: block;
  font-size: 22px;
}
.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #0e2228;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: var(--white);
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 13px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-panel {
    position: relative;
    width: 100%;
    margin-top: 42px;
    bottom: auto;
  }

  .section-head,
  .split,
  .contact-layout,
  .map-card,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand {
    width: min(280px, 72vw);
  }

  .wrap,
  .nav,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 64px 0;
  }

  .value-grid,
  .service-grid,
  .problem-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .mod-map-wrapper {
    min-height: 360px;
  }

  .cta-band {
    padding: 28px;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

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

.company-business-list {
  margin-top: 0;
}

.company-business-list li {
  font-size: 15px;
}

.company-business-list strong {
  color: var(--deep);
}
.hero-next {
  min-height: calc(100svh - 74px);
  isolation: isolate;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: 78px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: 54px;
  align-items: center;
  color: var(--white);
}

.hero-copy h1 {
  max-width: 820px;
  margin: 20px 0 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-intel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.hero-intel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 240, 235, 0.14);
  border-radius: 6px;
  pointer-events: none;
}

.intel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.intel-head strong {
  color: #d9f0eb;
  letter-spacing: 0;
}

.intel-route {
  position: relative;
  margin: 26px 0 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.intel-route::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 11px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.intel-route span {
  position: relative;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.intel-route span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9f0eb;
  box-shadow: 0 0 0 6px rgba(217, 240, 235, 0.12);
}

.intel-route .is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 147, 58, 0.18);
}

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

.intel-grid div {
  min-height: 112px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(16, 32, 39, 0.42);
}

.intel-grid span,
.intel-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.intel-grid strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.hero-intel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-marquee {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 16, 20, 0.42);
  backdrop-filter: blur(16px);
}

.hero-marquee span {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-next .hero-inner,
.hero-next .hero-panel {
  display: none;
}

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 0 118px;
  }

  .hero-intel {
    max-width: 620px;
  }

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

@media (max-width: 620px) {
  .hero-shell {
    width: min(100% - 28px, var(--max));
    padding: 52px 0 132px;
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-intel {
    padding: 18px;
  }

  .intel-route {
    grid-template-columns: 1fr;
  }

  .intel-route::before,
  .intel-route span::before {
    display: none;
  }

  .intel-route span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
  }

  .intel-grid {
    grid-template-columns: 1fr;
  }

  .hero-marquee span {
    min-height: 48px;
    padding: 0 10px;
    font-size: 10px;
  }
}
.home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(248, 246, 240, 0.18);
  border-bottom: 1px solid rgba(16, 32, 39, 0.12);
  box-shadow: 0 14px 36px rgba(16, 32, 39, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
}

.home .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 246, 240, 0.38));
}

.home .nav-links {
  color: #102027;
  text-shadow: none;
}

.home .nav-links a::after {
  background: var(--gold);
}

.home .button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(31, 138, 138, 0.25);
}

.home .hero-next,
.home .hero-shell {
  min-height: 100svh;
}

.home .hero-shell {
  padding-top: 118px;
}

.home .brand-logo {
  filter: none;
}

@media (max-width: 900px) {
  .home .site-header {
    background: rgba(248, 246, 240, 0.42);
    backdrop-filter: blur(16px);
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-video {
  will-change: transform;
  transform: scale(1.04);
}

.home.has-scrolled .site-header {
  background: rgba(248, 246, 240, 0.52);
  box-shadow: 0 12px 30px rgba(16, 32, 39, 0.16);
}

.service-card,
.tile,
.problem,
.flow-step {
  transition-property: opacity, transform, box-shadow, border-color;
}

.service-card:hover,
.tile:hover,
.problem:hover,
.flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 138, 138, 0.26);
  box-shadow: 0 18px 42px rgba(16, 32, 39, 0.11);
}

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

  .reveal,
  .service-card,
  .tile,
  .problem,
  .flow-step,
  .button,
  .hero-video {
    transition: none;
    transform: none !important;
  }
}
.home.scrolling-down .site-header {
  transform: translateY(-82%);
}

.site-header {
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.hero-intel {
  animation: panelFloat 7s ease-in-out infinite;
}

@keyframes panelFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.hero-marquee span {
  position: relative;
  overflow: hidden;
}

.hero-marquee span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.16) 45%, transparent 72%);
  transform: translateX(-120%);
  animation: labelSweep 5.8s ease-in-out infinite;
  animation-delay: calc(var(--marquee-index, 0) * 220ms);
}

.hero-marquee span:nth-child(1) { --marquee-index: 1; }
.hero-marquee span:nth-child(2) { --marquee-index: 2; }
.hero-marquee span:nth-child(3) { --marquee-index: 3; }
.hero-marquee span:nth-child(4) { --marquee-index: 4; }

@keyframes labelSweep {
  0%, 38% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

.service-card,
.tile,
.problem,
.flow-step {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.tile::after,
.problem::after,
.flow-step::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(31, 138, 138, 0.16), transparent 34%);
  transition: opacity 180ms ease;
}

.service-card:hover::after,
.tile:hover::after,
.problem:hover::after,
.flow-step:hover::after {
  opacity: 1;
}

.intel-route .is-active::after {
  content: "";
  position: absolute;
  top: 9px;
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.35; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-intel,
  .hero-marquee span::before,
  .intel-route .is-active::after {
    animation: none;
  }

  .home.scrolling-down .site-header {
    transform: none;
  }
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 120;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(201, 147, 58, 0.72);
  outline-offset: 3px;
}
.section {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

@media (max-width: 620px) {
  .home .hero-shell {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 116px;
  }

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

  .hero-intel {
    display: none;
  }

  .hero-marquee {
    grid-template-columns: 1fr 1fr;
  }

  .home.scrolling-down .site-header {
    transform: none;
  }
}
.hero-video.is-paused-for-data {
  display: none;
}
.service-hero {
  background:
    linear-gradient(120deg, rgba(16, 32, 39, 0.95), rgba(31, 138, 138, 0.78)),
    url("route-map.svg") center / cover;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.service-overview h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.service-overview p {
  margin: 0;
  color: var(--muted);
}

.service-summary-grid .service-card {
  min-height: 230px;
}

.service-detail-band {
  background: linear-gradient(180deg, var(--paper), #eef5f3);
}

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

.service-detail {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(16, 32, 39, 0.04);
}

.service-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.service-detail-head .num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.service-detail-head h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}

.service-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 34px;
}

.service-fit {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.service-fit h3,
.service-scope h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.service-scope {
  padding: 24px;
  border-radius: 8px;
  background: #eef5f3;
}

.service-scope ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-scope li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 32, 39, 0.12);
  color: #31464d;
  font-size: 14px;
  font-weight: 700;
}

.service-scope li:last-child {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .service-overview,
  .service-detail-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-detail {
    padding: 24px;
  }

  .service-detail-head {
    flex-direction: column;
  }
}
/* Homepage enrichment */
.align-left {
  text-align: left;
  margin-left: 0;
}

.industry-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.industry-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 32, 39, 0.07);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 260ms ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.industry-card h3 {
  margin: 40px 0 14px;
  font-size: 21px;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.operation-board {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: 44px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 247, 0.92)),
    radial-gradient(circle at 86% 18%, rgba(31, 138, 138, 0.18), transparent 34%);
  box-shadow: 0 24px 60px rgba(16, 32, 39, 0.08);
}

.operation-board h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.operation-steps {
  display: grid;
  gap: 12px;
}

.operation-steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.operation-steps span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.operation-steps strong {
  font-size: 17px;
}

.operation-steps small {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operation-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: auto;
  }

  .operation-board {
    padding: 28px;
  }
}
/* Service page enrichment */
.service-prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: start;
}

.service-prep-layout h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

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

.prep-list article,
.faq-grid article {
  padding: 24px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 32, 39, 0.06);
}

.prep-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.prep-list h3,
.faq-grid h3 {
  margin: 12px 0 10px;
  font-size: 18px;
}

.prep-list p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.faq-grid article {
  box-shadow: none;
}

@media (max-width: 900px) {
  .service-prep-layout,
  .prep-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* Additional content pages */
.page-hero-soft {
  background:
    linear-gradient(120deg, rgba(16, 32, 39, 0.94), rgba(31, 138, 138, 0.74)),
    url("route-map.svg") center / cover;
}

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

.usecase-card {
  position: relative;
  min-height: 380px;
  padding: 34px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 32, 39, 0.07);
  overflow: hidden;
}

.usecase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.usecase-card > span,
.timeline article > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.usecase-card h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

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

.decision-panel,
.prep-board {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.76fr);
  gap: 42px;
  align-items: start;
}

.decision-panel h2,
.prep-board h2,
.faq-contact h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.decision-list {
  display: grid;
  gap: 12px;
}

.decision-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
}

.decision-list strong {
  color: var(--deep);
}

.decision-list span {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(16, 32, 39, 0.06);
}

.timeline h2 {
  margin: 0;
  font-size: 22px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

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

.faq-list article {
  padding: 28px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 32, 39, 0.055);
}

.faq-list h2 {
  margin: 0 0 12px;
  font-size: 19px;
}

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

.faq-contact {
  max-width: 840px;
  text-align: center;
}

.faq-contact p {
  margin: 0 auto 24px;
  max-width: 660px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 16px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .usecase-grid,
  .decision-panel,
  .prep-board,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 70px 1fr;
  }

  .timeline p {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .nav-links .button {
    flex: 0 0 auto;
  }
}

@media (max-width: 620px) {
  .usecase-card,
  .timeline article,
  .faq-list article {
    padding: 24px;
  }

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

  .timeline p {
    grid-column: auto;
  }

  .decision-list div {
    grid-template-columns: 1fr;
  }
}
/* Homepage page pathways */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card {
  display: block;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(16, 32, 39, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 32, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 32, 39, 0.1);
}

.pathway-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-card h3 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .pathway-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile hamburger navigation */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(16, 32, 39, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(1.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }

  .nav {
    position: relative;
    min-height: 68px;
    flex-direction: row;
    align-items: center;
    padding: 11px 0;
  }

  .brand {
    width: min(280px, calc(100% - 64px));
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-height: min(72vh, 520px);
    padding: 10px;
    overflow: auto;
    border: 1px solid rgba(16, 32, 39, 0.12);
    border-radius: 8px;
    background: rgba(248, 246, 240, 0.9);
    box-shadow: 0 24px 60px rgba(16, 32, 39, 0.16);
    backdrop-filter: blur(22px) saturate(1.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 8px 12px;
    border-radius: 6px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(31, 138, 138, 0.1);
  }

  .nav-links .button {
    width: 100%;
    margin-top: 6px;
  }

  .home .nav-links {
    color: #102027;
  }
}
.home.menu-open .site-header {
  transform: none;
}
.contact-only-layout {
  max-width: 900px;
}

.contact-only-box {
  padding: 38px;
}

.contact-only-box .lead {
  max-width: 720px;
}

@media (max-width: 620px) {
  .contact-only-box {
    padding: 28px;
  }
}
