:root {
  --primary: #0e6d61;
  --primary-dark: #095247;
  --primary-soft: #e5f1ef;
  --ink: #09092a;
  --text: #1c2524;
  --text-muted: #66736f;
  --surface: #ffffff;
  --surface-muted: #f0f0f0;
  --surface-soft: #f7faf9;
  --footer: #1c1d21;
  --border: #dce5e2;
  --shadow: 0 18px 48px rgb(20 51 46 / 10%);
  --header-height: 78px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --halo-search-widget-base-font-size: 16px;
  --halo-search-widget-base-font-family:
    Inter, 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  --halo-search-widget-base-rounded: 12px;
  --halo-search-widget-base-bg-color: #ffffff;
  --halo-search-widget-primary-color: var(--primary);
  --halo-search-widget-muted-color: var(--text-muted);
  --halo-search-widget-content-color: var(--text);
  --halo-search-widget-modal-bg-color: #ffffff;
  --halo-search-widget-modal-layer-color: rgb(5 25 22 / 62%);
  --halo-search-widget-hit-bg-color: var(--surface-soft);
  --halo-search-widget-divider-color: var(--border);
  --halo-search-widget-kbd-border-color: #cad8d4;
  --halo-search-widget-kbd-shadow: 0 2px 0 rgb(14 109 97 / 12%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family:
    Inter,
    'PingFang SC',
    'Microsoft YaHei',
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgb(14 109 97 / 32%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100%, 1072px);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-main {
  min-height: 65vh;
  padding-top: var(--header-height);
}

.section {
  padding-block: 92px;
}

.section--light,
.listing-page,
.search-page {
  background: var(--surface-soft);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading {
  margin-bottom: 64px;
  color: var(--primary);
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
}

.section-heading p {
  margin: 2px 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.section-heading--row h2 {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgb(14 109 97 / 15%);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 26px rgb(14 109 97 / 22%);
  transform: translateY(-1px);
}

.button--compact {
  min-height: 38px;
  padding: 9px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.button--static,
.button--static:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgb(14 109 97 / 15%);
  cursor: default;
  transform: none;
  user-select: none;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(220 229 226 / 70%);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand__logo {
  width: 70px;
  max-height: 34px;
  object-fit: contain;
}

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

.primary-nav__list {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list a {
  position: relative;
  display: inline-flex;
  padding-block: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--primary);
  content: '';
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav__list a:hover,
.primary-nav__list a.is-active {
  color: var(--primary);
}

.primary-nav__list a:hover::after,
.primary-nav__list a.is-active::after {
  transform: scaleX(1);
}

.primary-nav__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg,
.search-panel__icon svg {
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.icon-button:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
}

.nav-toggle {
  display: none;
}

/* Home hero */
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background-color: var(--surface-muted);
  background-image: url('../images/home/section1-bg-pc.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__inner {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 64px;
  padding-block: 76px;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: #173a34;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero__eyebrow img {
  width: 42px;
}

.hero h1 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 13px;
  color: var(--primary);
  font-size: clamp(2.5rem, 4.1vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.hero h1::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #1d2927;
  content: '';
}

.hero__english {
  margin: 0 0 14px;
  color: #111;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero__projects {
  margin: 0;
  padding: 0;
  color: #111;
  font-size: 0.98rem;
  line-height: 2;
  list-style: none;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__visual img {
  width: 100%;
  filter: drop-shadow(0 20px 35px rgb(14 74 65 / 6%));
}

/* Home partnership */
.partnership {
  color: var(--primary);
  background: var(--surface-muted);
}

.partnership__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.partner-list {
  display: grid;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.partner-list img {
  width: 118px;
  max-height: 110px;
  object-fit: contain;
}

.partner-list h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.partner-list p {
  margin: 0;
  color: #235f56;
  font-size: 0.98rem;
  line-height: 1.75;
}

.partnership__visual img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 45px rgb(64 71 69 / 10%);
}

/* Generic listing */
.listing-page,
.search-page {
  min-height: 70vh;
}

.listing-shell {
  max-width: 980px;
}

.page-heading {
  margin-bottom: 52px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.page-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.page-heading p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.post-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgb(24 54 49 / 5%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.post-card:hover {
  border-color: rgb(14 109 97 / 32%);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.post-card__cover {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-muted);
}

.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.post-card:hover .post-card__cover img {
  transform: scale(1.025);
}

.post-card__body {
  padding: 26px;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.post-card h3 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.45;
}

.post-card h3 a:hover {
  color: var(--primary);
}

.post-card__excerpt {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.94rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.post-card__terms,
.article__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-card__terms a,
.article__terms a,
.article__footer a {
  display: inline-flex;
  padding: 3px 9px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 0.75rem;
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.pagination a,
.pagination > .is-disabled {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.pagination a:last-child,
.pagination > .is-disabled:last-child {
  justify-self: end;
}

.pagination a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.pagination .is-disabled {
  color: #9aa5a1;
  background: #edf1ef;
}

.pagination__status {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.empty-state {
  padding: 64px 28px;
  text-align: center;
  background: var(--surface);
  border: 1px dashed #bfd1cc;
  border-radius: var(--radius-md);
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.empty-state p {
  margin: 0;
  color: var(--text-muted);
}

/* Archives */
.archive-list {
  display: grid;
  gap: 30px;
}

.archive-year {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 36px;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgb(22 61 54 / 6%);
}

.archive-year > h2 {
  position: relative;
  margin: 0;
  color: var(--primary);
  font-size: 2.4rem;
  line-height: 1;
}

.archive-year > h2::after {
  display: block;
  margin-top: 10px;
  color: rgb(14 109 97 / 42%);
  content: 'NEWS';
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.archive-month {
  grid-column: 2;
}

.archive-month + .archive-month {
  margin-top: 28px;
}

.archive-month h3 {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1;
}

.archive-month h3 small {
  font-size: 0.72rem;
  font-weight: 500;
}

.archive-month ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-month li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  border-radius: 6px;
  transition: background 180ms ease;
}

.archive-month li:hover {
  background: var(--primary-soft);
}

.archive-month time {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.archive-month a {
  color: var(--ink);
  font-weight: 650;
}

.archive-month a:hover {
  color: var(--primary);
}

/* Terms */
.category-tree,
.category-tree ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-tree .category-tree {
  margin: 14px 0 0 24px;
}

.term-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgb(22 61 54 / 4%);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.term-card:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 32px rgb(22 61 54 / 9%);
  transform: translateY(-2px);
}

.term-card span {
  display: grid;
}

.term-card strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.term-card small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.term-card em {
  flex: 0 0 auto;
  color: var(--primary);
  padding: 5px 11px;
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-style: normal;
}

.tag-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-cloud a {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgb(22 61 54 / 4%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tag-cloud a:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 14px 32px rgb(22 61 54 / 9%);
  transform: translateY(-2px);
}

.tag-cloud span {
  min-width: 0;
  overflow: hidden;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-cloud em {
  flex: 0 0 auto;
  display: inline-flex;
  min-width: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
  font-size: 0.76rem;
  font-style: normal;
}

.tag-cloud em strong {
  font-size: 1rem;
  line-height: 1;
}

/* Article and page */
.article-shell {
  max-width: 880px;
}

.article {
  padding-block: 72px 100px;
}

.article__header {
  margin-bottom: 40px;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.article__header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article__terms {
  justify-content: center;
  margin-top: 18px;
}

.article__cover {
  width: 100%;
  max-height: 520px;
  margin-bottom: 48px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.article__content {
  font-size: 1.05rem;
}

.article__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.rich-content {
  overflow-wrap: anywhere;
}

.rich-content > *:first-child {
  margin-top: 0;
}

.rich-content > *:last-child {
  margin-bottom: 0;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin: 2em 0 0.7em;
  color: var(--ink);
  line-height: 1.35;
}

.rich-content p,
.rich-content ul,
.rich-content ol {
  margin-block: 1.1em;
}

.rich-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rich-content blockquote {
  margin: 1.5em 0;
  padding: 16px 22px;
  color: #3e504c;
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.rich-content pre {
  max-width: 100%;
  padding: 20px;
  overflow-x: auto;
  color: #effffb;
  background: #102824;
  border-radius: var(--radius-sm);
}

.rich-content code {
  padding: 0.12em 0.38em;
  color: #0b6155;
  background: var(--primary-soft);
  border-radius: 4px;
}

.rich-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.rich-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.rich-content th,
.rich-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.rich-content iframe,
.rich-content video {
  max-width: 100%;
}

.comments {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.comments h2 {
  color: var(--ink);
  font-size: 1.45rem;
}

.author-heading {
  display: flex;
  align-items: center;
  gap: 28px;
}

.author-heading img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 4px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 6px 22px rgb(16 58 50 / 12%);
}

/* Search custom page */
.search-panel {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.search-panel__icon {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  padding: 25px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
}

.search-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.65rem;
}

.search-panel p {
  margin: 6px 0 20px;
  color: var(--text-muted);
}

/* Original corporate pages */
.company-page {
  overflow: hidden;
  background: #fafafa;
}

.company-page .shell {
  width: min(100%, 1264px);
}

.company-hero {
  position: relative;
  min-height: 382px;
  overflow: hidden;
  background-color: #e8eceb;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.company-hero--value {
  background-image: url('../images/value-module/section1-bg-pc.webp');
}

.company-hero--technology {
  background-image: url('../images/technology-application/section1-bg-pc.webp');
}

.company-hero--operation {
  background-image: url('../images/project-operation/section1-bg-pc.webp');
}

.company-hero--startup {
  background-image: url('../images/startup-incubation/section1-bg-pc.webp');
}

.company-hero--about {
  background-image: url('../images/about-us/section1-bg-pc.webp');
}

.company-hero--news,
.company-hero--news-categories,
.company-hero--news-tags {
  background-image:
    linear-gradient(90deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 18%)),
    url('../images/value-module/section1-bg-pc.webp');
}

.company-hero__inner {
  display: flex;
  min-height: 382px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 74px;
}

.company-hero h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.65rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.company-hero__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 0.12em;
  margin: 8px 0 0;
  padding: 4px 36px;
  color: #fff;
  background: var(--primary);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 250;
  line-height: 1.3;
}

.company-hero__label strong {
  font-weight: 800;
}

.company-hero__label--wide {
  padding-inline: 14px;
}

.company-hero__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: max(24px, calc((100vw - 1216px) / 2));
  z-index: 1;
  height: 12px;
  background: var(--primary);
}

.company-section {
  padding-block: 88px;
}

.news-directory {
  min-height: 480px;
  background:
    radial-gradient(circle at 90% 8%, rgb(14 109 97 / 6%), transparent 28%),
    #fafafa;
}

.news-content-shell {
  max-width: 1100px;
}

.news-section-heading {
  margin-bottom: 54px;
  text-align: center;
}

.news-section-heading > span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgb(14 109 97 / 52%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.news-section-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.4;
}

.news-section-heading p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.news-taxonomy-panel {
  padding: 30px;
  background: rgb(255 255 255 / 70%);
  border: 1px solid rgb(220 229 226 / 85%);
  border-radius: var(--radius-md);
}

.company-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  color: rgb(0 0 0 / 38%);
  font-size: 0.78rem;
  line-height: 1.5;
}

.company-kicker img {
  width: 8px;
  flex: 0 0 auto;
}

.mobile-only {
  display: none;
}

/* Value */
.value-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: 76px;
}

.value-overview__media {
  grid-column: 2;
}

.value-overview__media img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.value-list {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list h2,
.feature-row__copy h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: clamp(1.7rem, 2.7vw, 2.15rem);
  line-height: 1.35;
}

.value-list p:not(.company-kicker),
.feature-row__copy > p:not(.company-kicker) {
  margin: 0;
  color: rgb(0 0 0 / 78%);
  font-size: 0.94rem;
  line-height: 1.65;
}

.value-list p + p,
.feature-row__copy > p + p {
  margin-top: 20px;
}

/* Technology */
.technology-overview {
  background: #fafafa;
}

.feature-list {
  display: grid;
  gap: 94px;
}

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

.feature-row--reverse .feature-row__media {
  grid-column: 2;
}

.feature-row--reverse .feature-row__copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-row__media img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.feature-row__copy h2 {
  display: flex;
  align-items: flex-start;
}

.feature-row__copy h2 span {
  flex: 0 0 auto;
}

.feature-row__copy h3 {
  margin: -4px 0 12px;
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.technology-projects {
  background-color: #f4f4f4;
  background-image: url('../images/technology-application/section3-bg-pc.webp');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.technology-projects__heading {
  padding-bottom: 14px;
  color: var(--primary);
  text-align: center;
  border-bottom: 1px solid var(--primary);
}

.technology-projects__heading h2,
.technology-projects__heading p {
  margin: 0;
}

.technology-projects__heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.35;
}

.technology-projects__heading p {
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
}

.technology-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.technology-card {
  min-height: 430px;
  padding: 34px 22px 40px;
  background: #fff;
  border: 1px solid #ecebef;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgb(35 67 60 / 5%);
}

.technology-card > img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.technology-card h3 {
  min-height: 84px;
  margin: 22px 0 16px;
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.55;
}

.technology-card p {
  margin: 0;
  color: rgb(0 0 0 / 76%);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Project operation */
.operation-section {
  background: #fafafa;
}

.operation-section--wellness {
  padding-top: 34px;
}

.operation-heading {
  margin-bottom: 64px;
  color: var(--primary);
  text-align: center;
}

.operation-heading h2,
.operation-heading h3,
.operation-heading p {
  margin: 0;
}

.operation-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.45;
}

.operation-heading h3 {
  font-size: clamp(1.55rem, 3.3vw, 2.55rem);
  line-height: 1.35;
}

.operation-heading p {
  margin-top: 12px;
  color: rgb(0 0 0 / 62%);
  font-size: 1rem;
  line-height: 1.65;
}

.operation-banner {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.operation-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.operation-tech-card > h3 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 1.28rem;
  text-align: center;
}

.operation-tech-card > img {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.operation-tech-card > div {
  min-height: 350px;
  padding: 26px 24px 32px;
  background: #fff;
  border: 1px solid #ecebef;
  border-top: 0;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.operation-tech-card h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1.45;
}

.operation-tech-card p {
  margin: 18px 0 0;
  color: rgb(0 0 0 / 78%);
  font-size: 0.82rem;
  line-height: 1.75;
}

.wellness-list {
  display: grid;
  gap: 72px;
  margin-top: 72px;
}

.wellness-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 72px;
}

.wellness-row--reverse .wellness-row__media {
  grid-column: 2;
}

.wellness-row--reverse .wellness-row__copy {
  grid-column: 1;
  grid-row: 1;
}

.wellness-row__media img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.wellness-row__copy > h3 {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: 1.55rem;
  line-height: 1.5;
}

.wellness-row__copy ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wellness-row__copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: var(--radius-sm);
}

.wellness-row__copy li > img {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
}

.wellness-row__copy h4,
.wellness-row__copy p {
  margin: 0;
}

.wellness-row__copy h4 {
  color: #111;
  font-size: 0.98rem;
  line-height: 1.5;
}

.wellness-row__copy p {
  margin-top: 5px;
  color: rgb(0 0 0 / 76%);
  font-size: 0.79rem;
  line-height: 1.65;
}

/* Incubation */
.incubation-section {
  padding-top: 126px;
  padding-bottom: 42px;
}

.incubation-section--second {
  padding-top: 92px;
  padding-bottom: 126px;
}

.line-heading {
  display: grid;
  grid-template-columns: minmax(70px, 208px) auto minmax(70px, 208px);
  align-items: center;
  justify-content: center;
  gap: 70px;
  color: var(--primary);
  text-align: center;
}

.line-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  white-space: nowrap;
}

.line-heading > span {
  width: 208px;
  height: 2px;
}

.line-heading > span:first-child {
  background: linear-gradient(90deg, transparent, var(--primary));
}

.line-heading > span:last-child {
  background: linear-gradient(90deg, var(--primary), transparent);
}

.incubation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15%;
  margin: 64px 0 0;
  padding: 0 7%;
  text-align: center;
  list-style: none;
}

.incubation-grid img {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  object-fit: contain;
}

.incubation-grid p {
  margin: 14px 0 0;
  color: rgb(0 0 0 / 80%);
  font-size: 1.05rem;
  line-height: 1.55;
}

.incubation-grid strong,
.incubation-grid span {
  display: block;
  font-weight: 400;
}

/* About */
.about-intro {
  text-align: center;
}

.about-intro h2,
.about-intro p {
  margin: 0;
}

.about-intro h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.45;
}

.about-intro p {
  margin-top: 14px;
  color: rgb(0 0 0 / 62%);
  font-size: 1.18rem;
  line-height: 1.7;
}

.about-details {
  background: #f5f5f5;
}

.about-details__list {
  display: grid;
  gap: 104px;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.about-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.about-row--reverse .about-row__media {
  grid-column: 2;
}

.about-row--reverse .about-row__copy {
  grid-column: 1;
  grid-row: 1;
}

.about-row__media img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.about-row__media--portrait {
  max-width: 412px;
  justify-self: end;
}

.about-row__copy h2 {
  margin: 0;
  color: var(--primary);
  font-size: 1.65rem;
  line-height: 1.5;
}

.about-row__copy p {
  margin: 24px 0 0;
  color: rgb(0 0 0 / 78%);
  font-size: 1rem;
  line-height: 1.75;
}

/* Footer */
.site-footer {
  color: #fff;
}

.site-footer__banner {
  padding-block: 46px;
  text-align: center;
  background-color: var(--primary);
  background-image: url('../images/footer/bg-pc.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-footer__banner h2 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
}

.site-footer__banner p {
  margin: 0;
  font-size: 0.96rem;
}

.site-footer__base {
  padding-block: 26px;
  background: var(--footer);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.site-footer__logo {
  width: 70px;
  max-height: 32px;
  object-fit: contain;
}

.site-footer__inner p {
  margin: 10px 0 0;
  font-size: 0.82rem;
}

.site-footer__meta {
  color: rgb(255 255 255 / 76%);
  text-align: right;
}

.site-footer__meta nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.82rem;
}

.site-footer__meta a:hover {
  color: #fff;
}

/* Progressive animation */
.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal--left {
  transform: translateX(-38px);
}

.has-js .reveal--right {
  transform: translateX(38px);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 1800px) {
  .shell {
    width: min(100%, 1536px);
    padding-inline: 48px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.72fr);
  }

  .hero h1 {
    font-size: 5rem;
  }
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 20px;
  }

  .primary-nav__list {
    gap: 18px;
  }

  .primary-nav__list a {
    font-size: 0.88rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 40px;
  }
}

@media (min-width: 1800px) {
  .company-page .shell {
    width: min(100%, 1632px);
  }

  .company-hero__line {
    left: max(48px, calc((100vw - 1536px) / 2));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: auto;
    background: var(--primary);
    border-radius: 2px;
    transition:
      transform 220ms ease,
      opacity 180ms ease;
  }

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

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

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

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 35px rgb(9 36 31 / 12%);
  }

  .has-js .primary-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 200ms;
  }

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

  .primary-nav__list {
    display: grid;
    gap: 0;
  }

  .primary-nav__list a {
    display: flex;
    padding: 13px 2px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .primary-nav__list a::after {
    display: none;
  }

  .primary-nav__actions {
    margin-top: 20px;
  }

  .primary-nav__actions .button {
    flex: 1;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 56px;
  }

  .hero__copy {
    max-width: 650px;
  }

  .hero__visual {
    max-width: 560px;
    justify-self: center;
  }

  .partnership__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .partnership__visual {
    max-width: 600px;
    grid-row: 1;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 64px;
  }

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

  .section-heading--row {
    display: grid;
  }

  .has-js .reveal--left,
  .has-js .reveal--right {
    transform: translateY(26px);
  }

  .hero {
    background-image: url('../images/home/section1-bg.webp');
    background-position: top center;
    background-size: 100% auto;
  }

  .hero__inner {
    padding-block: 40px 56px;
  }

  .hero__eyebrow {
    align-items: flex-start;
    font-size: 0.74rem;
  }

  .hero__eyebrow img {
    width: 38px;
    margin-top: 2px;
  }

  .hero h1 {
    margin-bottom: 12px;
    padding-bottom: 8px;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero__english {
    font-size: 0.72rem;
  }

  .hero__projects {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .partner-list li {
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }

  .partner-list img {
    width: 90px;
    max-height: 90px;
  }

  .partner-list h3 {
    font-size: 1rem;
  }

  .partner-list p {
    font-size: 0.86rem;
  }

  .post-grid,
  .tag-cloud {
    grid-template-columns: 1fr;
  }

  .archive-year {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .archive-month {
    grid-column: 1;
  }

  .article {
    padding-block: 52px 72px;
  }

  .article__content {
    font-size: 1rem;
  }

  .author-heading,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__meta {
    text-align: left;
  }

  .site-footer__meta nav {
    justify-content: flex-start;
  }

  .search-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .search-panel__icon {
    width: 72px;
    height: 72px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .shell {
    padding-inline: 20px;
  }

  .hero__inner {
    gap: 24px;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .partner-list li {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-list img {
    margin-inline: auto;
  }

  .post-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .pagination__status {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .archive-month li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .term-card {
    align-items: flex-start;
  }

  .site-footer__banner {
    padding-block: 28px;
    background-image: url('../images/footer/bg.webp');
  }

  .site-footer__meta nav {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

@media (max-width: 1120px) {
  .company-page .shell {
    width: min(100%, 1056px);
  }

  .value-overview,
  .feature-row,
  .wellness-row,
  .about-row {
    gap: 48px;
  }

  .technology-card-grid {
    gap: 16px;
  }

  .technology-card {
    padding-inline: 18px;
  }

  .operation-tech-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .company-hero {
    min-height: 285px;
    background-position: center top;
  }

  .company-hero--value {
    background-image: url('../images/value-module/section1-bg.webp');
  }

  .company-hero--technology {
    background-image: url('../images/technology-application/section1-bg.webp');
  }

  .company-hero--operation {
    background-image: url('../images/project-operation/section1-bg.webp');
  }

  .company-hero--startup {
    background-image: url('../images/startup-incubation/section1-bg.webp');
  }

  .company-hero--about {
    background-image: url('../images/about-us/section1-bg.webp');
  }

  .company-hero--news,
  .company-hero--news-categories,
  .company-hero--news-tags {
    background-image:
      linear-gradient(90deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 18%)),
      url('../images/value-module/section1-bg.webp');
  }

  .company-hero__inner {
    min-height: 285px;
    padding-bottom: 48px;
  }

  .company-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .company-hero__label {
    min-height: 43px;
    padding: 3px 18px;
    font-size: clamp(1.25rem, 5vw, 1.8rem);
  }

  .company-hero__label--wide {
    padding-inline: 7px;
  }

  .company-hero__line {
    left: 24px;
    height: 6px;
  }

  .company-section {
    padding-block: 60px;
  }

  .news-section-heading {
    margin-bottom: 42px;
  }

  .archive-year {
    padding: 28px;
  }

  .news-taxonomy-panel {
    padding: 22px;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .value-overview,
  .feature-row,
  .wellness-row,
  .about-row,
  .about-row--reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .value-overview__media,
  .feature-row--reverse .feature-row__media,
  .wellness-row--reverse .wellness-row__media,
  .about-row--reverse .about-row__media {
    grid-column: 1;
    grid-row: 1;
  }

  .value-list,
  .feature-row--reverse .feature-row__copy,
  .wellness-row--reverse .wellness-row__copy,
  .about-row--reverse .about-row__copy {
    grid-column: 1;
    grid-row: 2;
  }

  .value-list {
    gap: 38px;
  }

  .feature-list {
    gap: 64px;
  }

  .feature-row__copy h3 {
    text-align: left;
  }

  .technology-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 42px;
  }

  .technology-card {
    min-height: 390px;
  }

  .operation-heading {
    margin-bottom: 40px;
  }

  .operation-tech-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 48px;
  }

  .operation-tech-card {
    max-width: 560px;
    margin-inline: auto;
  }

  .operation-tech-card > div {
    min-height: auto;
  }

  .wellness-list {
    gap: 58px;
    margin-top: 48px;
  }

  .wellness-row__copy > h3 {
    margin-bottom: 20px;
    text-align: center;
  }

  .incubation-section {
    padding-top: 78px;
    padding-bottom: 28px;
  }

  .incubation-section--second {
    padding-top: 60px;
    padding-bottom: 78px;
  }

  .line-heading {
    grid-template-columns: minmax(44px, 130px) auto minmax(44px, 130px);
    gap: 28px;
  }

  .line-heading > span {
    width: 100%;
  }

  .incubation-grid {
    gap: 10%;
    padding-inline: 2%;
  }

  .about-intro p {
    font-size: 1rem;
  }

  .about-details__list {
    gap: 72px;
  }

  .about-row__media--portrait {
    max-width: 440px;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .company-hero {
    min-height: 236px;
  }

  .company-hero__inner {
    min-height: 236px;
    padding-bottom: 36px;
  }

  .company-hero__line {
    left: 20px;
    height: 4px;
  }

  .company-section {
    padding-block: 48px;
  }

  .news-section-heading {
    margin-bottom: 34px;
  }

  .news-section-heading h2 {
    font-size: 1.55rem;
  }

  .news-section-heading p {
    font-size: 0.86rem;
  }

  .archive-year {
    padding: 22px 18px;
  }

  .archive-year > h2 {
    font-size: 2rem;
  }

  .archive-month li {
    padding-inline: 4px;
  }

  .news-taxonomy-panel {
    padding: 14px;
  }

  .term-card {
    min-height: 86px;
    padding: 18px;
  }

  .tag-cloud a {
    min-height: 94px;
    padding: 20px;
  }

  .company-kicker {
    overflow-wrap: anywhere;
    font-size: 0.68rem;
  }

  .value-list h2,
  .feature-row__copy h2 {
    font-size: 1.55rem;
  }

  .feature-row__copy h2 {
    display: block;
  }

  .feature-row__copy h2 span {
    display: block;
  }

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

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

  .technology-card h3 {
    min-height: auto;
  }

  .operation-heading h3 {
    font-size: 1.42rem;
  }

  .operation-heading p {
    font-size: 0.84rem;
  }

  .operation-tech-card > h3 {
    font-size: 1.12rem;
  }

  .wellness-row {
    gap: 28px;
  }

  .wellness-row__copy li {
    padding: 16px;
  }

  .line-heading {
    grid-template-columns: minmax(30px, 70px) auto minmax(30px, 70px);
    gap: 16px;
  }

  .line-heading h2 {
    font-size: 1.55rem;
  }

  .incubation-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 46px;
  }

  .incubation-grid p {
    font-size: 1rem;
  }

  .about-intro h2 {
    font-size: 1.55rem;
  }

  .about-intro p,
  .about-row__copy p {
    font-size: 0.9rem;
  }

  .about-row__copy h2 {
    font-size: 1.45rem;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
