:root {
  color-scheme: light;
  --ink: #09204a;
  --ink-soft: #274469;
  --muted: #627286;
  --line: #d8e1ec;
  --line-strong: #b9c8da;
  --page-bg: #eef4f8;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --blue: #0756a5;
  --blue-deep: #063f7e;
  --blue-navy: #042b5e;
  --green: #15943a;
  --green-deep: #0d762d;
  --alert: #d87919;
  --alert-soft: #fff3df;
  --shadow: 0 16px 38px rgba(9, 32, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--ink);
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(21, 148, 58, 0.32);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  border-bottom: 1px solid rgba(216, 225, 236, 0.92);
  padding: 0 42px;
  background: rgba(248, 251, 253, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 0;
}

.brand img {
  width: 196px;
  height: auto;
}

.nav-links,
.header-actions,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.header-actions {
  gap: 10px;
}

.primary-action,
.secondary-action,
.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-action {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(21, 148, 58, 0.22);
}

.primary-action:hover {
  background: var(--green-deep);
}

.secondary-action,
.outline-action {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue-deep);
}

.primary-action:active,
.secondary-action:active,
.outline-action:active {
  transform: translateY(1px);
}

.small {
  min-height: 44px;
  padding: 0 16px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(660px, calc(100dvh - 28px), 780px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--page-bg);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(1.08) contrast(1.07);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(238, 244, 248, 0.9) 0%, rgba(238, 244, 248, 0.76) 30%, rgba(238, 244, 248, 0.34) 48%, rgba(238, 244, 248, 0.04) 68%, rgba(238, 244, 248, 0) 100%),
    linear-gradient(180deg, rgba(238, 244, 248, 0.03) 0%, rgba(238, 244, 248, 0.04) 58%, rgba(238, 244, 248, 0.46) 100%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 48px));
  margin-left: clamp(24px, 6vw, 86px);
  padding: 82px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.12;
}

.line {
  display: block;
}

.mobile-title {
  display: none;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.capability-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: -58px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.capability-strip article {
  min-height: 120px;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.capability-strip article:last-child {
  border-right: 0;
}

.capability-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.capability-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.capability-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}

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

.section-heading h2,
.visibility-copy h2,
.facility-lead h2,
.contact-copy h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.22;
}

.section-heading p:not(.eyebrow),
.visibility-copy p,
.facility-lead p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.pain-section {
  width: 100%;
  margin: 0;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #eef4f8 0%, #f8fbfd 100%);
}

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

.pain-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 118px;
  border: 1px solid #ead8c4;
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(9, 32, 74, 0.07);
}

.alert-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(216, 121, 25, 0.24);
  background: var(--alert-soft);
  color: #b95b0b;
  font-weight: 900;
}

.pain-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.flow-band {
  position: relative;
  overflow: hidden;
  padding: 94px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(2, 23, 51, 0.94), rgba(2, 23, 51, 0.86)),
    url("./assets/facility-interior-0601.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.flow-band .eyebrow {
  color: #5dd879;
}

.flow-band h2 {
  color: #fff;
}

.flow-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.flow-grid article {
  position: relative;
  min-height: 218px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 12, 28, 0.2);
}

.flow-grid article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.78);
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.flow-grid h3,
.service-grid h3,
.facility-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.35;
}

.flow-grid p,
.service-grid p,
.facility-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

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

.services-section {
  width: 100%;
  max-width: none;
  padding: 94px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.service-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 32, 74, 0.06);
}

.service-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #ecf8ef;
  color: var(--green-deep);
  font-weight: 900;
}

.visibility-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 38px;
  align-items: center;
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.visibility-copy {
  max-width: 690px;
}

.visibility-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.visibility-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(21, 148, 58, 0.18);
  border-radius: 999px;
  padding: 0 14px;
  background: #ecf8ef;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.portal-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.portal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  padding: 0 4px 12px;
}

.portal-head span {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.portal-head strong {
  color: var(--green-deep);
  font-size: 13px;
}

.portal-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--surface-soft);
}

.portal-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.portal-row strong {
  color: var(--ink);
  text-align: right;
}

.portal-row em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid rgba(21, 148, 58, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  background: #ecf8ef;
  color: var(--green-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.facility-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: stretch;
}

.facility-copy-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
}

