html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
}

.ccm-page * {
box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ccm-page .visually-hidden {
position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ccm-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  --site-logo-height: 52px;
  --site-nav-font-size: 1rem;
  --site-header-height: calc(0.85rem * 2 + var(--site-logo-height));
  --hero-viewport-height: calc(100dvh - var(--site-header-height));
  --nav-color: #1e3a52;
  --nav-hover: #d85f28;
  --science-bg-color: #f6f0dc;
  --science-bg-image:
    radial-gradient(ellipse 72% 58% at 14% 22%, rgba(234, 233, 118, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 58% 48% at 86% 72%, rgba(255, 248, 235, 0.55) 0%, transparent 52%),
    linear-gradient(168deg, #faf6eb 0%, #f5f0dc 42%, #ebe3cf 100%);
  --science-photo-opacity: 0.32;
  --footer-bg-color: #3a3f44;
  --hero-bg-color: #f2f6fa;
  --hero-bg-image:
    radial-gradient(ellipse 65% 50% at 88% 20%, rgba(220, 235, 255, 0.7) 0%, transparent 55%),
    linear-gradient(135deg, #f8fbfd 0%, #e8f0f8 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  background-image: none;
  font-family: "Montserrat", system-ui, sans-serif;
  color: #1c2d3d;
}

.ccm-page .site-header {
flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 120;
  isolation: isolate;
  background-color: #ffffff;
  background-image: none;
}

.ccm-page .site-header::after {
content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.ccm-page .site-header.is-on-light::after {
opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
.ccm-page .site-header::after {
transition: none;
}
}

.ccm-page .layout-container {
width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.ccm-page .layout-container--padded {
padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.ccm-page .site-header__inner {
position: relative;
  z-index: 1;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ccm-page .site-header__inner .ccm-area,
.ccm-page .site-header__inner .ccm-block,
.ccm-page .site-header__inner .ccm-block-top-navigation-bar {
  display: contents;
}

.ccm-page .site-logo {
flex-shrink: 0;
  line-height: 0;
}

.ccm-page .site-logo img {
  height: var(--site-logo-height);
  width: auto;
  display: block;
}

.ccm-page .site-nav {
display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.ccm-page .site-nav a {
  color: var(--nav-color);
  text-decoration: none;
  font-size: var(--site-nav-font-size);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ccm-page .site-nav a:hover {
color: var(--nav-hover);
}

.ccm-page .nav-toggle {
display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ccm-page .nav-toggle:hover {
background: rgba(0, 32, 96, 0.06);
}

.ccm-page .nav-toggle__bar {
display: block;
  width: 1.35rem;
  height: 2px;
  margin: 3px 0;
  border-radius: 1px;
  background: var(--nav-color);
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}

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

.ccm-page .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
opacity: 0;
}

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

.ccm-page .nav-panel {
display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

@media (min-width: 861px) {
.ccm-page .nav-panel {
position: static;
    transform: none;
    visibility: visible;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
}
}

.ccm-page .nav-panel__header {
display: none;
}

.ccm-page .nav-close {
display: none;
}

.ccm-page .nav-overlay {
display: none;
}

.ccm-page.nav-is-open {
overflow: hidden;
}

.ccm-page .home-intro {
  position: relative;
  isolation: isolate;
  flex: 1;
}

.ccm-page .home-intro > .hero-bg {
  position: absolute;
  top: calc(-1 * var(--site-header-height));
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background-color: var(--hero-bg-color);
  background-image: var(--hero-bg-image);
}

.ccm-page.page-template-home .site-header {
  background-color: transparent;
  background-image: none;
}

.ccm-page.page-template-home .site-header:not(.is-on-light)::after {
  opacity: 0;
}

.ccm-page.page-template-home .site-header.is-on-light {
  background-color: #ffffff;
  background-image: none;
}

.ccm-page.page-template-home .site-header.is-on-light::after {
  opacity: 1;
}

.ccm-page .home-intro > .page-shell {
  position: relative;
  z-index: 1;
}

.ccm-page .page-shell {
flex: 1;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.ccm-page .page-content--science {
position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  background-color: var(--science-bg-color);
  background-image: var(--science-bg-image);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 -1px 0 rgba(0, 32, 96, 0.06);
}

.ccm-page .page-content__bg-photo {
position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/science-bg.png") center center / cover no-repeat;
  opacity: var(--science-photo-opacity);
}

.ccm-page .page-content__bg-photo::after {
content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(250, 246, 232, 0.75) 0%,
      rgba(245, 238, 218, 0.48) 42%,
      rgba(238, 230, 208, 0.7) 100%
    );
}

.ccm-page .page-scroll {
  display: contents;
}

.ccm-page .page-scroll .ccm-area,
.ccm-page .page-scroll .ccm-area-block-list,
.ccm-page .page-scroll .ccm-block,
.ccm-page .page-scroll .ccm-block-html,
.ccm-page .page-scroll .ccm-custom-style-container,
.ccm-page .page-scroll .container,
.ccm-page .page-scroll .row,
.ccm-page .page-scroll [class*="col-"] {
  display: contents;
}

.ccm-page .page-scroll > :is(div, article, aside, section):not(.hero-intro):not(.page-visual):not(.scroll-lines) {
  display: contents;
}

.ccm-page .hero-intro {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 0;
  max-width: 100%;
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.ccm-page .hero-title {
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .hero-title-line {
  display: block;
}

.ccm-page .hero-title-line-group {
  display: block;
  white-space: nowrap;
}

.ccm-page .hero-title-line-group .hero-title-line {
  display: inline;
}

.ccm-page .hero-title-line-group .hero-title-line + .hero-title-line::before {
  content: "\00a0";
}

.ccm-page .hero-intro__content {
  display: contents;
}

.ccm-page .hero-intro__title-anchor {
  display: contents;
}

.ccm-page .hero-word {
  display: inline-block;
  white-space: nowrap;
}

.ccm-page .hero-char {
opacity: 0;
  display: inline-block;
  animation: heroCharIn 0.42s ease forwards;
}

@keyframes heroCharIn {
from {
    opacity: 0;
    transform: translateY(0.14em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ccm-page .hero-subtitle {
transition: opacity 0.9s ease;
}

.ccm-page .hero-subtitle:not(.is-visible) {
opacity: 0;
}

.ccm-page .hero-subtitle.is-visible {
opacity: 1;
  color: rgba(28, 48, 68, 0.68);
}

@media (prefers-reduced-motion: reduce) {
.ccm-page .hero-char {
opacity: 1;
    animation: none;
    transform: none;
}

.ccm-page .hero-subtitle {
opacity: 1;
    color: rgba(28, 48, 68, 0.68);
}
}

.ccm-page .hero-subtitle {
font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  max-width: 28em;
}

.ccm-page .page-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: var(--site-header-height);
  z-index: 1;
  align-self: start;
  width: 100%;
  min-width: 0;
  height: var(--hero-viewport-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
  pointer-events: none;
}

.ccm-page .scene-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: min(920px, calc(var(--hero-viewport-height) - 1rem));
  pointer-events: auto;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(187, 228, 241, 0.15) 0%, transparent 70%);
}

@media (min-width: 861px) {
  .ccm-page .page-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: var(--hero-viewport-height) auto;
    align-items: stretch;
    padding-bottom: clamp(4rem, 10vh, 7rem);
  }

  .ccm-page .hero-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    box-sizing: border-box;
    height: var(--hero-viewport-height);
    min-height: var(--hero-viewport-height);
    max-height: var(--hero-viewport-height);
    margin-top: 0;
    padding: 0;
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
    gap: 0;
  }

  .ccm-page .hero-intro__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    width: 100%;
    margin-top: -50px;
  }

  .ccm-page .hero-intro__title-anchor {
    display: block;
    width: 100%;
    margin: 0;
  }

  .ccm-page .hero-subtitle {
    margin: 0;
  }

  .ccm-page .scene-wrap {
    width: 100%;
    height: calc(var(--hero-viewport-height) - 1rem);
    max-height: none;
  }

  .ccm-page .scroll-lines {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 0;
    padding-bottom: clamp(5rem, 12vh, 8.5rem);
    margin-top: clamp(-2.5rem, -5vh, -1rem);
    gap: clamp(1.35rem, 2.5vh, 2rem);
  }
}

@media (min-width: 861px) and (max-width: 1439px) {
  .ccm-page .page-shell {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .ccm-page .scene-wrap {
    height: calc(var(--hero-viewport-height) - 0.5rem);
  }
}

@media (min-width: 861px) and (max-width: 1279px) {
  .ccm-page .hero-title {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1.32;
  }
}

@media (min-width: 1280px) {
  .ccm-page .layout-container,
  .ccm-page .page-shell,
  .ccm-page .site-footer__inner {
    max-width: none;
    width: 100%;
  }

  .ccm-page .layout-container--padded,
  .ccm-page .page-shell {
    padding-left: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }

  .ccm-page .site-footer__inner {
    padding-left: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }

  .ccm-page .page-content--science {
    padding-left: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }

  .ccm-page .page-shell {
    gap: clamp(3rem, 5vw, 6rem);
    padding-bottom: clamp(5rem, 12vh, 8.5rem);
  }

  .ccm-page .hero-intro,
  .ccm-page .page-visual {
    width: 100%;
    min-width: 0;
  }

  .ccm-page .hero-intro {
    max-width: none;
    padding-right: 0;
  }

  .ccm-page .hero-title {
    font-size: clamp(2.5rem, 3.2vw, 3.75rem);
  }

  .ccm-page .hero-subtitle {
    max-width: 40em;
    font-size: clamp(1.05rem, 1.1vw, 1.35rem);
  }

  .ccm-page {
    --site-logo-height: 62px;
    --site-nav-font-size: 1.0625rem;
    --site-header-height: calc(1rem * 2 + var(--site-logo-height));
  }

  .ccm-page .site-header__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .ccm-page .value-card__text {
    font-size: clamp(1.1rem, 1.25vw, 1.4rem);
  }

  .ccm-page .scroll-lines {
    margin-top: clamp(-3.5rem, -6vh, -1.5rem);
    padding-bottom: clamp(6rem, 14vh, 10rem);
    gap: clamp(1.5rem, 3vh, 2.25rem);
  }
}

@media (min-width: 1600px) {
  .ccm-page {
    --site-logo-height: 70px;
    --site-nav-font-size: 1.125rem;
    --site-header-height: calc(1rem * 2 + var(--site-logo-height));
  }

  .ccm-page .page-shell {
    gap: clamp(4rem, 6vw, 8rem);
    padding-bottom: clamp(6rem, 14vh, 10rem);
  }

  .ccm-page .hero-title {
    font-size: clamp(2.85rem, 3vw, 4.25rem);
  }

  .ccm-page .value-card__text {
    font-size: clamp(1.2rem, 1.15vw, 1.55rem);
  }
}

.ccm-page .scroll-lines {
grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  min-height: clamp(20rem, 48vh, 34rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(0.75rem, 2vh, 1.5rem) 0 clamp(2rem, 5vh, 3.5rem);
  width: 100%;
  max-width: 100%;
}

.ccm-page .value-card {
display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.25rem;
  background: #ffffff;
  box-shadow:
    4px 6px 22px rgba(28, 48, 68, 0.1),
    0 1px 4px rgba(28, 48, 68, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(clamp(2.5rem, 10vh, 4.5rem));
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.ccm-page .value-card:nth-child(1) {
margin-left: 0;
  max-width: 100%;
}

.ccm-page .value-card:nth-child(2) {
margin-left: clamp(1.25rem, 3.5vw, 2.5rem);
  max-width: calc(100% - clamp(1.25rem, 3.5vw, 2.5rem));
}

.ccm-page .value-card:nth-child(3) {
margin-left: clamp(2.5rem, 7vw, 5rem);
  max-width: calc(100% - clamp(2.5rem, 7vw, 5rem));
}

.ccm-page .value-card:nth-child(4) {
margin-left: clamp(3.75rem, 10.5vw, 7.5rem);
  max-width: calc(100% - clamp(3.75rem, 10.5vw, 7.5rem));
}

.ccm-page .value-card:nth-child(5) {
margin-left: clamp(5rem, 14vw, 10rem);
  max-width: calc(100% - clamp(5rem, 14vw, 10rem));
}

.ccm-page .value-card.is-visible {
opacity: 1;
  visibility: visible;
  transform: translateY(0);
  will-change: auto;
}

.ccm-page .value-card__icon {
flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.ccm-page .value-card__text {
margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(0.92rem, 1.55vw, 1.1rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #002060;
}

@media (prefers-reduced-motion: reduce) {
.ccm-page .value-card {
opacity: 1;
    transform: none;
    transition: none;
}
}

.ccm-page .cta-section {
position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(5rem, 11.5vw, 7.5rem) 0;
  max-width: 34em;
  margin: 0 auto;
}

.ccm-page .cta-section__title {
font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .cta-section__copy {
margin: 1.35rem auto 0;
  max-width: 28em;
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  color: #002060;
}

.ccm-page .cta-section__btn {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0.85rem 2.15rem;
  border-radius: 999px;
  border: 1px solid #002060;
  background: #ffffff;
  color: #002060;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background 0.35s ease-in-out,
    border-color 0.35s ease-in-out,
    color 0.35s ease-in-out;
}

.ccm-page .cta-section__btn:hover, .ccm-page .cta-section__btn:focus-visible {
background: #002060;
  border-color: #002060;
  color: #ffffff;
}

.ccm-page .cta-section__btn:hover .cta-section__btn-arrow, .ccm-page .cta-section__btn:focus-visible .cta-section__btn-arrow {
color: #ffffff;
}

.ccm-page .cta-section__btn-arrow {
color: #d85f28;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  transition: color 0.35s ease-in-out;
}

.ccm-page .contact-section {
width: 100%;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(4.5rem, 10vw, 6.5rem);
  background: #ffffff;
}

.ccm-page .contact-section__title {
max-width: 42rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .contact-form {
max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ccm-page .contact-form__field {
display: grid;
  grid-template-columns: 9.25rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem 1rem;
}

.ccm-page .contact-form__field--message {
align-items: start;
}

.ccm-page .contact-form__label {
font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: #002060;
  white-space: nowrap;
}

.ccm-page .contact-form__field--message .contact-form__label {
padding-top: 0.92rem;
}

.ccm-page .contact-form__input, .ccm-page .contact-form__textarea, .ccm-page .contact-form__select {
width: 100%;
  border: none;
  background: #eceef1;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: #002060;
  padding: 0.92rem 1.4rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ccm-page .contact-form__input {
border-radius: 999px;
}

.ccm-page .contact-form__textarea {
border-radius: 1.25rem;
  min-height: 11.5rem;
  resize: vertical;
  line-height: 1.5;
}

.ccm-page .contact-form__input::placeholder, .ccm-page .contact-form__textarea::placeholder {
color: #8a96a3;
}

.ccm-page .contact-form__select {
appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
  background-color: #eceef1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a96a3' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 12px 8px;
}

.ccm-page .contact-form__select:invalid {
color: #8a96a3;
}

.ccm-page .contact-form__input:focus, .ccm-page .contact-form__textarea:focus {
outline: none;
  background: #e6e9ee;
  box-shadow: 0 0 0 2px rgba(0, 32, 96, 0.12);
}

.ccm-page .contact-form__select:focus {
outline: none;
  background-color: #e6e9ee;
  box-shadow: 0 0 0 2px rgba(0, 32, 96, 0.12);
}

.ccm-page .contact-form__footer {
display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.25rem;
  padding-left: calc(9.25rem + 1rem);
}

.ccm-page .contact-form__note {
font-size: 0.8rem;
  line-height: 1.55;
  color: #8a96a3;
}

.ccm-page .contact-form__note a {
color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.ccm-page .contact-form__note a:hover {
color: #002060;
}

.ccm-page .contact-form__submit {
padding: 0.68rem 1.85rem;
  border-radius: 999px;
  border: 1px solid #d5dae0;
  background: #ffffff;
  color: #1c2d3d;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.35s ease-in-out,
    border-color 0.35s ease-in-out,
    color 0.35s ease-in-out;
}

.ccm-page .contact-form__submit:hover, .ccm-page .contact-form__submit:focus-visible {
background: #002060;
  border-color: #002060;
  color: #ffffff;
}

.ccm-page .contact-form__message {
max-width: 42rem;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ccm-page .contact-form__message p {
margin: 0;
}

.ccm-page .contact-form__message p + p {
margin-top: 0.35rem;
}

.ccm-page .contact-form__message--success {
background: #e8f4ec;
  color: #1a4d2e;
}

.ccm-page .contact-form__message--error {
background: #fce8e8;
  color: #6b1a1a;
}

.ccm-page .contact-form__field.has-error .contact-form__input,
.ccm-page .contact-form__field.has-error .contact-form__textarea,
.ccm-page .contact-form__field.has-error .contact-form__select {
box-shadow: 0 0 0 2px rgba(180, 40, 40, 0.35);
}

.ccm-page .contact-form__field--captcha {
align-items: start;
}

.ccm-page .contact-form__captcha {
display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Express Form (renderer output: .mb-3, .form-label, .form-control) */
.ccm-page .contact-form .ccm-dashboard-express-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.ccm-page .contact-form .ccm-dashboard-express-form legend {
  display: none;
}

.ccm-page .contact-form .mb-3 .text-muted {
  display: none;
}

.ccm-page .contact-form .mb-3:has(> .text-muted) .form-label::after {
  content: "*";
  margin-left: 0.15em;
  font-weight: 500;
  color: #002060;
}

.ccm-page .contact-form .mb-3 {
  display: grid;
  grid-template-columns: 9.25rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
}

.ccm-page .contact-form .mb-3:has(textarea),
.ccm-page .contact-form .mb-3:has(textarea.form-control) {
  align-items: start;
}

.ccm-page .contact-form .mb-3 > div:empty {
  display: none;
}

.ccm-page .contact-form .form-label {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: #002060;
  white-space: nowrap;
  margin: 0;
}

.ccm-page .contact-form .mb-3 .form-control,
.ccm-page .contact-form .mb-3 .form-select,
.ccm-page .contact-form .mb-3 textarea,
.ccm-page .contact-form .mb-3 select,
.ccm-page .contact-form .mb-3 .form-check,
.ccm-page .contact-form .mb-3 [data-vue="cms"] {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  min-width: 0;
}

.ccm-page .contact-form .mb-3:has(textarea) .form-control,
.ccm-page .contact-form .mb-3:has(textarea) textarea {
  align-self: start;
}

.ccm-page .contact-form .form-control,
.ccm-page .contact-form .form-select {
  width: 100%;
  border: none;
  background: #eceef1;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: #002060;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ccm-page .contact-form textarea.form-control {
  border-radius: 1.25rem;
  min-height: 11.5rem;
  resize: vertical;
  line-height: 1.5;
}

.ccm-page .contact-form select.form-control,
.ccm-page .contact-form select.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
  background-color: #eceef1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a96a3' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 12px 8px;
}

.ccm-page .contact-form .form-control:focus,
.ccm-page .contact-form .form-select:focus {
  outline: none;
  background: #e6e9ee;
  box-shadow: 0 0 0 2px rgba(0, 32, 96, 0.12);
}

.ccm-page .contact-form select.form-control:focus,
.ccm-page .contact-form select.form-select:focus {
  background-color: #e6e9ee;
}

.ccm-page .contact-form .form-control::placeholder {
  color: #8a96a3;
}

@media (prefers-reduced-motion: reduce) {
.ccm-page .cta-section__btn, .ccm-page .contact-form__submit, .ccm-page .cta-section__btn-arrow {
transition: none;
}
}

.ccm-page .site-footer {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  background: var(--footer-bg-color);
  color: rgba(255, 255, 255, 0.88);
}

.ccm-page .site-footer__inner {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
}

.ccm-page .site-footer__inner .ccm-area,
.ccm-page .site-footer__inner .ccm-area-block-list,
.ccm-page .site-footer__inner .ccm-block,
.ccm-page .site-footer__inner .ccm-block-html,
.ccm-page .site-footer__inner .ccm-custom-style-container,
.ccm-page .site-footer__inner .container,
.ccm-page .site-footer__inner .row,
.ccm-page .site-footer__inner [class*="col-"],
.ccm-page .site-footer__inner .layout-container {
  display: contents;
}

@media (min-width: 1280px) {
  .ccm-page .site-footer__inner {
    max-width: none;
    width: 100%;
    padding-left: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }
}

.ccm-page .site-footer__top {
display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}

.ccm-page .site-footer__brand {
flex-shrink: 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ccm-page .site-footer__brand:hover {
color: rgba(255, 255, 255, 0.85);
}

.ccm-page .site-footer__nav {
display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.ccm-page .site-footer__nav a {
color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ccm-page .site-footer__nav a:hover {
color: #ffffff;
}

.ccm-page .site-footer__locations {
position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: none;
}

.ccm-page .site-footer__locations::before, .ccm-page .site-footer__bottom::before {
content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.ccm-page .site-footer__location-city {
margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.ccm-page .site-footer__location-type {
margin: 0.85rem 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.ccm-page .site-footer__location-row {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 0.85rem;
}

.ccm-page .site-footer__location-row .site-footer__location-type {
margin-top: 0;
}

.ccm-page .site-footer__address {
margin: 0;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.ccm-page .site-footer__bottom {
position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: none;
}

@media (min-width: 861px) {
.ccm-page .site-footer__bottom {
flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
}
}

.ccm-page .site-footer__copy {
font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.ccm-page .site-footer__legal a {
font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.ccm-page .site-footer__legal a:hover {
color: rgba(255, 255, 255, 0.9);
}

.ccm-page #sceneCanvas {
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 860px) {
.ccm-page .nav-toggle {
display: flex;
    flex-direction: column;
    margin-left: auto;
}

.ccm-page .site-header {
isolation: auto;
}

.ccm-page .site-header::after {
display: none;
}

.ccm-page.page-template-home .site-header.is-on-light {
background-color: #ffffff;
    background-image: none;
}

.ccm-page.page-sub .site-header,
.ccm-page.page-template-full .site-header,
.ccm-page.page-science .site-header {
background-color: #ffffff;
    background-image: none;
}

.ccm-page .site-header__inner {
z-index: auto;
}

.ccm-page .nav-panel {
position: fixed;
    top: 0;
    right: 0;
    z-index: 130;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: min(17.5rem, 84vw);
    height: 100svh;
    padding: 1rem 1.25rem 2rem;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(0, 32, 96, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.32s;
}

.ccm-page .nav-panel__header {
display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.ccm-page .nav-close {
display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ccm-page .nav-close:hover {
background: rgba(0, 32, 96, 0.06);
}

.ccm-page .nav-close__icon {
position: relative;
    width: 1.25rem;
    height: 1.25rem;
}

.ccm-page .nav-close__icon::before, .ccm-page .nav-close__icon::after {
content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.35rem;
    height: 2px;
    border-radius: 1px;
    background: var(--nav-color);
}

.ccm-page .nav-close__icon::before {
transform: translate(-50%, -50%) rotate(45deg);
}

.ccm-page .nav-close__icon::after {
transform: translate(-50%, -50%) rotate(-45deg);
}

.ccm-page .nav-panel.is-open {
transform: translateX(0);
    visibility: visible;
    background: #ffffff;
}

.ccm-page .site-nav {
flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.ccm-page .site-nav a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(0, 32, 96, 0.08);
  }

.ccm-page .site-nav a:last-child {
border-bottom: none;
}

.ccm-page .nav-overlay {
display: block;
    position: fixed;
    inset: 0;
    z-index: 125;
    background: rgba(15, 28, 42, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s;
}

.ccm-page .nav-overlay.is-open {
opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ccm-page .page-shell {
grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.35rem;
}

.ccm-page .hero-intro {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    max-height: none;
    height: auto;
    margin-top: 0;
    align-self: auto;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: clamp(3.5rem, 11vw, 4.75rem) clamp(1.25rem, 4vw, 1.5rem) 0.15rem;
    box-sizing: border-box;
  }

  .ccm-page .hero-intro__content {
    display: contents;
  }

  .ccm-page .hero-intro__title-anchor {
    margin: 0;
  }

  .ccm-page .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.28rem, 5.1vw, 1.65rem);
    line-height: 1.45;
    letter-spacing: -0.025em;
    text-wrap: wrap;
  }

  .ccm-page .hero-title-line-group {
    white-space: normal;
  }

  .ccm-page .hero-title-line-group .hero-title-line {
    display: block;
  }

  .ccm-page .hero-title-line-group .hero-title-line + .hero-title-line::before {
    content: none;
  }

  .ccm-page .hero-title-line-group .hero-title-line:last-child {
    white-space: nowrap;
  }

  .ccm-page .hero-subtitle {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    max-width: 22em;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .ccm-page .page-visual {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 2 * clamp(1.5rem, 4vw, 3rem));
    height: auto;
    min-height: auto;
    max-height: none;
    margin-top: -0.25rem;
    margin-left: calc(-1 * clamp(1.5rem, 4vw, 3rem));
    margin-right: calc(-1 * clamp(1.5rem, 4vw, 3rem));
    padding: 0;
    z-index: 1;
  }

  .ccm-page .scene-wrap {
    --scene-mobile-width: min(100vw, calc(100dvh - 58px - 8.5rem));
    width: var(--scene-mobile-width);
    height: min(
      calc(100dvh - 58px - 16rem),
      calc(var(--scene-mobile-width) * 1.12)
    );
    max-width: none;
    max-height: none;
    margin: 0 auto;
  }

.ccm-page .scroll-lines {
grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    margin-top: 0;
    padding: 0.35rem clamp(1.25rem, 4vw, 1.5rem) clamp(3rem, 10vh, 4.5rem);
    align-items: stretch;
    align-content: start;
    gap: clamp(1.15rem, 3.5vh, 1.75rem);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.ccm-page .value-card:first-child {
transform: translateY(clamp(3rem, 16vh, 5.5rem));
}

.ccm-page .value-card:first-child.is-visible {
transform: translateY(0);
}

.ccm-page .value-card, .ccm-page .value-card:nth-child(1), .ccm-page .value-card:nth-child(2), .ccm-page .value-card:nth-child(3), .ccm-page .value-card:nth-child(4), .ccm-page .value-card:nth-child(5) {
display: flex;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
}

.ccm-page .value-card.is-visible, .ccm-page .value-card:nth-child(1).is-visible, .ccm-page .value-card:nth-child(2).is-visible, .ccm-page .value-card:nth-child(3).is-visible, .ccm-page .value-card:nth-child(4).is-visible, .ccm-page .value-card:nth-child(5).is-visible {
opacity: 1;
    visibility: visible;
}

.ccm-page .value-card__text {
text-align: left;
    white-space: normal;
}

.ccm-page .cta-section {
padding: 4.25rem 0;
}

.ccm-page .contact-section {
padding: 2.5rem clamp(1.25rem, 4vw, 2rem) 3.5rem;
}

.ccm-page .contact-form__field {
grid-template-columns: 1fr;
        gap: 0.4rem;
}

.ccm-page .contact-form__field--message .contact-form__label {
padding-top: 0;
}

.ccm-page .contact-form__footer {
padding-left: 0;
}

.ccm-page .contact-form .mb-3 {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0.4rem;
}

.ccm-page .contact-form .form-label,
.ccm-page .contact-form .mb-3 .form-control,
.ccm-page .contact-form .mb-3 .form-select,
.ccm-page .contact-form .mb-3 textarea,
.ccm-page .contact-form .mb-3 select {
  grid-column: 1;
  grid-row: auto;
}

.ccm-page .site-footer__top {
flex-direction: column;
    align-items: center;
    text-align: center;
}

.ccm-page .site-footer__bottom {
align-items: center;
    text-align: center;
    width: 100%;
}

.ccm-page .site-footer__legal {
order: 1;
}

.ccm-page .site-footer__copy {
order: 2;
}

.ccm-page .site-footer__nav {
display: none;
}

.ccm-page .site-footer__locations {
display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    text-align: left;
    padding-inline: 0;
    border-top: none;
}

.ccm-page .site-footer__location {
width: auto;
    max-width: 100%;
}

.ccm-page .site-footer__location-row {
grid-template-columns: repeat(2, minmax(0, max-content));
    width: max-content;
    max-width: 100%;
}
}

/* Full-width interior pages (e.g. Science) and system error pages */
.ccm-page.page-sub,
.ccm-page.page-template-full,
.ccm-page.page-science {
--science-hero-bg-color: #fcfcfa;
  --science-hero-bg-image:
    radial-gradient(ellipse 78% 62% at 18% 28%, rgba(234, 233, 118, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 68% 52% at 88% 72%, rgba(255, 248, 220, 0.2) 0%, transparent 54%),
    linear-gradient(152deg, #fdfdfb 0%, #faf9f5 38%, #f7f6f0 68%, #f4f3ec 100%);
  background-color: #ffffff;
  background-image: none;
}

.ccm-page.page-sub .site-header,
.ccm-page.page-template-full .site-header,
.ccm-page.page-science .site-header {
background-color: #ffffff;
  background-image: none;
}

.ccm-page.page-sub .site-header::after,
.ccm-page.page-template-full .site-header::after,
.ccm-page.page-science .site-header::after {
opacity: 1;
}

.ccm-page .site-nav a[aria-current="page"] {
color: var(--nav-hover);
}

/* Subpage interior (full.php template) */
.ccm-page .subpage {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ccm-page .subpage-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.ccm-page .subpage-placeholder__inner {
  width: 100%;
  text-align: center;
}

.ccm-page .subpage-placeholder__message {
  margin: 0;
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(0, 32, 96, 0.78);
}

.ccm-page .subpage__banner {
  flex-shrink: 0;
  width: 100%;
  background: #f7f8fb;
  border-bottom: 1px solid #e2e8f0;
}

.ccm-page .subpage__banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(2.25rem, 5vh, 3.25rem);
  padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
  text-align: center;
}

.ccm-page .subpage__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 36rem;
}

.ccm-page .subpage__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 32, 96, 0.18);
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #002060;
}

.ccm-page .subpage__subtitle {
  margin: 1rem 0 0;
  max-width: 26em;
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(0, 32, 96, 0.78);
  text-wrap: balance;
}

.ccm-page .subpage__lead {
  margin: 0.85rem 0 0;
  max-width: 32em;
  font-size: clamp(0.875rem, 1.35vw, 0.975rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(28, 48, 68, 0.55);
}

@media (min-width: 861px) {
  .ccm-page .subpage__banner-inner {
    padding-top: clamp(2.75rem, 6vh, 3.75rem);
    padding-bottom: clamp(3rem, 6vh, 4rem);
  }

  .ccm-page .subpage__title {
    font-size: clamp(2rem, 2.8vw, 2.625rem);
  }
}

@media (min-width: 1280px) {
  .ccm-page .subpage__banner-inner {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  .ccm-page .subpage__subtitle {
    font-size: 1.2rem;
  }
}

.ccm-page .subpage-limitations {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .subpage-limitations__box {
  width: 100%;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  box-sizing: border-box;
  border: 1px solid #d5dae0;
  border-radius: 1.25rem;
}

.ccm-page .subpage-limitations__eyebrow,
.ccm-page .subpage-solution__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d85f28;
}

.ccm-page .subpage-limitations__stat {
  margin: 0.75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .subpage-limitations__stat-note {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #4a5f73;
}

.ccm-page .subpage-limitations__drivers {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #002060;
}

.ccm-page .subpage-limitations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.ccm-page .subpage-limitations__group-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #002060;
}

.ccm-page .subpage-limitations__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.ccm-page .subpage-limitations__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .subpage-limitations__list li + li {
  margin-top: 0.45rem;
}

.ccm-page .subpage-limitations__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #8a96a3;
  font-weight: 500;
}

.ccm-page .subpage-solution {
  background-color: #f7f5ef;
  background-image: linear-gradient(
    168deg,
    #faf9f5 0%,
    #f5f2ea 50%,
    #f0ece4 100%
  );
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .subpage-solution__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.ccm-page .subpage-solution__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .subpage-solution__tagline {
  margin: 1rem 0 0;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1c2d3d;
}

.ccm-page .subpage-solution__cards {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ccm-page .subpage-solution__card {
  padding: 1.15rem 1.35rem;
  background: #f7f8fa;
  border: 1px solid #e8ecf0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .subpage-solution__media {
  width: 100%;
  min-height: clamp(14rem, 28vw, 22rem);
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  background: #eceef1;
  border: 1px dashed #c5ccd6;
}

.ccm-page .subpage-flow {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .subpage-flow__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.ccm-page .subpage-flow__media {
  margin: 0;
  width: 100%;
}

.ccm-page .subpage-flow__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid #e8ecf0;
}

.ccm-page .subpage-flow__steps {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: subpage-flow-step;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ccm-page .subpage-flow__step {
  counter-increment: subpage-flow-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #f7f8fa;
  border: 1px solid #e8ecf0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .subpage-flow__step::before {
  content: counter(subpage-flow-step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #002060;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.ccm-page .subpage-flow__emphasis {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 0;
}

.ccm-page .subpage-flow__emphasis-lead {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #d85f28;
}

.ccm-page .subpage-flow__emphasis-sub {
  margin: 0.65rem 0 0;
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
  color: #1c2d3d;
}

.ccm-page .subpage-flow__btn {
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
}

.ccm-page .subpage-enables {
  background: #ffffff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .subpage-enables__list {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ccm-page .subpage-enables__item {
  padding: 1.15rem 1.35rem;
  background: #f7f8fa;
  border: 1px solid #e8ecf0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .subpage-enables__compare {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.ccm-page .subpage-enables__compare-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  color: #002060;
}

.ccm-page .subpage-enables__compare-note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  color: #8a96a3;
}

.ccm-page .subpage-enables__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d5dae0;
  border-radius: 1rem;
  background: #ffffff;
}

.ccm-page .subpage-enables__table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  line-height: 1.55;
}

.ccm-page .subpage-enables__table caption {
  caption-side: top;
}

.ccm-page .subpage-enables__table th,
.ccm-page .subpage-enables__table td {
  padding: 1rem 1.15rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e8ecf0;
}

.ccm-page .subpage-enables__table thead th {
  background: #f7f8fa;
  font-weight: 600;
  color: #002060;
  font-size: clamp(0.8rem, 1.3vw, 0.88rem);
  line-height: 1.4;
}

.ccm-page .subpage-enables__table thead .subpage-enables__th-group,
.ccm-page .subpage-enables__table thead .subpage-enables__th-criterion {
  background: #ffffff;
}

.ccm-page .subpage-enables__table thead .subpage-enables__col-pcm {
  background: #002060;
  color: #ffffff;
}

.ccm-page .subpage-enables__table thead .subpage-enables__col-conventional {
  background: #f7f8fa;
  color: #002060;
}

.ccm-page .subpage-enables__table tbody .subpage-enables__th-group {
  width: 11%;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  color: #002060;
  background: #fafbfc;
}

.ccm-page .subpage-enables__table tbody .subpage-enables__th-criterion {
  width: 20%;
  text-align: left;
  font-weight: 600;
  color: #002060;
  background: #ffffff;
}

.ccm-page .subpage-enables__table tbody td {
  color: #1c2d3d;
  background: #ffffff;
}

.ccm-page .subpage-enables__table tbody .subpage-enables__cell-spm {
  background: #eef4fa;
}

.ccm-page .subpage-enables__cell-main {
  display: block;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.45vw, 0.98rem);
  line-height: 1.35;
  color: #002060;
}

.ccm-page .subpage-enables__cell-sub {
  display: block;
  margin-top: 0.35rem;
  font-weight: 400;
  font-size: clamp(0.78rem, 1.25vw, 0.86rem);
  line-height: 1.45;
  color: #5a6b7d;
}

.ccm-page .subpage-enables__cell-spm .subpage-enables__cell-main {
  color: #002060;
}

.ccm-page .subpage-enables__cell-spm .subpage-enables__cell-sub {
  color: #3d5570;
}

.ccm-page .subpage-enables__table tbody tr:last-child th,
.ccm-page .subpage-enables__table tbody tr:last-child td {
  border-bottom: none;
}

.ccm-page .subpage-cta {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0 clamp(4.5rem, 11vw, 6.5rem);
}

.ccm-page .subpage-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.ccm-page .subpage-cta__copy {
  margin: 0;
  max-width: 36em;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1c2d3d;
}

@media (max-width: 860px) {
  .ccm-page .subpage-limitations__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ccm-page .subpage-solution__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ccm-page .subpage-solution__cards {
    margin-top: 1.5rem;
  }

  .ccm-page .subpage-solution__media {
    min-height: clamp(12rem, 40vw, 16rem);
  }

  .ccm-page .subpage-flow__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }


  .ccm-page .subpage-enables__table {
    min-width: 40rem;
  }

  .ccm-page .subpage-enables__compare-note {
    text-align: left;
  }

  .ccm-page .subpage-enables__table th,
.ccm-page .subpage-enables__table td {
    padding: 0.85rem 0.75rem;
  }

  .ccm-page .subpage__banner-inner {
    padding-top: clamp(2rem, 5vh, 3rem);
    padding-bottom: clamp(2.25rem, 5vh, 3.25rem);
  }
}

.ccm-page .subpage__hero .ccm-area,
.ccm-page .subpage__hero .ccm-area-block-list,
.ccm-page .subpage__hero .ccm-block,
.ccm-page .subpage__hero .ccm-block-html,
.ccm-page .subpage__hero .ccm-custom-style-container,
.ccm-page .subpage__hero .container,
.ccm-page .subpage__hero .row,
.ccm-page .subpage__hero [class*="col-"] {
  display: contents;
}

.ccm-page .subpage > .ccm-area,
.ccm-page .subpage > .ccm-area-block-list,
.ccm-page .subpage .ccm-block,
.ccm-page .subpage .ccm-block-html,
.ccm-page .subpage .ccm-custom-style-container,
.ccm-page .subpage .container,
.ccm-page .subpage .row,
.ccm-page .subpage [class*="col-"] {
  display: contents;
}


.ccm-page .full-page,
.ccm-page .science-page {
flex: 1;
  display: flex;
  flex-direction: column;
}

.ccm-page .science-page__banner {
flex-shrink: 0;
  width: 100%;
  min-height: calc(100svh - 58px);
  display: flex;
  align-items: center;
  background-color: var(--science-hero-bg-color);
  background-image: var(--science-hero-bg-image);
  background-attachment: fixed;
}

.ccm-page .science-page__banner-inner {
position: relative;
  z-index: 1;
  min-height: calc(100svh - 58px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.ccm-page .science-page__hero {
max-width: none;
  text-align: left;
}

.ccm-page .science-page__visual {
display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  min-height: min(52vh, 28rem);
}

.ccm-page .scene-wrap--science {
width: 100%;
  max-width: min(100%, 32rem);
  height: min(68vh, calc(100svh - 10rem));
  max-height: 36rem;
}

.ccm-page .science-page__eyebrow {
margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d85f28;
}

.ccm-page .science-page__title {
margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .science-page__lead {
margin: 0.75rem 0 0;
  max-width: 36em;
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  color: #002060;
}

.ccm-page .science-limitations {
background: #ffffff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .science-limitations__box {
width: 100%;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  box-sizing: border-box;
  border: 1px solid #d5dae0;
  border-radius: 1.25rem;
}

.ccm-page .science-limitations__title {
margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .science-limitations__intro {
margin: 1.25rem 0 0;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1c2d3d;
}

.ccm-page .science-limitations__stat {
margin: 1.5rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .science-limitations__grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.ccm-page .science-limitations__group-title {
margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #002060;
}

.ccm-page .science-limitations__list {
margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.ccm-page .science-limitations__list li {
position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .science-limitations__list li + li {
margin-top: 0.45rem;
}

.ccm-page .science-limitations__list li::before {
content: "・";
  position: absolute;
  left: 0;
  color: #8a96a3;
  font-weight: 500;
}

.ccm-page .science-solution {
background-color: #f7f5ef;
  background-image: linear-gradient(
    168deg,
    #faf9f5 0%,
    #f5f2ea 50%,
    #f0ece4 100%
  );
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .science-solution__inner {
  align-items: start;
}

.ccm-page .science-solution__eyebrow {
margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d85f28;
}

.ccm-page .science-solution__title {
margin: 0.75rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #002060;
}

.ccm-page .science-solution__tagline {
margin: 1rem 0 0;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1c2d3d;
}

.ccm-page .science-solution__cards {
margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ccm-page .science-solution__card {
padding: 1.15rem 1.35rem;
  background: #f7f8fa;
  border: 1px solid #e8ecf0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .science-solution__media {
width: 100%;
  min-height: clamp(14rem, 28vw, 22rem);
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  background: #eceef1;
  border: 1px dashed #c5ccd6;
}

.ccm-page .science-flow {
background: #ffffff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .science-flow__inner {
display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.ccm-page .science-flow__media {
margin: 0;
  width: 100%;
}

.ccm-page .science-flow__img {
display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid #e8ecf0;
}

.ccm-page .science-flow__steps {
margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: science-flow-step;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ccm-page .science-flow__step {
counter-increment: science-flow-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #f7f8fa;
  border: 1px solid #e8ecf0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .science-flow__step::before {
content: counter(science-flow-step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #002060;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.ccm-page .science-flow__emphasis {
margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 0;
}

.ccm-page .science-flow__emphasis-lead {
margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #d85f28;
}

.ccm-page .science-flow__emphasis-sub {
margin: 0.65rem 0 0;
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
  color: #1c2d3d;
}

.ccm-page .science-flow__btn {
margin-top: clamp(1.75rem, 4vw, 2.25rem);
}

.ccm-page .science-enables {
background: #ffffff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ccm-page .science-enables__list {
margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ccm-page .science-enables__item {
padding: 1.15rem 1.35rem;
  background: #f7f8fa;
  border: 1px solid #e8ecf0;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2d3d;
}

.ccm-page .science-enables__compare {
margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.ccm-page .science-enables__compare-title {
margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  color: #002060;
}

.ccm-page .science-enables__compare-note {
margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  color: #8a96a3;
}

.ccm-page .science-enables__table-wrap {
overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d5dae0;
  border-radius: 1rem;
  background: #ffffff;
}

.ccm-page .science-enables__table {
width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  line-height: 1.55;
}

.ccm-page .science-enables__table caption {
caption-side: top;
}

.ccm-page .science-enables__table th, .ccm-page .science-enables__table td {
padding: 1rem 1.15rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e8ecf0;
}

.ccm-page .science-enables__table thead th {
background: #f7f8fa;
  font-weight: 600;
  color: #002060;
  font-size: clamp(0.8rem, 1.3vw, 0.88rem);
  line-height: 1.4;
}

.ccm-page .science-enables__table thead .science-enables__th-group, .ccm-page .science-enables__table thead .science-enables__th-criterion {
background: #ffffff;
}

.ccm-page .science-enables__table thead .science-enables__col-pcm {
background: #002060;
  color: #ffffff;
}

.ccm-page .science-enables__table thead .science-enables__col-conventional {
background: #f7f8fa;
  color: #002060;
}

.ccm-page .science-enables__table tbody .science-enables__th-group {
width: 11%;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  color: #002060;
  background: #fafbfc;
}

.ccm-page .science-enables__table tbody .science-enables__th-criterion {
width: 20%;
  text-align: left;
  font-weight: 600;
  color: #002060;
  background: #ffffff;
}

.ccm-page .science-enables__table tbody td {
color: #1c2d3d;
  background: #ffffff;
}

.ccm-page .science-enables__table tbody .science-enables__cell-spm {
background: #eef4fa;
}

.ccm-page .science-enables__cell-main {
display: block;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.45vw, 0.98rem);
  line-height: 1.35;
  color: #002060;
}

.ccm-page .science-enables__cell-sub {
display: block;
  margin-top: 0.35rem;
  font-weight: 400;
  font-size: clamp(0.78rem, 1.25vw, 0.86rem);
  line-height: 1.45;
  color: #5a6b7d;
}

.ccm-page .science-enables__cell-spm .science-enables__cell-main {
color: #002060;
}

.ccm-page .science-enables__cell-spm .science-enables__cell-sub {
color: #3d5570;
}

.ccm-page .science-enables__table tbody tr:last-child th, .ccm-page .science-enables__table tbody tr:last-child td {
border-bottom: none;
}

.ccm-page .science-cta {
background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0 clamp(4.5rem, 11vw, 6.5rem);
}

.ccm-page .science-cta__inner {
display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.ccm-page .science-cta__copy {
margin: 0;
  max-width: 36em;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1c2d3d;
}

@media (max-width: 860px) {
.ccm-page .science-limitations__grid {
grid-template-columns: 1fr;
    gap: 2rem;
}

.ccm-page .science-solution__inner {
grid-template-columns: 1fr;
    gap: 2rem;
}

.ccm-page .science-solution__cards {
margin-top: 1.5rem;
}

.ccm-page .science-solution__media {
min-height: clamp(12rem, 40vw, 16rem);
}

.ccm-page .science-flow__inner {
grid-template-columns: 1fr;
    gap: 2rem;
}

.ccm-page .science-enables__table {
min-width: 40rem;
}

.ccm-page .science-enables__compare-note {
text-align: left;
}

.ccm-page .science-enables__table th, .ccm-page .science-enables__table td {
padding: 0.85rem 0.75rem;
}

.ccm-page .science-page__banner, .ccm-page .science-page__banner-inner {
min-height: calc(100svh - 58px);
}

.ccm-page .science-page__banner-inner {
grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-content: start;
    padding-top: clamp(4.5rem, 14vw, 5.75rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.ccm-page .science-page__hero {
max-width: none;
    text-align: center;
    order: 1;
    padding-top: 0;
}

.ccm-page .science-page__lead {
margin-left: auto;
    margin-right: auto;
}

.ccm-page .science-page__visual {
order: 2;
    flex: 1;
    min-height: 0;
}

.ccm-page .scene-wrap--science {
width: min(88vw, 22rem);
    height: min(52vh, calc(100svh - 22rem));
    max-width: 22rem;
    max-height: 22rem;
    margin: 0 auto;
}
}

/* Interior page body (Privacy Policy, legal pages, CMS rich text) */
.ccm-page .subpage-body {
  flex: 1;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4.5rem, 11vw, 6.5rem);
}

.ccm-page .subpage-body__inner {
  width: 100%;
}

@media (min-width: 1280px) {
  .ccm-page .subpage-body__inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.ccm-page .subpage-body .ccm-area,
.ccm-page .subpage-body .ccm-area-block-list,
.ccm-page .subpage-body .ccm-block,
.ccm-page .subpage-body .ccm-block-html,
.ccm-page .subpage-body .ccm-custom-style-container,
.ccm-page .subpage-body .container,
.ccm-page .subpage-body .row,
.ccm-page .subpage-body [class*="col-"] {
  display: contents;
}

/*
 * CMS rich text wrapper — styles apply to headings and lists output by the editor.
 * In Concrete CMS, wrap the content block output in: <div class="cms-content">…</div>
 */
.ccm-page .cms-content {
  color: #1c2d3d;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ccm-page .cms-content > * + * {
  margin-top: 1rem;
}

.ccm-page .cms-content h2,
.ccm-page .cms-content h3,
.ccm-page .cms-content h4,
.ccm-page .cms-content h5,
.ccm-page .cms-content h6 {
  color: #002060;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.ccm-page .cms-content h2 {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.ccm-page .cms-content h3 {
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.ccm-page .cms-content h4 {
  margin-top: clamp(1.5rem, 3.5vw, 1.85rem);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.ccm-page .cms-content h5 {
  margin-top: clamp(1.25rem, 3vw, 1.5rem);
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
}

.ccm-page .cms-content h6 {
  margin-top: clamp(1.1rem, 2.5vw, 1.35rem);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 32, 96, 0.78);
}

.ccm-page .cms-content > :first-child {
  margin-top: 0;
}

.ccm-page .cms-content p {
  margin: 0;
}

.ccm-page .cms-content ul,
.ccm-page .cms-content ol {
  margin: 0;
  padding: 0;
}

.ccm-page .cms-content ul {
  list-style: none;
}

.ccm-page .cms-content ol {
  padding-left: 1.5rem;
}

.ccm-page .cms-content li + li {
  margin-top: 0.45rem;
}

.ccm-page .cms-content ul > li {
  position: relative;
  padding-left: 1.1rem;
}

.ccm-page .cms-content ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #8a96a3;
  font-weight: 500;
}

.ccm-page .cms-content ol > li {
  padding-left: 0.15rem;
}

.ccm-page .cms-content ul ul,
.ccm-page .cms-content ul ol,
.ccm-page .cms-content ol ul,
.ccm-page .cms-content ol ol {
  margin-top: 0.45rem;
}

.ccm-page .cms-content a {
  color: #002060;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.ccm-page .cms-content a:hover {
  color: #d85f28;
}

.ccm-page .cms-content strong {
  font-weight: 600;
  color: #002060;
}