.facility-copy-panel > p:not(.eyebrow) {
  margin-bottom: 0;
}

.facility-facts {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.facility-facts article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 17px 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 32, 74, 0.06);
}

.facility-facts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.facility-facts strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.facility-media-grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.facility-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.facility-main-image {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.asset-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.facility-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 32, 74, 0.06);
}

.facility-assurance article {
  min-height: 142px;
  border-right: 1px solid var(--line);
  padding: 20px;
}

.facility-assurance article:last-child {
  border-right: 0;
}

.facility-assurance h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.4;
}

.facility-assurance p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 30px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 84px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(32px, 4vw, 46px);
  background: linear-gradient(135deg, var(--blue-navy) 0%, #063f7e 100%);
  box-shadow: 0 18px 40px rgba(4, 43, 94, 0.2);
}

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

.contact-copy .eyebrow {
  color: #5dd879;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.contact-mail {
  width: fit-content;
}

.company-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
}

.company-list div {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
}

.company-list dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.company-list a {
  color: inherit;
  text-decoration: none;
}

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

.contact-card {
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(9, 32, 74, 0.08);
}

.contact-card strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.35;
}

.contact-card strong span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

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

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

.contact-checklist li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(108px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px 11px 40px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.contact-checklist li::before {
  position: absolute;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.contact-checklist span {
  color: var(--ink);
}

.contact-checklist em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-note {
  font-size: 13px;
}

.contact-card .secondary-action {
  width: fit-content;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 28px 42px;
  background: #f8fbfd;
}

.footer-brand {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer nav {
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 16px 24px;
  }

  .nav-links,
  .header-actions {
    justify-content: flex-start;
  }

  .capability-strip,
  .pain-grid,
  .service-grid,
  .facility-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-strip article:nth-child(2) {
    border-right: 0;
  }

  .capability-strip article {
    border-bottom: 1px solid var(--line);
  }

  .capability-strip article:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .flow-grid article::after {
    display: none;
  }

  .visibility-band,
  .facility-showcase,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .facility-assurance article:nth-child(2) {
    border-right: 0;
  }

  .facility-assurance article {
    border-bottom: 1px solid var(--line);
  }

  .facility-assurance article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding: 12px 14px;
  }

  .brand img {
    width: min(154px, calc(100vw - 32px));
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(238, 244, 248, 0.86) 0%, rgba(238, 244, 248, 0.54) 46%, rgba(238, 244, 248, 0.06) 100%),
      linear-gradient(180deg, rgba(238, 244, 248, 0.34) 0%, rgba(238, 244, 248, 0.08) 54%, rgba(238, 244, 248, 0.5) 100%);
  }

  .hero-content {
    width: min(340px, calc(100vw - 32px));
    margin-left: 16px;
    padding: 26px 0;
  }

  .hero-title {
    font-size: clamp(28px, 7.5vw, 30px);
    line-height: 1.12;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }

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

  .primary-action,
  .secondary-action,
  .outline-action {
    width: 100%;
    min-width: 0;
  }

  .capability-strip,
  .pain-grid,
  .service-grid,
  .flow-grid,
  .facility-assurance {
    grid-template-columns: 1fr;
  }

  .capability-strip {
    width: calc(100% - 28px);
    margin-top: -34px;
  }

  .capability-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .capability-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .pain-section,
  .flow-band,
  .visibility-band {
    padding: 66px 14px;
  }

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

  .section-heading h2,
  .visibility-copy h2,
  .facility-copy-panel h2,
  .contact-copy h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .visibility-band,
  .contact-band {
    gap: 22px;
  }

  .portal-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portal-row strong,
  .portal-row em {
    justify-self: start;
    text-align: left;
  }

  .facility-media-grid {
    grid-template-columns: 1fr;
  }

  .facility-main-image {
    aspect-ratio: 4 / 3;
  }

  .facility-media-grid img {
    min-height: 230px;
  }

  .facility-assurance article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facility-assurance article:last-child {
    border-bottom: 0;
  }

  .contact-band {
    width: calc(100% - 28px);
    margin-bottom: 64px;
    padding: 22px;
  }

  .contact-checklist li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-mail {
    width: 100%;
  }

  .site-footer {
    padding: 24px 14px;
  }

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