/*
Theme Name: SUPPORT AI Operator
Theme URI: https://example.com/ai-native-cs-operator
Author: SUPPORT AI Studio
Description: A premium WordPress theme for SUPPORT AI customer support systems. Includes front page, works archive, work detail, contact, thanks, privacy, 404, and a modal menu.
Version: 1.5.421
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ai-native-cs
*/

:root {
  --cs-ink: #353533;
  --cs-ink-strong: #1d1d1b;
  --cs-text: #4d4d49;
  --cs-muted: #76766f;
  --cs-faint: #eeeeea;
  --cs-line: #deded8;
  --cs-paper: #ffffff;
  --cs-paper-soft: #f8faf9;
  --cs-paper-warm: #f1eee5;
  --cs-teal: #2f766b;
  --cs-amber: #b9833a;
  --cs-rust: #93695c;
  --cs-max: 1200px;
  --cs-page-pad: clamp(20px, 3.1vw, 40px);
  --cs-intro-delay: 0ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cs-paper);
  color: var(--cs-text);
  font-family: "Montserrat", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  margin: 0;
}

body.home,
body.front-page {
  --cs-intro-delay: 2360ms;
}

body.home::before,
body.home::after,
body.front-page::before,
body.front-page::after {
  content: "";
  pointer-events: none;
  position: fixed;
}

body.home::before,
body.front-page::before {
  animation: csLoaderVeil 2860ms cubic-bezier(0.83, 0, 0.17, 1) both;
  background: #fff;
  inset: 0;
  z-index: 9998;
}

body.home::after,
body.front-page::after {
  animation:
    csLoaderLogoSpinFast 520ms linear infinite,
    csLoaderLogoFade 2180ms linear both;
  background: url("assets/images/support-ai-loader-mark.svg?v=1.5.420") center / contain no-repeat;
  height: 76px;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
  transform-origin: 50% 50%;
  width: 76px;
  will-change: opacity, transform;
  z-index: 9999;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

p {
  line-height: 2.05;
}

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

@keyframes csHeaderIn {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes csLoaderVeil {
  0%,
  78% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes csLoaderSpin {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(-90deg);
  }

  100% {
    transform: translate3d(-50%, -50%, 0) rotate(990deg);
  }
}

@keyframes csLoaderLogoSpinFast {
  from {
    transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
  }

  to {
    transform: translate3d(-50%, -50%, 0) rotate(360deg) scale(1);
  }
}

@keyframes csLoaderLogoFade {
  0% {
    opacity: 0;
  }

  12%,
  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes csLoaderTone {
  0% {
    background-image:
      radial-gradient(circle at 50% 50%,
        rgba(255, 255, 255, 1) 0%,
        rgba(235, 235, 231, 0.98) 48%,
        rgba(178, 178, 171, 0.98) 82%,
        rgba(118, 118, 111, 0.98) 100%);
    opacity: 0;
  }

  18% {
    background-image:
      radial-gradient(circle at 50% 50%,
        rgba(248, 248, 245, 1) 0%,
        rgba(220, 220, 214, 0.98) 42%,
        rgba(127, 127, 121, 0.98) 74%,
        var(--cs-ink-strong) 100%);
    opacity: 1;
  }

  90% {
    background-image:
      radial-gradient(circle at 50% 50%,
        rgba(218, 218, 212, 0.98) 0%,
        rgba(122, 122, 116, 0.98) 48%,
        var(--cs-ink-strong) 100%);
    opacity: 1;
  }

  100% {
    background-image:
      radial-gradient(circle at 50% 50%,
        rgba(218, 218, 212, 0.98) 0%,
        rgba(122, 122, 116, 0.98) 48%,
        var(--cs-ink-strong) 100%);
    opacity: 0;
  }
}

@keyframes csHeroMaskIn {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.955);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes csHeroImageIn {
  from {
    filter: none;
    transform: scale(1.07);
  }

  to {
    filter: none;
    transform: scale(1);
  }
}

@keyframes csTextRiseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes csMarqueeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.skip-link {
  background: var(--cs-paper);
  color: var(--cs-ink-strong);
  left: 12px;
  padding: 10px 12px;
  position: absolute;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  animation: csHeaderIn 760ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 90ms) both;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
  color: var(--cs-ink);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 77px;
  padding: 21px var(--cs-page-pad);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.admin-bar .site-header {
  top: 32px;
}

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

.brand-mark {
  color: transparent;
  display: inline-block;
  height: 18px;
  position: relative;
  width: 18px;
}

.brand-mark::before,
.brand-mark::after {
  background: var(--cs-ink);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
}

.brand-mark::before {
  box-shadow: 0 7px 0 var(--cs-ink);
  top: 2px;
  width: 18px;
}

.brand-mark::after {
  bottom: 2px;
  width: 12px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--cs-ink);
  font-size: 17px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  display: none;
}

.desktop-nav,
.desktop-nav ul {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: var(--cs-ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav .current-menu-item > a {
  color: var(--cs-teal);
}

.menu-toggle,
.modal-close {
  background: transparent;
  border: 0;
  color: var(--cs-ink);
  cursor: pointer;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  width: 22px;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle::after {
  top: 28px;
  width: 16px;
}

.modal-close {
  border: 1px solid var(--cs-line);
  border-radius: 999px;
}

.modal-close::before,
.modal-close::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  top: 20px;
  width: 18px;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.menu-modal {
  background: rgba(255, 255, 255, 0.985);
  color: var(--cs-ink);
  display: grid;
  inset: 0;
  opacity: 0;
  padding: clamp(22px, 5vw, 58px);
  pointer-events: none;
  position: fixed;
  transition: opacity 260ms ease;
  z-index: 80;
}

.menu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal-head,
.modal-nav a,
.modal-aside {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu-modal.is-open .menu-modal-head,
.menu-modal.is-open .modal-nav a,
.menu-modal.is-open .modal-aside {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.menu-modal.is-open .modal-nav li:nth-child(1) a {
  transition-delay: 90ms;
}

.menu-modal.is-open .modal-nav li:nth-child(2) a {
  transition-delay: 140ms;
}

.menu-modal.is-open .modal-nav li:nth-child(3) a {
  transition-delay: 190ms;
}

.menu-modal.is-open .modal-nav li:nth-child(4) a {
  transition-delay: 240ms;
}

.menu-modal.is-open .modal-nav li:nth-child(5) a {
  transition-delay: 290ms;
}

.menu-modal.is-open .modal-aside {
  transition-delay: 250ms;
}

.menu-modal-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.menu-modal-grid {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  margin: auto;
  max-width: var(--cs-max);
  width: 100%;
}

.modal-nav,
.modal-nav ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal-nav a {
  border-bottom: 1px solid var(--cs-line);
  color: var(--cs-ink);
  display: block;
  font-size: clamp(36px, 7vw, 88px);
  font-weight: 620;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 16px 0 20px;
  text-transform: uppercase;
}

.modal-aside {
  border-left: 1px solid var(--cs-line);
  padding-left: 34px;
}

.modal-aside p {
  color: var(--cs-muted);
  font-size: clamp(14px, 1.4vw, 17px);
  margin: 0 0 28px;
}

.button,
.wp-block-button__link,
button.button {
  align-items: center;
  background: var(--cs-ink);
  border: 1px solid var(--cs-ink);
  border-radius: 2px;
  color: var(--cs-paper);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.wp-block-button__link:hover {
  background: var(--cs-teal);
  border-color: var(--cs-teal);
}

.button-light {
  background: var(--cs-paper);
  border-color: var(--cs-paper);
  color: var(--cs-ink);
}

.button-ghost {
  background: transparent;
  border-color: var(--cs-line);
  color: var(--cs-ink);
}

.hero {
  background: var(--cs-paper);
  color: var(--cs-ink);
  min-height: 760px;
  overflow: hidden;
  padding-top: 77px;
  position: relative;
}

.hero-clip-defs {
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 0;
}

.hero-media {
  animation: csHeroMaskIn 1300ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--cs-intro-delay) + 170ms) both;
  border-radius: 0;
  clip-path: polygon(9% 30%, 6% 18%, 16% 8%, 33% 6%, 54% 3%, 78% 11%, 91% 29%, 100% 42%, 98% 60%, 88% 73%, 75% 88%, 56% 96%, 37% 88%, 20% 81%, 9% 68%, 6% 52%, 3% 42%, 4% 34%);
  clip-path: url("#heroBlobClip");
  height: clamp(520px, 52vw, 650px);
  left: max(132px, 10.4vw);
  overflow: hidden;
  position: absolute;
  right: max(72px, 8vw);
  top: 86px;
  transform-origin: 50% 50%;
  z-index: 0;
}

.hero-media img {
  animation: csHeroImageIn 1600ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--cs-intro-delay) + 170ms) both;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.hero-inner {
  min-height: 683px;
  padding: 0 var(--cs-page-pad);
  position: relative;
  z-index: 2;
}

.hero-copy {
  height: 672px;
  position: relative;
}

.hero .eyebrow,
.hero-lead,
.hero-proof {
  display: none;
}

.hero h1 {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  left: clamp(92px, 9.8vw, 124px);
  line-height: 1.12;
  margin: 0;
  max-width: none;
  position: absolute;
  top: 53px;
  writing-mode: horizontal-tb;
}

.hero h1 > span {
  animation: csTextRiseIn 900ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 520ms) both;
  background: rgba(248, 250, 249, 0.92);
  color: var(--cs-ink);
  display: block;
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 720;
  letter-spacing: 0.08em;
  padding: 12px 8px;
  writing-mode: vertical-rl;
}

.hero h1 > span:nth-child(2) {
  animation-delay: calc(var(--cs-intro-delay) + 640ms);
}

.hero h1 .hero-latin {
  display: inline;
  font-family: Montserrat, "Noto Sans JP", system-ui, sans-serif;
  font-size: 0.88em;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  text-orientation: upright;
}

.hero h1 .hero-latin-gap {
  padding-block-start: 0.18em;
}

.hero h1 .hero-combine {
  display: inline-block;
  font-family: Montserrat, "Noto Sans JP", system-ui, sans-serif;
  font-size: 0.78em;
  font-weight: 760;
  letter-spacing: 0;
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
}

.hero-note {
  animation: csTextRiseIn 780ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 860ms) both;
  background: rgba(255, 255, 255, 0.74);
  bottom: 112px;
  color: var(--cs-muted);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 760;
  left: clamp(40px, 3.1vw, 48px);
  line-height: 1.66;
  margin: 0;
  max-width: 760px;
  padding: 14px 0;
  position: absolute;
}

.hero-note > span {
  display: block;
  white-space: nowrap;
}

.hero-note .hero-combine {
  display: inline-block;
}

.hero-actions {
  align-items: center;
  animation: csTextRiseIn 760ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 960ms) both;
  bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  left: clamp(40px, 3.1vw, 48px);
  position: absolute;
  z-index: 3;
}

.hero-actions .button {
  min-width: 168px;
}

.hero-marquee {
  animation: csMarqueeIn 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 760ms) both;
  bottom: -10px;
  color: rgba(53, 53, 51, 0.1);
  font-size: clamp(80px, 15vw, 202px);
  font-weight: 500;
  left: -24px;
  letter-spacing: 0.02em;
  line-height: 0.82;
  margin: 0;
  pointer-events: none;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
}

.page-hero .eyebrow {
  animation: csTextRiseIn 760ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 180ms) both;
}

.page-hero h1 {
  animation: csTextRiseIn 900ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 260ms) both;
}

.page-hero p {
  animation: csTextRiseIn 820ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 410ms) both;
}

.page-hero::after {
  animation: csMarqueeIn 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 300ms) both;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal-item.reveal-image {
  transform: translate3d(0, 42px, 0) scale(1.015);
}

.motion-ready .reveal-item.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

  body.home::before,
  body.home::after,
  body.front-page::before,
  body.front-page::after {
    content: none;
  }
}

.section {
  background: var(--cs-paper);
  padding: clamp(104px, 12vw, 164px) var(--cs-page-pad);
}

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

.section-inner {
  margin: 0 auto;
  max-width: var(--cs-max);
}

.section-head {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  margin-bottom: clamp(48px, 7vw, 76px);
}

.eyebrow {
  color: var(--cs-ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.section-title {
  color: var(--cs-ink);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 690;
  letter-spacing: 0.02em;
  line-height: 1.44;
  margin: 0;
}

.section-copy {
  color: var(--cs-text);
  font-size: 15px;
  line-height: 2.3;
  margin: 0;
}

.section-copy-group {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  max-width: 680px;
}

.section-copy-group .section-copy {
  max-width: 100%;
}

.about-copy {
  display: grid;
  gap: 26px;
}

.service-list {
  border-top: 1px solid var(--cs-line);
}

.service-item {
  align-items: center;
  border-bottom: 1px solid var(--cs-line);
  display: grid;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.56fr) minmax(380px, 0.44fr);
  min-height: 424px;
  padding: clamp(44px, 6vw, 68px) 0;
}

.service-number {
  color: #a0a09a;
  display: block;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.service-item h3 {
  color: var(--cs-ink);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 640;
  line-height: 1.55;
  margin: 0 0 20px;
}

.service-item p {
  color: var(--cs-text);
  font-size: 14px;
  line-height: 2.25;
  margin: 0;
  max-width: 560px;
}

.service-image {
  aspect-ratio: 1.56 / 1;
  background: var(--cs-paper-soft);
  justify-self: end;
  max-width: 520px;
  overflow: hidden;
  width: 100%;
}

.service-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.works-section .section-head {
  grid-template-columns: minmax(220px, 0.26fr) minmax(0, 0.74fr);
}

.works-title-row {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.archive-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
}

.archive-tools a {
  background: var(--cs-paper);
  border: 1px solid var(--cs-line);
  border-radius: 2px;
  color: var(--cs-text);
  display: inline-flex;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.04em;
  padding: 9px 14px;
}

.archive-tools a.is-active,
.archive-tools a:hover {
  background: var(--cs-ink);
  color: var(--cs-paper);
}

.case-grid {
  display: grid;
  gap: clamp(24px, 3.4vw, 42px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: clamp(0px, 22vw, 260px);
}

.case-grid.case-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: 0;
}

.case-card {
  min-width: 0;
}

.case-card a {
  display: block;
}

.case-image {
  aspect-ratio: 1.5 / 1;
  background: var(--cs-paper-soft);
  margin-bottom: 15px;
  overflow: hidden;
}

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

.case-card a:hover .case-image img {
  transform: none;
}

.case-meta {
  color: var(--cs-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.case-card h3 {
  color: var(--cs-ink);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 560;
  line-height: 1.72;
  margin: 0;
}

.case-card p,
.case-card .text-link {
  display: none;
}

.text-link::after {
  content: " ->";
  margin-left: 6px;
}

.company-section {
  background: var(--cs-paper-soft);
}

.company-layout {
  display: grid;
  gap: clamp(52px, 7vw, 96px);
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
}

.company-table {
  background: var(--cs-paper);
  border-top: 1px solid var(--cs-line);
}

.company-list {
  margin: 0;
}

.company-list div {
  border-bottom: 1px solid var(--cs-line);
  display: grid;
  gap: clamp(28px, 4.2vw, 56px);
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 90px;
  padding: 23px 30px;
}

.company-list dt {
  color: var(--cs-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.company-list dd {
  color: var(--cs-text);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.95;
  margin: 0;
}

.stats-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.stat-card {
  background: #f8faf9;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 36px 40px 34px;
}

.stat-card b {
  color: var(--cs-ink);
  display: block;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 620;
  line-height: 1.6;
  margin: 0 0 8px;
}

.stat-card span {
  color: var(--cs-ink);
  display: block;
  font-size: clamp(46px, 5.2vw, 66px);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1;
  margin-top: auto;
  text-align: right;
  white-space: nowrap;
}

.stat-card small {
  color: var(--cs-muted);
  display: block;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.contact-band {
  background: var(--cs-paper);
  border-top: 0;
  padding-bottom: clamp(96px, 10vw, 148px);
  padding-top: clamp(72px, 8vw, 112px);
}

.contact-panel {
  align-items: start;
  display: grid;
  gap: clamp(40px, 7vw, 92px);
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
}

.contact-vertical {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-self: start;
}

.contact-vertical span {
  color: var(--cs-ink);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.94;
}

.contact-copy h2 {
  color: var(--cs-ink);
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 620;
  line-height: 1.5;
  margin: 0 0 22px;
}

.contact-copy p {
  color: var(--cs-text);
  margin: 0 0 28px;
  max-width: 680px;
}

.contact-copy .button {
  font-size: 13px;
  letter-spacing: 0;
  min-height: 64px;
  min-width: 216px;
  padding: 0 52px;
}

.page-hero {
  background: var(--cs-paper);
  border-bottom: 1px solid var(--cs-line);
  color: var(--cs-ink);
  overflow: hidden;
  padding: 154px var(--cs-page-pad) 78px;
  position: relative;
}

.page-hero-inner {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: var(--cs-max);
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--cs-ink);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 560;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0;
  max-width: 940px;
}

.page-hero p {
  color: var(--cs-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  margin: 0;
  max-width: 720px;
}

.page-hero::after {
  color: rgba(53, 53, 51, 0.08);
  content: attr(data-marquee);
  font-size: clamp(96px, 17vw, 220px);
  font-weight: 520;
  left: -18px;
  line-height: 0.8;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 46px;
  white-space: nowrap;
  z-index: 0;
}

.single-grid {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
}

.single-content {
  color: var(--cs-text);
}

.single-hero-image {
  margin: 0 0 54px;
  overflow: hidden;
}

.single-hero-image img {
  aspect-ratio: 1.68 / 1;
  object-fit: cover;
  width: 100%;
}

.single-content h2 {
  border-top: 1px solid var(--cs-line);
  color: var(--cs-ink);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 620;
  line-height: 1.55;
  margin: 58px 0 18px;
  padding-top: 32px;
}

.single-content h3 {
  color: var(--cs-ink);
  font-size: 20px;
  line-height: 1.5;
  margin: 36px 0 12px;
}

.single-content p,
.single-content li {
  font-size: 15px;
  line-height: 2.15;
}

.single-sidebar {
  align-self: start;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(53, 53, 51, 0.12);
  border-radius: var(--cs-radius-sm);
  box-shadow: 0 18px 46px rgba(53, 53, 51, 0.06);
  padding: 30px 32px 32px;
  position: sticky;
  top: 110px;
}

.single-sidebar dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.single-sidebar div {
  border-bottom: 1px solid var(--cs-line);
  padding: 20px 0;
}

.single-sidebar div:first-child {
  padding-top: 0;
}

.single-sidebar div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.single-sidebar dt {
  color: var(--cs-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.single-sidebar dd {
  color: var(--cs-text);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.8;
  margin: 0;
}

.single-sidebar .button {
  justify-content: center;
  min-height: 58px;
  width: 100%;
}

.form-layout {
  display: grid;
  gap: clamp(42px, 7vw, 84px);
  grid-template-columns: minmax(0, 0.66fr) minmax(260px, 0.34fr);
}

.contact-form {
  display: grid;
  gap: 0;
}

.field {
  border-bottom: 1px solid var(--cs-line);
  display: grid;
  gap: 10px;
  padding: 16px 0;
}

.field label {
  color: var(--cs-ink);
  font-size: 13px;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  background: var(--cs-paper);
  border: 1px solid #cfcfca;
  border-radius: 0;
  color: var(--cs-ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.checkbox-group {
  display: grid;
  gap: 10px;
}

.checkbox-group label {
  align-items: center;
  color: var(--cs-text);
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.checkbox-group input {
  accent-color: var(--cs-teal);
  height: 16px;
  min-height: 0;
  padding: 0;
  width: 16px;
}

.contact-aside {
  border-left: 1px solid var(--cs-line);
  padding-left: 34px;
}

.contact-aside h2 {
  color: var(--cs-ink);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 620;
  line-height: 1.45;
  margin: 0 0 18px;
}

.contact-aside p {
  color: var(--cs-text);
  font-size: 14px;
  margin: 0 0 18px;
}

.entry-content {
  margin: 0 auto;
  max-width: 880px;
}

.entry-content h2 {
  border-top: 1px solid var(--cs-line);
  color: var(--cs-ink);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 620;
  margin: 48px 0 16px;
  padding-top: 28px;
}

.entry-content p,
.entry-content li {
  font-size: 15px;
  line-height: 2.1;
}

.entry-content a:not(.button) {
  color: var(--cs-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #3d3d39;
  color: var(--cs-paper);
  padding: 54px var(--cs-page-pad) 34px;
}

.footer-inner {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: var(--cs-max);
}

.footer-nav,
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a,
.footer-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer .brand-mark::before,
.site-footer .brand-mark::after {
  background: var(--cs-paper);
}

.site-footer .brand-mark::before {
  box-shadow: 0 7px 0 var(--cs-paper);
}

.site-footer .brand-name {
  color: var(--cs-paper);
}

.footer-lower {
  margin-top: 36px;
}

.pagination,
.nav-links {
  display: flex;
  gap: 10px;
  margin-top: 48px;
}

.page-numbers {
  border: 1px solid var(--cs-line);
  color: var(--cs-text);
  display: inline-flex;
  min-width: 38px;
  padding: 8px 12px;
}

.page-numbers.current {
  background: var(--cs-ink);
  color: var(--cs-paper);
}

/* Fidelity pass: match the reference structure more closely with photographic assets. */
.menu-toggle {
  display: none;
}

.hero {
  min-height: 780px;
}

.hero-media {
  height: clamp(540px, 53vw, 660px);
  left: max(132px, 10.4vw);
  right: max(72px, 8vw);
  top: 86px;
}

.hero-media img {
  filter: none;
  opacity: 1;
}

.hero-inner {
  min-height: 703px;
}

.hero-copy {
  height: 682px;
}

.hero h1 {
  top: 58px;
}

.hero h1 > span {
  font-size: clamp(28px, 3vw, 38px);
}

.hero-note {
  bottom: 48px;
}

.hero-marquee {
  bottom: -12px;
  color: rgba(53, 53, 51, 0.18);
  font-size: clamp(96px, 16vw, 224px);
}

.about-section {
  padding-bottom: clamp(72px, 7vw, 96px);
  padding-top: clamp(96px, 10vw, 132px);
}

.about-section .section-head {
  margin-bottom: 0;
}

.about-media-grid {
  align-items: start;
  display: grid;
  gap: clamp(76px, 8vw, 112px);
  grid-template-columns: minmax(300px, 380px) minmax(300px, 380px);
  justify-content: start;
  margin-top: clamp(34px, 5vw, 58px);
  max-width: 900px;
}

.about-media-grid figure {
  margin: 0;
  overflow: hidden;
}

.about-media-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-main-photo {
  align-self: start;
  aspect-ratio: 0.63 / 1;
  max-width: 380px;
}

.about-sub-photo {
  align-self: center;
  aspect-ratio: 1.62 / 1;
  justify-self: start;
  max-width: 380px;
  transform: translateY(clamp(102px, 11vw, 138px));
  width: 100%;
}

.section-soft {
  overflow: hidden;
  position: relative;
}

.section-curve {
  background: var(--cs-paper);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  height: clamp(150px, 18vw, 260px);
  left: -12vw;
  position: absolute;
  right: -12vw;
  top: -1px;
  z-index: 0;
}

.section-soft > .section-inner {
  position: relative;
  z-index: 1;
}

.service-list {
  margin-top: clamp(50px, 6vw, 86px);
}

.service-item {
  min-height: 392px;
}

.service-image {
  aspect-ratio: 1.4 / 1;
}

.service-image img,
.case-image img {
  filter: none;
}

.case-image {
  aspect-ratio: 1.46 / 1;
}

.case-card {
  border-top: 1px solid rgba(53, 53, 51, 0.14);
  padding-top: 18px;
}

.case-card .case-image {
  background: #f8faf9;
}

.case-card .case-image img {
  filter: none;
}

.case-card h3 {
  font-weight: 610;
}

.wide-photo-band {
  background: #fff;
  line-height: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.wide-photo-band img {
  aspect-ratio: 2.36 / 1;
  display: block;
  filter: none;
  min-height: 470px;
  object-fit: cover;
  object-position: center 58%;
  opacity: 1;
  width: 100%;
}

.company-section {
  padding-top: clamp(104px, 11vw, 152px);
}

/* Precision pass: keep the quiet editorial tone while tightening rhythm. */
body {
  background: #fff;
  font-feature-settings: "palt";
}

p {
  line-height: 2.08;
}

.section {
  padding-bottom: clamp(112px, 12vw, 168px);
  padding-top: clamp(112px, 12vw, 168px);
}

.section-head {
  gap: clamp(44px, 6.6vw, 96px);
  margin-bottom: clamp(56px, 7.2vw, 88px);
}

.section-title {
  line-height: 1.56;
}

.section-copy {
  line-height: 2.28;
  max-width: 760px;
}

.hero h1 {
  gap: 9px;
}

.hero h1 > span {
  line-height: 1.18;
  padding: 13px 8px;
}

.hero-note {
  line-height: 2.08;
  max-width: 430px;
}

.hero-media img {
  filter: none;
  opacity: 1;
}

.hero-marquee {
  letter-spacing: 0;
}

.about-copy {
  gap: 23px;
}

@media (min-width: 769px) {
  .about-section .about-copy {
    padding-top: 42px;
  }
}

.about-section {
  padding-bottom: clamp(118px, 12vw, 174px);
}

.about-media-grid {
  margin-top: clamp(44px, 5.8vw, 72px);
}

.company-section .section-title {
  font-size: clamp(29px, 3.05vw, 43px);
  line-height: 1.62;
}

.service-list {
  margin-top: clamp(56px, 6.6vw, 92px);
}

.service-item {
  gap: clamp(54px, 8vw, 120px);
  min-height: 424px;
  padding-bottom: clamp(48px, 6vw, 68px);
  padding-top: clamp(48px, 6vw, 68px);
}

.service-item h3 {
  line-height: 1.58;
  margin-bottom: 18px;
}

.service-item p {
  line-height: 2.18;
  max-width: 590px;
}

.case-grid {
  gap: clamp(30px, 3.6vw, 48px);
}

.case-image {
  margin-bottom: 18px;
}

.case-card h3 {
  line-height: 1.78;
}

.company-list div {
  min-height: 90px;
  padding-bottom: 23px;
  padding-top: 23px;
}

.company-list dd {
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.stat-card {
  min-height: 238px;
}

.stat-card span {
  font-size: clamp(46px, 5.2vw, 66px);
  letter-spacing: 0;
}

.stat-card small {
  line-height: 1.8;
}

.contact-copy h2 {
  line-height: 1.54;
}

.contact-copy p {
  line-height: 2.16;
}

.page-image-band {
  background: var(--cs-paper);
  padding: clamp(42px, 6vw, 86px) var(--cs-page-pad) 0;
}

.page-image-band img {
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  width: 100%;
}

.split-section {
  display: grid;
  gap: clamp(44px, 6.8vw, 96px);
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
}

.value-list {
  display: grid;
  gap: 0;
}

.value-item {
  border-top: 1px solid var(--cs-line);
  display: grid;
  gap: clamp(24px, 4.8vw, 78px);
  grid-template-columns: 90px minmax(220px, 0.36fr) minmax(0, 0.64fr);
  padding: clamp(34px, 5vw, 58px) 0;
}

.value-item:last-child {
  border-bottom: 1px solid var(--cs-line);
}

.value-item span,
.process-list span {
  color: var(--cs-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-item h3 {
  color: var(--cs-ink);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 620;
  line-height: 1.55;
  margin: 0;
}

.value-item p {
  color: var(--cs-text);
  font-size: 14px;
  line-height: 2.15;
  margin: 0;
}

.page-service-list {
  margin-top: 0;
}

.process-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid var(--cs-line);
  padding: 28px 0 30px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--cs-line);
}

.process-list strong {
  color: var(--cs-ink);
  display: block;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 620;
  line-height: 1.55;
  margin: 12px 0 10px;
}

.process-list p {
  color: var(--cs-text);
  font-size: 14px;
  line-height: 2.05;
  margin: 0;
}

/* Premium editorial treatment for the formerly illustration-heavy sections. */
.about-section .section-head {
  align-items: start;
  border-bottom: 1px solid rgba(53, 53, 51, 0.12);
  padding-bottom: clamp(34px, 4.6vw, 58px);
}

.about-section .section-title {
  max-width: 620px;
}

.about-media-grid {
  align-items: start;
  gap: clamp(22px, 3.4vw, 56px);
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  margin-top: clamp(50px, 6.2vw, 88px);
  max-width: none;
  padding: clamp(22px, 3vw, 36px) 0 clamp(58px, 7vw, 98px) clamp(0px, 8vw, 108px);
  position: relative;
}

.about-media-grid::before {
  background: linear-gradient(90deg, rgba(248, 250, 249, 0), rgba(248, 250, 249, 0.74) 28%, rgba(255, 255, 255, 0.94));
  bottom: 0;
  content: "";
  height: 58%;
  left: clamp(0px, 12vw, 150px);
  pointer-events: none;
  position: absolute;
  right: calc(var(--cs-page-pad) * -1);
}

.about-media-grid::after {
  bottom: clamp(18px, 2vw, 28px);
  color: rgba(53, 53, 51, 0.48);
  content: "FIELD NOTES / SMALL EC OPERATIONS";
  font-size: 11px;
  font-weight: 650;
  left: clamp(0px, 8vw, 108px);
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
}

.about-media-grid figure {
  background: #f8faf9;
  border-top: 1px solid rgba(53, 53, 51, 0.18);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-media-grid figure::after,
.service-image::after,
.page-image-band .section-inner::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(53, 53, 51, 0.045));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-main-photo {
  aspect-ratio: 1.74 / 1;
  margin-top: clamp(26px, 3.2vw, 42px);
  max-width: none;
  width: 100%;
}

.about-sub-photo {
  aspect-ratio: 0.82 / 1;
  box-shadow: -34px 34px 0 rgba(248, 250, 249, 0.92);
  justify-self: end;
  max-width: 400px;
  width: min(100%, 400px);
}

.about-media-grid img,
.service-image img,
.page-image-band img {
  filter: none;
}

.service-list {
  border-top: 1px solid rgba(53, 53, 51, 0.16);
}

.service-item {
  border-bottom: 1px solid rgba(53, 53, 51, 0.13);
  gap: clamp(38px, 6.8vw, 102px);
  grid-template-columns: minmax(0, 0.44fr) minmax(360px, 0.56fr);
  min-height: 486px;
  padding: clamp(54px, 7.2vw, 92px) 0;
  position: relative;
}

.service-item:nth-child(even) {
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 0.44fr);
}

.service-item:nth-child(even) > div:first-child {
  order: 2;
  padding-left: clamp(0px, 2vw, 28px);
}

.service-item:nth-child(even) .service-image {
  justify-self: start;
  order: 1;
}

.service-item > div:first-child {
  padding-left: clamp(0px, 2vw, 28px);
}

.service-number {
  align-items: center;
  color: rgba(53, 53, 51, 0.46);
  display: inline-flex;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.service-number::after {
  background: rgba(53, 53, 51, 0.18);
  content: "";
  height: 1px;
  width: 56px;
}

.service-item h3 {
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 660;
  line-height: 1.46;
  max-width: 670px;
}

.service-item p {
  max-width: 610px;
}

.service-image {
  aspect-ratio: 1.56 / 1;
  background: #f8faf9;
  border-top: 1px solid rgba(53, 53, 51, 0.14);
  max-width: 640px;
  position: relative;
}

.service-image img {
  transform: scale(1.012);
}

.page-image-band .section-inner {
  position: relative;
}

.page-image-band img {
  border-top: 1px solid rgba(53, 53, 51, 0.13);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-modal-grid,
  .section-head,
  .works-section .section-head,
  .service-item,
  .about-media-grid,
  .company-layout,
  .contact-panel,
  .single-grid,
  .form-layout,
  .split-section,
  .value-item,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .modal-aside,
  .contact-aside {
    border-left: 0;
    border-top: 1px solid var(--cs-line);
    padding-left: 0;
    padding-top: 28px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    height: 560px;
    left: 0;
    right: 0;
    top: 188px;
  }

  .hero h1 {
    left: 30px;
    top: 28px;
  }

  .hero-note {
    bottom: 42px;
    left: 24px;
    max-width: calc(100vw - 48px);
  }

  .hero-marquee {
    bottom: 126px;
  }

  .about-section {
    padding-bottom: clamp(86px, 11vw, 124px);
  }

  .about-sub-photo {
    justify-self: start;
    box-shadow: none;
    transform: none;
    width: min(100%, 360px);
  }

  .about-media-grid {
    padding-left: 0;
  }

  .about-main-photo,
  .about-sub-photo {
    max-width: none;
    width: 100%;
  }

  .about-sub-photo {
    aspect-ratio: 1.28 / 1;
  }

  .service-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) > div:first-child,
  .service-item:nth-child(even) .service-image {
    order: initial;
  }

  .service-item > div:first-child {
    padding-left: 0;
  }

  .service-image {
    justify-self: stretch;
    max-width: none;
  }

  .case-grid,
  .case-grid.case-grid-wide,
  .stats-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .works-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .single-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero {
    min-height: 875px;
    padding-top: 72px;
  }

  .hero-inner,
  .hero-copy {
    min-height: 803px;
  }

  .hero h1 {
    left: 18px;
    top: 12px;
  }

  .hero h1 > span {
    font-size: 23px;
    padding: 10px 7px;
  }

  .hero-media {
    --hero-circle-size: min(92vw, 400px);
    aspect-ratio: 1 / 1;
    height: var(--hero-circle-size);
    left: 50%;
    margin-left: calc(var(--hero-circle-size) / -2);
    right: auto;
    top: 208px;
    width: var(--hero-circle-size);
  }

  .hero-note {
    bottom: 42px;
    font-size: 12px;
    line-height: 1.9;
  }

  .hero-marquee {
    bottom: 226px;
    font-size: 78px;
  }

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

  .section-title {
    font-size: 29px;
  }

  .section-copy {
    font-size: 14px;
  }

  .service-item {
    min-height: auto;
  }

  .service-image {
    min-width: 0;
  }

  .company-list div {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stat-card {
    min-height: 180px;
  }

  .contact-vertical span {
    font-size: 26px;
  }

  .button {
    width: 100%;
  }

  .page-hero {
    padding-top: 132px;
  }

  .page-hero::after {
    font-size: 82px;
    top: 72px;
  }
}

/* Mobile editorial refinement: tighten the sections that felt too plain on SP. */
@media (max-width: 640px) {
  .page-hero {
    background:
      linear-gradient(180deg, rgba(248, 250, 249, 0) 0%, rgba(248, 250, 249, 0.68) 100%),
      var(--cs-paper);
    padding-bottom: 58px;
    padding-top: 112px;
  }

  .page-hero-inner {
    gap: 16px;
  }

  .page-hero .eyebrow {
    margin-bottom: 15px;
  }

  .page-hero h1 {
    font-size: 39px;
    font-weight: 650;
    line-height: 1.18;
  }

  .page-hero p {
    color: var(--cs-text);
    font-size: 14px;
    line-height: 2.12;
  }

  .page-hero::after {
    color: rgba(53, 53, 51, 0.045);
    font-size: 86px;
    top: 66px;
  }

  .works-section {
    padding-top: 86px;
  }

  .works-section .section-head {
    gap: 25px;
    margin-bottom: 54px;
    padding-bottom: 38px;
    position: relative;
  }

  .works-section .section-head::after {
    background: linear-gradient(90deg, rgba(53, 53, 51, 0.26), rgba(53, 53, 51, 0.06));
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .works-section .section-title {
    font-size: 38px;
    line-height: 1.24;
  }

  .works-title-row {
    gap: 23px;
  }

  .works-title-row .section-copy {
    color: var(--cs-text);
    font-size: 14px;
    line-height: 2.14;
  }

  .works-title-row .button-ghost {
    background: rgba(255, 255, 255, 0.58);
    min-height: 58px;
    position: relative;
  }

  .works-title-row .button-ghost::after {
    content: none;
    display: none;
    margin-left: 0;
  }

  .case-grid {
    gap: 0;
  }

  .case-card {
    border-top-color: rgba(53, 53, 51, 0.13);
    padding: 25px 0 31px;
    position: relative;
  }

  .case-grid .case-card:first-child {
    padding-top: 0;
  }

  .case-card::after {
    color: rgba(53, 53, 51, 0.28);
    content: counter(case-card, decimal-leading-zero);
    counter-increment: case-card;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    position: absolute;
    right: 0;
    top: 27px;
  }

  .case-grid {
    counter-reset: case-card;
  }

  .case-grid .case-card:first-child::after {
    top: 2px;
  }

  .case-image {
    aspect-ratio: 1.38 / 1;
    margin-bottom: 17px;
  }

  .case-image img {
    filter: none;
  }

  .case-meta {
    color: var(--cs-muted);
    font-size: 11px;
    margin-bottom: 7px;
  }

  .case-card h3 {
    font-size: 16px;
    line-height: 1.78;
    padding-right: 34px;
  }

  .archive-tools {
    border-bottom: 1px solid var(--cs-line);
    gap: 0;
    margin-bottom: 22px;
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
  }

  .archive-tools::-webkit-scrollbar {
    display: none;
  }

  .archive-tools a {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--cs-line);
    border-radius: 0;
    flex: 0 0 auto;
    padding: 8px 15px;
  }

  .archive-tools a:first-child {
    padding-left: 0;
  }

  .archive-tools a.is-active,
  .archive-tools a:hover {
    background: transparent;
    color: var(--cs-ink);
  }

  .stats-grid {
    background: rgba(255, 255, 255, 0.56);
    border-bottom: 1px solid rgba(53, 53, 51, 0.13);
    border-top: 1px solid rgba(53, 53, 51, 0.13);
    gap: 0;
    margin-top: 24px;
  }

  .stat-card {
    background: transparent;
    border-bottom: 1px solid rgba(53, 53, 51, 0.1);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 25px 0 28px 54px;
    position: relative;
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .stat-card::before {
    color: rgba(53, 53, 51, 0.34);
    content: counter(stat-card, decimal-leading-zero);
    counter-increment: stat-card;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    letter-spacing: 0.08em;
    position: absolute;
    top: 31px;
    writing-mode: vertical-rl;
  }

  .stats-grid {
    counter-reset: stat-card;
  }

  .stat-card b {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .stat-card small {
    color: var(--cs-muted);
    font-size: 12px;
    line-height: 1.72;
    max-width: 210px;
  }

  .stat-card span {
    font-size: clamp(48px, 14vw, 62px);
    margin-top: 22px;
    text-align: right;
  }

  .contact-band {
    background:
      linear-gradient(180deg, var(--cs-paper) 0%, var(--cs-paper-soft) 100%);
    padding: 48px var(--cs-page-pad) 70px;
  }

  .contact-panel {
    background: rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(53, 53, 51, 0.14);
    border-top: 1px solid rgba(53, 53, 51, 0.14);
    display: grid;
    gap: 18px;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 22px 0 30px;
    position: relative;
  }

  .contact-panel::before {
    background: rgba(53, 53, 51, 0.14);
    bottom: 30px;
    content: "";
    left: 52px;
    position: absolute;
    top: 22px;
    width: 1px;
  }

  .contact-vertical {
    align-self: stretch;
    gap: 4px;
    justify-self: center;
    padding-top: 3px;
  }

  .contact-vertical span {
    background: transparent;
    color: var(--cs-ink);
    font-size: 24px;
    font-weight: 720;
    letter-spacing: 0;
    line-height: 0.96;
  }

  .contact-copy {
    padding: 0 0 0 18px;
  }

  .contact-copy::before {
    color: rgba(53, 53, 51, 0.48);
    content: "LOG DIAGNOSIS";
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }

  .contact-copy h2 {
    font-size: 25px;
    font-weight: 720;
    line-height: 1.62;
    margin-bottom: 18px;
  }

  .contact-copy p {
    color: var(--cs-text);
    font-size: 14px;
    line-height: 2.08;
    margin-bottom: 26px;
  }

  .contact-copy .button {
    box-shadow: 0 18px 34px rgba(53, 53, 51, 0.12);
    font-size: 13px;
    min-height: 60px;
    position: relative;
  }

  .contact-copy .button::after {
    content: none;
    display: none;
    margin-left: 0;
  }
}

/* STORES-inspired polish pass: rounded photo cards, clearer hierarchy, brighter service energy. */
.about-store-board {
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 120, 255, 0.12), rgba(0, 120, 255, 0) 34%),
    linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid rgba(53, 53, 51, 0.08);
  border-radius: clamp(26px, 3vw, 42px);
  box-shadow: 0 28px 80px rgba(53, 53, 51, 0.08);
  display: grid;
  gap: clamp(18px, 2.8vw, 34px);
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  margin-top: clamp(44px, 6vw, 78px);
  overflow: hidden;
  padding: clamp(18px, 2.8vw, 34px);
  position: relative;
}

.about-store-board::before {
  background: linear-gradient(90deg, rgba(53, 53, 51, 0.12), rgba(53, 53, 51, 0));
  content: "";
  height: 1px;
  left: clamp(24px, 3vw, 42px);
  position: absolute;
  right: clamp(24px, 3vw, 42px);
  top: clamp(24px, 3vw, 42px);
}

.about-store-photo {
  background: #fff;
  border-radius: clamp(22px, 2.4vw, 32px);
  box-shadow: 0 18px 54px rgba(53, 53, 51, 0.1);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.about-store-photo::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(18, 27, 41, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-store-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-store-photo-main {
  aspect-ratio: 0.86 / 1;
  min-height: 520px;
}

.about-store-side {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-store-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(53, 53, 51, 0.08);
  border-radius: clamp(22px, 2.3vw, 30px);
  box-shadow: 0 16px 44px rgba(53, 53, 51, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 256px;
  padding: clamp(22px, 2.6vw, 32px);
}

.about-store-card-accent {
  background: linear-gradient(135deg, #f8faf9 0%, #ffffff 86%);
}

.about-store-card span {
  color: #6f746c;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.about-store-card strong {
  color: var(--cs-ink);
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.42;
  margin-bottom: 16px;
}

.about-store-card p {
  color: var(--cs-text);
  font-size: 14px;
  line-height: 1.95;
  margin: 0;
}

.about-store-card div {
  align-items: end;
  border-top: 1px solid rgba(53, 53, 51, 0.08);
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.about-store-card b {
  color: var(--cs-ink);
  font-family: Montserrat, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.about-store-card small {
  color: var(--cs-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.about-store-photo-sub {
  aspect-ratio: 2.2 / 1;
  grid-column: 1 / -1;
}

.section-soft {
  background: #f8faf9;
}

.service-list {
  border: 0;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.service-item,
.service-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(53, 53, 51, 0.08);
  border-radius: clamp(26px, 2.8vw, 38px);
  box-shadow: 0 20px 64px rgba(53, 53, 51, 0.06);
  gap: clamp(28px, 4.4vw, 68px);
  grid-template-columns: minmax(0, 0.42fr) minmax(360px, 0.58fr);
  min-height: auto;
  overflow: hidden;
  padding: clamp(24px, 3.8vw, 48px);
}

.service-item:nth-child(even) > div:first-child,
.service-item:nth-child(even) .service-image {
  order: initial;
}

.service-number {
  background: #f8faf9;
  border-radius: 999px;
  color: #6f746c;
  gap: 0;
  margin-bottom: clamp(22px, 2.4vw, 30px);
  padding: 8px 13px;
}

.service-number::after {
  content: none;
}

.service-item h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.34;
}

.service-image {
  border: 0;
  border-radius: clamp(22px, 2.4vw, 30px);
  box-shadow: inset 0 0 0 1px rgba(53, 53, 51, 0.05);
  max-width: none;
  overflow: hidden;
}

.case-grid,
.case-grid.case-grid-wide {
  gap: clamp(18px, 2.4vw, 28px);
  margin-left: 0;
}

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

.case-card {
  background: #fff;
  border: 1px solid rgba(53, 53, 51, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(53, 53, 51, 0.055);
  overflow: hidden;
  padding: 12px 12px 20px;
}

.case-image {
  border-radius: 22px;
  margin-bottom: 16px;
}

.case-meta {
  color: #6f746c;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  flex-wrap: wrap;
  gap: 6px;
  letter-spacing: 0.04em;
  margin: 0 8px 12px;
  text-transform: none;
}

.case-meta span {
  background: #f8faf9;
  border: 1px solid rgba(53, 53, 51, 0.05);
  border-radius: 999px;
  display: inline-flex;
  padding: 5px 10px;
  white-space: nowrap;
}

.case-card h3 {
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.7;
  padding: 0 8px;
}

@media (max-width: 1100px) {
  .about-store-board {
    grid-template-columns: 1fr;
  }

  .about-store-photo-main {
    aspect-ratio: 1.56 / 1;
    min-height: 0;
  }

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

@media (max-width: 780px) {
  .about-store-board {
    border-radius: 28px;
    padding: 14px;
  }

  .about-store-side {
    grid-template-columns: 1fr;
  }

  .about-store-photo-sub {
    grid-column: auto;
  }

  .about-store-card {
    min-height: auto;
  }

  .service-item,
  .service-item:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .works-section .case-grid,
  .case-grid.case-grid-wide {
    grid-template-columns: 1fr;
  }
}

/* High-brand service surface. */
#service.section-soft,
.page-service-list {
  --service-blue: #6f746c;
  --service-ink: #101725;
  --service-panel: #111827;
}

#service.section-soft {
  background:
    radial-gradient(circle at 92% 0%, rgba(111, 116, 108, 0.16), rgba(111, 116, 108, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f2ea 100%);
  padding-top: clamp(88px, 8vw, 124px);
  scroll-margin-top: 92px;
}

#service .section-head {
  border-bottom: 0;
  gap: clamp(34px, 6vw, 88px);
  margin-bottom: clamp(32px, 4vw, 50px);
}

#service .section-title {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 680px;
}

#service .section-copy {
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 660;
  line-height: 2.08;
  max-width: 680px;
}

.service-product-panel {
  background:
    radial-gradient(circle at 72% 22%, rgba(204, 185, 143, 0.22), rgba(204, 185, 143, 0) 36%),
    linear-gradient(135deg, #121826 0%, #080b12 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(30px, 3.4vw, 48px);
  box-shadow: 0 32px 100px rgba(16, 23, 37, 0.24);
  color: #fff;
  display: grid;
  gap: clamp(26px, 4vw, 58px);
  grid-template-columns: minmax(0, 0.42fr) minmax(420px, 0.58fr);
  margin-bottom: clamp(24px, 4vw, 42px);
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
}

.service-product-panel::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
}

.service-product-copy,
.service-dashboard {
  position: relative;
  z-index: 1;
}

.service-product-copy {
  align-self: center;
}

.service-product-copy > span {
  background: rgba(111, 116, 108, 0.18);
  border: 1px solid rgba(204, 185, 143, 0.34);
  border-radius: 999px;
  color: #ded4bf;
  display: inline-flex;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  padding: 8px 12px;
}

.service-product-copy h3 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 22px;
}

.service-product-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 2.05;
  margin: 0;
}

.service-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.service-product-tags b {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 720;
  padding: 8px 11px;
}

.service-dashboard {
  background: rgba(255, 255, 255, 0.96);
  border-radius: clamp(24px, 2.8vw, 36px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  color: var(--cs-ink);
  padding: clamp(18px, 2.4vw, 28px);
}

.service-dashboard-top {
  align-items: center;
  border-bottom: 1px solid rgba(16, 23, 37, 0.08);
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.service-dashboard-top span {
  color: var(--service-blue);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-dashboard-top b {
  background: #ecf6ff;
  border-radius: 999px;
  color: var(--service-blue);
  font-size: 12px;
  padding: 7px 10px;
}

.service-dashboard-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.service-dashboard-metrics div {
  background: #f7f8fb;
  border: 1px solid rgba(16, 23, 37, 0.06);
  border-radius: 18px;
  padding: 16px;
}

.service-dashboard-metrics span {
  color: #7a8292;
  display: block;
  font-size: 11px;
  font-weight: 720;
  margin-bottom: 8px;
}

.service-dashboard-metrics b {
  color: var(--service-ink);
  font-family: Montserrat, sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.service-dashboard-inbox {
  background: #ffffff;
  border: 1px solid rgba(16, 23, 37, 0.08);
  border-radius: 22px;
  display: grid;
  gap: 0;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  overflow: hidden;
}

.service-dashboard-inbox i,
.service-dashboard-inbox span,
.service-dashboard-inbox em {
  align-items: center;
  border-bottom: 1px solid rgba(16, 23, 37, 0.06);
  display: flex;
  min-height: 54px;
}

.service-dashboard-inbox i {
  justify-content: center;
  padding-left: 16px;
}

.service-dashboard-inbox i::before {
  background: var(--service-blue);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.service-dashboard-inbox span {
  color: #232936;
  font-size: 13px;
  font-weight: 720;
  padding-left: 20px;
}

.service-dashboard-inbox em {
  color: #7a8292;
  font-size: 11px;
  font-style: normal;
  font-weight: 720;
  justify-content: flex-end;
  padding: 0 16px;
}

.service-list,
.page-service-list {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.service-item,
.service-item:nth-child(even) {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 23, 37, 0.08);
  border-radius: clamp(28px, 3vw, 42px);
  box-shadow: 0 22px 70px rgba(16, 23, 37, 0.07);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
}

.service-item > div:first-child {
  padding-left: 0;
}

.service-number {
  background: #edf6ff;
  color: var(--service-blue);
  font-size: 12px;
  margin-bottom: 22px;
}

.service-item h3 {
  color: var(--service-ink);
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1.26;
  margin-bottom: 18px;
}

.service-item p {
  color: #5c6472;
  font-size: 14px;
  line-height: 2;
  max-width: 94%;
}

.service-image {
  aspect-ratio: 1.72 / 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(111, 116, 108, 0.2), rgba(111, 116, 108, 0) 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef3f8 100%);
  border: 1px solid rgba(16, 23, 37, 0.06);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  max-width: none;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  display: none;
}

.service-image::before {
  background:
    linear-gradient(90deg, #e5eef8 10%, transparent 10% 18%, #d7e2ee 18% 44%, transparent 44% 52%, #e7edf4 52% 74%, transparent 74%),
    linear-gradient(180deg, #ffffff 0 18%, transparent 18%),
    repeating-linear-gradient(180deg, transparent 0 25px, rgba(16, 23, 37, 0.07) 26px 27px, transparent 28px 46px);
  border: 1px solid rgba(16, 23, 37, 0.07);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16, 23, 37, 0.12);
  content: "";
  inset: 24px 28px 34px 28px;
  position: absolute;
}

.service-image::after {
  background: var(--service-blue);
  border-radius: 999px;
  bottom: 22px;
  color: #fff;
  content: "AI DIAGNOSIS";
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 820;
  inset: auto;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  position: absolute;
  right: 24px;
}

.service-item:nth-child(2) .service-image::after {
  content: "ORDER CONTEXT";
}

.service-item:nth-child(3) .service-image::after {
  content: "APPROVAL ROUTE";
}

.service-item:nth-child(4) .service-image::after {
  content: "VOC INSIGHT";
}

.service-item:nth-child(3) .service-image,
.service-item:nth-child(4) .service-image {
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 118, 107, 0.22), rgba(47, 118, 107, 0) 34%),
    linear-gradient(135deg, #fbfcf9 0%, #edf4f0 100%);
}

@media (max-width: 980px) {
  .service-product-panel {
    grid-template-columns: 1fr;
  }

  .service-list,
  .page-service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #service .section-title {
    font-size: 42px;
  }

  .service-product-panel {
    border-radius: 30px;
    padding: 20px;
  }

  .service-dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .service-dashboard-inbox {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .service-dashboard-inbox em {
    display: none;
  }

  .service-item,
  .service-item:nth-child(even) {
    padding: 20px;
  }

  .service-image {
    min-height: 210px;
  }
}

/* Balanced target/profile section: service layout instead of right-heavy editorial split. */
.company-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(111, 116, 108, 0.08), rgba(111, 116, 108, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f4ee 100%);
  padding-bottom: clamp(88px, 9vw, 132px);
  padding-top: clamp(88px, 9vw, 132px);
}

.company-layout {
  display: grid;
  gap: clamp(32px, 4.4vw, 56px);
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.company-layout > div:first-child {
  max-width: 760px;
}

.company-section .eyebrow {
  background: #f8faf9;
  border-radius: 999px;
  color: #6f746c;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
}

.company-section .section-title {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.18;
  max-width: 780px;
}

.company-layout > div:nth-child(2) {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
}

.company-table {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 249, 0.92) 50%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(16, 23, 37, 0.1);
  border-radius: 34px;
  box-shadow:
    0 28px 80px rgba(16, 23, 37, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.company-table::before {
  background: linear-gradient(90deg, rgba(45, 111, 134, 0), rgba(45, 111, 134, 0.42), rgba(197, 151, 73, 0.5), rgba(45, 111, 134, 0));
  content: "";
  height: 1px;
  left: 30px;
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 2;
}

.company-list {
  counter-reset: company-card;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 16px;
}

.company-list div {
  --company-accent: #2d6f86;
  --company-tint: rgba(45, 111, 134, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 54%, var(--company-tint) 100%),
    #fff;
  border: 1px solid rgba(16, 23, 37, 0.075);
  border-radius: 24px;
  box-shadow:
    0 18px 48px rgba(16, 23, 37, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  counter-increment: company-card;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  overflow: hidden;
  padding: 24px 74px 24px 24px;
  position: relative;
}

.company-list div::before {
  color: var(--company-accent);
  color: color-mix(in srgb, var(--company-accent) 78%, #101725);
  content: "0" counter(company-card);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 25px;
}

.company-list div::after {
  background: linear-gradient(180deg, var(--company-accent), rgba(255, 255, 255, 0));
  border-radius: 999px;
  content: "";
  height: 54px;
  opacity: 0.55;
  position: absolute;
  right: 23px;
  top: 52px;
  width: 1px;
}

.company-list div:nth-child(2) {
  --company-accent: #6f746c;
  --company-tint: rgba(111, 116, 108, 0.075);
}

.company-list div:nth-child(3) {
  --company-accent: #c59847;
  --company-tint: rgba(197, 152, 71, 0.11);
}

.company-list div:nth-child(4) {
  --company-accent: #7b806c;
  --company-tint: rgba(123, 128, 108, 0.1);
}

.company-list dt {
  align-items: center;
  color: var(--company-accent);
  display: inline-flex;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 820;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.company-list dt::before {
  background: var(--company-accent);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 2px;
  opacity: 0.7;
  width: 28px;
}

.company-list dd {
  color: #202633;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.92;
  max-width: 95%;
}

.company-layout .stats-grid,
.company-section + .section .stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  max-width: 1120px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 23, 37, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(16, 23, 37, 0.055);
  min-height: 230px;
  padding: 24px;
}

.stat-card::before {
  content: none;
}

.stat-card b {
  color: #101725;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: 0;
}

.stat-card small {
  color: #7a8292;
  font-size: 12px;
  line-height: 1.7;
}

.stat-card span {
  color: #101725;
  font-family: Montserrat, sans-serif;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 780;
  letter-spacing: -0.04em;
  text-align: left;
}

@media (max-width: 980px) {
  .company-list,
  .company-layout .stats-grid,
  .company-section + .section .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .company-section .section-title {
    font-size: 36px;
  }

  .company-list,
  .company-layout .stats-grid,
  .company-section + .section .stats-grid {
    grid-template-columns: 1fr;
  }

  .company-table {
    border-radius: 26px;
  }

  .company-list div,
  .stat-card {
    border-radius: 22px;
    min-height: 0;
  }

  .company-list div {
    padding: 24px 58px 24px 22px;
  }

  .company-list dd {
    font-size: 14px;
    max-width: none;
  }

  .company-list div::before {
    right: 22px;
  }
}

/* STUDIO template refinement: quiet typography, fine rules, fewer generic AI cues. */
body {
  color: #4a4a46;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.brand-name,
.desktop-nav a,
.footer-nav a,
.eyebrow,
.service-number,
.hero-marquee,
.page-hero::after,
.contact-vertical span,
.service-product-copy > span,
.service-dashboard-top span,
.service-dashboard-metrics b,
.company-list div::before,
.stat-card span {
  font-family: "Montserrat", "Noto Sans JP", system-ui, sans-serif;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(53, 53, 51, 0.1);
  min-height: 74px;
  padding-bottom: 20px;
  padding-top: 20px;
}

.brand-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.desktop-nav {
  gap: clamp(24px, 3vw, 36px);
}

.desktop-nav a,
.footer-nav a {
  color: #343431;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

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

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

.site-footer .footer-note {
  color: rgba(255, 255, 255, 0.74);
}

/* Product screen focus: use readable crops instead of shrinking a full desktop screenshot. */
.service-dashboard-focus {
  aspect-ratio: auto;
  background: #f8f9f7;
  border: 1px solid rgba(53, 53, 51, 0.12);
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 14px;
}

.service-dashboard-focus > img {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.dashboard-focus-main,
.dashboard-focus-card {
  background-image: url("assets/images/screenshot-support-admin.png");
  background-repeat: no-repeat;
  border: 1px solid rgba(53, 53, 51, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
  position: relative;
}

.dashboard-focus-main {
  aspect-ratio: 1.55 / 1;
  background-position: 46% 8%;
  background-size: 188% auto;
}

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

.dashboard-focus-card {
  aspect-ratio: 1.28 / 1;
}

.dashboard-focus-inbox {
  background-position: 0 8%;
  background-size: 330% auto;
}

.dashboard-focus-approval {
  background-position: 100% 42%;
  background-size: 330% auto;
}

.dashboard-focus-main span,
.dashboard-focus-card span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(53, 53, 51, 0.1);
  bottom: 10px;
  color: #373733;
  font-size: 11px;
  font-weight: 700;
  left: 10px;
  line-height: 1;
  padding: 8px 10px;
  position: absolute;
}

@media (max-width: 640px) {
  .service-dashboard-focus {
    gap: 10px;
    margin-left: -6px;
    margin-right: -6px;
    padding: 10px;
  }

  .dashboard-focus-main {
    aspect-ratio: 1.08 / 1;
    background-position: 43% 9%;
    background-size: 255% auto;
  }

  .dashboard-focus-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .dashboard-focus-card {
    aspect-ratio: 1.55 / 1;
  }

  .dashboard-focus-inbox {
    background-position: 0 9%;
    background-size: 230% auto;
  }

  .dashboard-focus-approval {
    background-position: 100% 42%;
    background-size: 230% auto;
  }
}

.button,
.wp-block-button__link,
button.button {
  background: #343431;
  border-color: #343431;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  min-height: 54px;
  padding-left: 34px;
  padding-right: 34px;
}

.button:hover,
.wp-block-button__link:hover {
  background: #595950;
  border-color: #595950;
}

.hero {
  min-height: 764px;
}

.hero-media {
  filter: none;
  height: 650px;
  left: max(128px, 10vw);
  right: max(78px, 7vw);
  top: 85px;
}

.hero h1 {
  gap: 9px;
  left: clamp(124px, 9.8vw, 132px);
  top: 58px;
}

.hero h1 > span {
  background: rgba(248, 250, 249, 0.9);
  color: #363633;
  font-size: 34px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.18;
  padding: 15px 10px;
}

.hero-note {
  background: rgba(255, 255, 255, 0.76);
  bottom: 38px;
  color: #5d5d58;
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 760;
  line-height: 1.66;
  max-width: 780px;
}

.hero-marquee {
  color: rgba(53, 53, 51, 0.105);
  font-weight: 500;
  letter-spacing: 0;
}

.eyebrow {
  color: #343431;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section {
  padding-bottom: 118px;
  padding-top: 118px;
}

.section-head {
  border-bottom: 1px solid rgba(53, 53, 51, 0.12);
  grid-template-columns: minmax(390px, 0.4fr) minmax(0, 0.6fr);
  margin-bottom: 72px;
  padding-bottom: 54px;
}

.section-title,
.page-hero h1,
.contact-copy h2 {
  color: #333331;
  font-weight: 650;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-title {
  font-size: 46px;
  line-height: 1.46;
}

.section-copy,
.contact-copy p,
.service-item p,
.service-product-copy p {
  color: #555550;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.18;
}

.about-store-board {
  background: #f8faf9;
  border-color: rgba(53, 53, 51, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.about-store-board::before {
  background: rgba(53, 53, 51, 0.12);
}

.about-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(53, 53, 51, 0.1);
  border-radius: 0;
  box-shadow: none;
}

#service.section-soft,
.company-section {
  background: #fff;
}

#service .section-head {
  border-bottom: 1px solid rgba(53, 53, 51, 0.12);
}

#service .section-title {
  font-size: 44px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.36;
  max-width: 620px;
}

#service .section-copy {
  font-size: clamp(14.5px, 1.04vw, 16.5px);
  font-weight: 500;
  line-height: 2.06;
}

@media (min-width: 1181px) {
  #service .section-head {
    gap: clamp(34px, 4vw, 56px);
    grid-template-columns: minmax(410px, 0.38fr) minmax(0, 0.62fr);
  }

  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 1180px) {
  #service .section-head {
    display: block;
  }

  #service .section-title {
    max-width: 980px;
  }

  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    margin-top: clamp(26px, 4vw, 40px);
    max-width: 980px;
    padding-top: 0;
  }
}

@media (min-width: 769px) {
  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    padding-top: 48px;
  }
}

@media (min-width: 1181px) {
  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    padding-top: clamp(56px, 4.6vw, 64px);
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    padding-top: 0;
  }
}

.service-product-panel {
  background: #f8faf9;
  border-color: rgba(53, 53, 51, 0.12);
  border-radius: 0;
  box-shadow: none;
  color: #333331;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  margin-bottom: 64px;
}

.service-product-panel::before {
  background: none;
}

.service-product-copy > span {
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(53, 53, 51, 0.26);
  border-radius: 0;
  color: #73736d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0 0 0 14px;
}

.service-product-copy h3 {
  color: #333331;
  font-size: 36px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.44;
}

.service-product-tags b {
  background: #fff;
  border-color: rgba(53, 53, 51, 0.14);
  border-radius: 0;
  color: #4f4f49;
  font-size: 12px;
  font-weight: 500;
}

.service-dashboard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(53, 53, 51, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.service-dashboard-shot {
  aspect-ratio: 16 / 9;
  background: #fff;
  display: block;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.service-dashboard-shot img {
  display: block;
  filter: none;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  width: 100%;
}

.service-dashboard-top {
  border-bottom-color: rgba(53, 53, 51, 0.12);
}

.service-dashboard-top span,
.service-dashboard-top b {
  color: #4e4e49;
}

.service-dashboard-top b {
  background: #f8faf9;
  border-radius: 0;
  font-weight: 500;
}

.service-dashboard-metrics div,
.service-dashboard-inbox {
  background: #ffffff;
  border-color: rgba(53, 53, 51, 0.1);
  border-radius: 0;
}

.service-dashboard-metrics b {
  color: #333331;
  font-weight: 600;
  letter-spacing: 0;
}

.service-dashboard-inbox i::before {
  background: #9b8a63;
}

.service-dashboard-inbox span,
.service-dashboard-inbox em {
  border-bottom-color: rgba(53, 53, 51, 0.1);
  font-weight: 500;
}

.service-list,
.page-service-list {
  border-top: 1px solid rgba(53, 53, 51, 0.14);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.service-item,
.service-item:nth-child(even) {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(53, 53, 51, 0.14);
  border-radius: 0;
  box-shadow: none;
  gap: 72px;
  grid-template-columns: minmax(0, 0.54fr) minmax(360px, 0.46fr);
  padding: 64px 0;
}

.service-item:nth-child(even) {
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
}

.service-item:nth-child(even) > div:first-child {
  order: 2;
}

.service-item:nth-child(even) .service-image {
  order: 1;
}

.service-number {
  background: transparent;
  color: #9a9a93;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.service-item h3 {
  color: #333331;
  font-size: 32px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.52;
}

.service-image {
  background: #f8faf9;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 268px;
}

.service-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  width: 100%;
}

.service-image::before,
.service-image::after {
  content: none;
}

.service-copy {
  max-width: 640px;
}

.service-lead {
  max-width: none;
}

.service-detail-card {
  background: #fff;
  border: 1px solid rgba(53, 53, 51, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(53, 53, 51, 0.055);
  margin-top: 24px;
  padding: 22px 24px;
}

.service-copy .service-detail-card p {
  color: #4f504b;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.9;
  margin: 0;
  max-width: none;
}

.service-copy .service-detail-card p + p {
  margin-top: 10px;
}

.service-copy .service-detail-card strong {
  color: #333331;
  font-weight: 700;
}

.company-section {
  padding-top: 122px;
}

.company-section .eyebrow {
  background: transparent;
  border-radius: 0;
  color: #343431;
  padding: 0;
}

.company-section .section-title {
  font-size: 46px;
  font-weight: 650;
  line-height: 1.46;
}

.company-table {
  background: #fff;
  border-color: rgba(53, 53, 51, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.company-table::before {
  background: rgba(53, 53, 51, 0.14);
  left: 0;
  right: 0;
}

.company-list {
  gap: 0;
  padding: 0;
}

.company-list div {
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(53, 53, 51, 0.12);
  border-radius: 0;
  box-shadow: none;
  min-height: 132px;
  padding: 28px 72px 28px 28px;
}

.company-list div:nth-child(odd) {
  border-right: 1px solid rgba(53, 53, 51, 0.12);
}

.company-list div::before {
  color: #9a9a93;
  font-weight: 500;
}

.company-list div::after {
  background: rgba(53, 53, 51, 0.18);
}

.company-list dt {
  color: #7e7e77;
  font-weight: 600;
}

.company-list dt::before {
  background: #b8b8af;
  height: 1px;
}

.company-list dd {
  color: #333331;
  font-weight: 600;
}

.stat-card {
  background: #fff;
  border-color: rgba(53, 53, 51, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.stat-card b {
  color: #333331;
  font-weight: 650;
}

.stat-card span {
  color: #333331;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-copy h2 {
  font-size: 40px;
  line-height: 1.55;
}

.contact-copy .button {
  border-radius: 0;
  min-width: 226px;
}

@media (max-width: 980px) {
  .service-product-panel,
  .service-item,
  .service-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) > div:first-child,
  .service-item:nth-child(even) .service-image {
    order: initial;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 86px;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    left: 52px;
    top: 18px;
  }

  .hero h1 > span {
    font-size: 28px;
    padding: 12px 8px;
  }

  .hero-media {
    height: min(94vw, 404px);
    left: 50%;
    right: auto;
    top: 210px;
    width: min(94vw, 404px);
  }

  .section {
    padding-bottom: 88px;
    padding-top: 88px;
  }

  .section-title,
  #service .section-title,
  .company-section .section-title {
    font-size: 34px;
    line-height: 1.5;
  }

  .service-product-copy h3,
  .service-item h3,
  .contact-copy h2 {
    font-size: 26px;
    line-height: 1.62;
  }

  .service-product-panel {
    padding: 24px;
  }

  .service-dashboard-shot {
    min-height: 236px;
  }

  .service-dashboard-shot img {
    object-position: 42% top;
  }

  .service-item,
  .service-item:nth-child(even) {
    gap: 28px;
    padding: 44px 0;
  }

  .service-image {
    min-height: 214px;
  }

  .service-detail-card {
    border-radius: 16px;
    margin-top: 18px;
    padding: 18px;
  }

  .service-copy .service-detail-card p {
    font-size: 13px;
    line-height: 1.85;
  }

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

  .company-list div,
  .company-list div:nth-child(odd) {
    border-right: 0;
    padding: 26px 58px 26px 22px;
  }
}

/* Mobile spacing stabilization. Keep the desktop editorial rhythm, but avoid
   blank reveal gaps and clipped Japanese headings on narrow screens. */
@media (max-width: 640px) {
  html,
  body,
  .site-shell {
    overflow-x: hidden;
  }

  .motion-ready .reveal-item,
  .motion-ready .reveal-item.reveal-image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero {
    min-height: 700px;
  }

  .section {
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .section-head,
  #service .section-head,
  .works-section .section-head {
    display: block;
    gap: 0;
    margin-bottom: 34px;
    padding-bottom: 30px;
  }

  .section-title,
  #service .section-title,
  .company-section .section-title,
  .page-hero h1,
  .contact-copy h2 {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.42;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-copy,
  #service .section-copy,
  .works-title-row .section-copy {
    font-size: 14px;
    line-height: 1.92;
    margin-top: 24px;
    max-width: 100%;
  }

  .section-copy-group {
    gap: 18px;
    margin-top: 24px;
    max-width: 100%;
  }

  .section-copy-group .section-copy {
    margin-top: 0;
  }

  .about-copy {
    gap: 18px;
    margin-top: 24px;
  }

  .about-store-board {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 16px;
  }

  .about-store-board::before {
    left: 16px;
    right: 16px;
    top: 16px;
  }

  .about-store-photo-main {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .about-store-side {
    grid-template-columns: 1fr;
  }

  .about-store-card {
    min-height: 0;
    padding: 26px;
  }

  .about-store-card strong {
    font-size: 24px;
    line-height: 1.48;
  }

  .about-store-photo-sub {
    aspect-ratio: 1.58 / 1;
  }

  .service-product-panel {
    margin-bottom: 40px;
    padding: 22px;
  }

  .service-product-copy h3 {
    font-size: 24px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .service-product-tags {
    margin-top: 22px;
  }

  .service-dashboard-shot {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .service-item,
  .service-item:nth-child(even) {
    gap: 22px;
    padding: 34px 0;
  }

  .service-item h3 {
    font-size: 25px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .service-image {
    aspect-ratio: 1.62 / 1;
    min-height: 0;
  }

  .company-section {
    padding-top: 68px;
  }
}

/* Final product-screen overrides. These must stay after the mobile rules above. */
.service-dashboard.service-dashboard-shot.service-dashboard-focus {
  aspect-ratio: auto;
  display: grid;
  gap: 14px;
  min-height: 0;
  overflow: visible;
  padding: 14px;
}

.service-dashboard.service-dashboard-shot.service-dashboard-focus > img {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.service-dashboard-focus .dashboard-focus-main {
  aspect-ratio: 1.55 / 1;
  background-position: 46% 8%;
  background-size: 188% auto;
}

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

.service-dashboard-focus .dashboard-focus-card {
  aspect-ratio: 1.28 / 1;
}

@media (max-width: 640px) {
  .service-dashboard.service-dashboard-shot.service-dashboard-focus {
    gap: 10px;
    margin-left: -6px;
    margin-right: -6px;
    padding: 10px;
  }

  .service-dashboard-focus .dashboard-focus-main {
    aspect-ratio: 1.08 / 1;
    background-position: 43% 9%;
    background-size: 255% auto;
  }

  .service-dashboard-focus .dashboard-focus-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .service-dashboard-focus .dashboard-focus-card {
    aspect-ratio: 1.55 / 1;
  }
}

/* Content system for the small-EC CS manuscript. Kept at the end to win over
   earlier preview overrides. */
.hero-note {
  bottom: 112px;
}

.hero-actions {
  align-items: center;
  animation: csTextRiseIn 760ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 960ms) both;
  bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  left: clamp(40px, 3.1vw, 48px);
  position: absolute;
  z-index: 3;
}

.hero-actions .button {
  min-width: 172px;
}

.button-ghost,
.hero-actions .button-ghost,
.contact-copy .button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(53, 53, 51, 0.22);
  color: #333331;
}

.button-ghost:hover,
.hero-actions .button-ghost:hover,
.contact-copy .button-ghost:hover {
  background: #f8faf9;
  border-color: rgba(53, 53, 51, 0.42);
  color: #333331;
}

.problem-grid,
.feature-grid,
.comparison-grid {
  display: grid;
}

.problem-grid {
  gap: clamp(44px, 5vw, 72px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.problem-card,
.feature-card,
.comparison-card,
.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(53, 53, 51, 0.1);
}

.problem-card,
.feature-card {
  min-height: 0;
  padding: clamp(24px, 2.8vw, 36px);
}

.problem-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.problem-section {
  background: #f8faf9;
}

.problem-section .section-head {
  border-bottom: 0;
  margin-bottom: clamp(46px, 6vw, 86px);
}

.problem-section .section-inner {
  max-width: 1180px;
}

.problem-section .section-title {
  max-width: 760px;
}

.problem-card {
  background: transparent;
  border: 0;
  overflow: visible;
  text-align: center;
}

.problem-visual {
  aspect-ratio: 2.55 / 1;
  background: transparent;
  border-bottom: 0;
  display: block;
  object-fit: contain;
  transform: scale(1.14);
  transform-origin: center;
  width: 100%;
}

.problem-body {
  padding: clamp(20px, 2.4vw, 30px) 0 0;
}

.comparison-card span {
  color: #8d8d86;
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.feature-card span {
  display: none;
}

.problem-card p {
  color: #333331;
  font-size: clamp(17px, 1.42vw, 22px);
  font-weight: 650;
  line-height: 1.58;
  margin: 0;
}

.problem-card small {
  color: #5f5f58;
  display: block;
  font-size: clamp(13px, 0.95vw, 14px);
  font-weight: 500;
  line-height: 2;
  margin: 18px auto 0;
  max-width: 23em;
  text-align: left;
}

.feature-grid {
  gap: clamp(18px, 1.8vw, 26px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 54px);
}

.feature-card {
  min-height: 292px;
}

.feature-visual {
  aspect-ratio: 2.45 / 1;
  background: #ffffff;
  border: 0;
  display: block;
  margin-bottom: clamp(22px, 2.4vw, 30px);
  object-fit: cover;
  width: 100%;
}

.feature-card h3 {
  color: #333331;
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 650;
  line-height: 1.58;
  margin: 0 0 16px;
}

.feature-card p {
  color: #555550;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.02;
  margin: 0;
}

.comparison-grid {
  align-items: stretch;
  gap: clamp(24px, 4.4vw, 64px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
}

.comparison-grid::after {
  content: "";
  display: none;
}

@media (min-width: 961px) {
  .comparison-grid::before {
    content: "";
    display: none;
  }

  .comparison-grid::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 20' fill='none'%3E%3Cpath d='M4 10H84' stroke='%23719F96' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M76 3L84 10L76 17' stroke='%23719F96' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 86px 20px no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
    content: "";
    display: block;
    height: 24px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    z-index: 2;
  }

  .comparison-card-before {
    border-right-color: transparent;
  }

  .comparison-card-after {
    border-left-color: transparent;
  }
}

.comparison-card {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px);
  position: relative;
}

.comparison-card-before {
  background: #ffffff;
  color: #333331;
}

.comparison-card-before::after {
  content: "";
  display: none;
}

.comparison-card-after {
  background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
  border-color: rgba(126, 167, 157, 0.42);
  box-shadow: 0 22px 64px rgba(53, 53, 51, 0.08);
}

@media (min-width: 961px) {
  .comparison-grid .comparison-card-before {
    border-right-color: transparent;
  }

  .comparison-grid .comparison-card-after {
    border-left-color: transparent;
  }
}

.comparison-visual {
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  display: block;
  margin: 0 auto clamp(24px, 3vw, 36px);
  max-width: 420px;
  object-fit: contain;
  width: min(78%, 420px);
}

.comparison-label {
  border-bottom: 1px solid rgba(53, 53, 51, 0.1);
  margin-bottom: 8px;
  padding-bottom: 22px;
}

.comparison-label b {
  color: #333331;
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 690;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 12px;
}

.comparison-card ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.comparison-card li {
  border-top: 1px solid rgba(53, 53, 51, 0.1);
  color: #333331;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.8;
  padding: 16px 0 16px 30px;
  position: relative;
}

.comparison-card li:first-child {
  border-top: 0;
}

.comparison-card li::before {
  content: "";
  left: 0;
  position: absolute;
  top: 31px;
}

.comparison-card-before li::before {
  background: #a6a69f;
  height: 2px;
  width: 12px;
}

.comparison-card-after li::before {
  color: #2f7d72;
  content: "✓";
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 800;
  top: 17px;
}

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

.case-card.case-story {
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(30px, 2.6vw, 38px);
}

.case-card.case-story > a {
  color: inherit;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
}

.case-card.case-story .case-image {
  aspect-ratio: 1.44 / 1;
}

.case-card.case-story h3 {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.65;
  margin-bottom: 14px;
}

.case-card.case-story p {
  color: #555550;
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.95;
  margin: 10px 8px 0;
}

.case-card.case-story p b,
.case-card.case-story .case-more {
  color: #333331;
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.case-card.case-story p b {
  display: block;
  margin-bottom: 4px;
}

.case-card.case-story .case-more {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 13px;
  justify-content: flex-end;
  margin: auto 8px 0 auto;
  min-height: 0;
  padding: clamp(20px, 2vw, 26px) 0 0;
  transition: color 240ms ease;
}

.case-card.case-story .case-more::before {
  background: rgba(53, 53, 51, 0.36);
  content: "";
  display: inline-block;
  height: 1px;
  transition: background 240ms ease, width 240ms ease;
  width: 34px;
}

.case-card.case-story .case-more::after {
  content: none;
}

.case-card.case-story > a:hover .case-more {
  color: #6b968d;
}

.case-card.case-story > a:hover .case-more::before {
  background: #7aa79d;
  width: 42px;
}

/* Operation screen carousel. */
.service-product-panel[data-screen-carousel] {
  align-items: stretch;
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 118, 107, 0.08), rgba(47, 118, 107, 0) 34%),
    linear-gradient(180deg, #f8f8f4 0%, #f8faf9 100%);
  border: 1px solid rgba(53, 53, 51, 0.14);
  display: grid;
  gap: clamp(28px, 4.6vw, 68px);
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  padding: clamp(34px, 5vw, 62px);
}

.service-product-panel[data-screen-carousel] .service-product-copy {
  align-self: center;
}

.screen-copy-stack {
  min-height: 320px;
  position: relative;
}

.screen-copy {
  display: none;
}

.screen-copy.is-active {
  animation: csTextRiseIn 420ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  display: block;
}

.service-product-panel[data-screen-carousel] .screen-copy h3 {
  color: #333331;
  font-size: clamp(30px, 2.7vw, 38px);
  font-weight: 680;
  line-height: 1.48;
  margin: 0 0 22px;
}

.service-product-panel[data-screen-carousel] .screen-copy p {
  color: #575750;
  font-size: 14px;
  font-weight: 560;
  line-height: 2.08;
  margin: 0;
}

.screen-tabs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(22px, 3vw, 34px);
}

.screen-tabs button {
  appearance: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 53, 51, 0.16);
  color: #4d4d48;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  min-height: 48px;
  padding: 0 13px;
  text-align: left;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.screen-tabs button::before {
  color: #9a9a91;
  content: "—";
  margin-right: 8px;
}

.screen-tabs button.is-active {
  background: #343431;
  border-color: #343431;
  color: #fff;
  transform: translateY(-1px);
}

.screen-tabs button.is-active::before {
  color: #91b9b0;
}

.product-screen-carousel {
  aspect-ratio: 1.48 / 1;
  background: #fff;
  border: 1px solid rgba(53, 53, 51, 0.14);
  box-shadow: 0 26px 70px rgba(53, 53, 51, 0.08);
  cursor: grab;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(14px, 1.6vw, 22px);
  position: relative;
  touch-action: pan-y;
  z-index: 1;
}

.product-screen-carousel:active {
  cursor: grabbing;
}

.product-screen-carousel::before {
  content: none;
  display: none;
}

.screen-slide {
  display: grid;
  gap: 12px;
  grid-template-rows: minmax(0, 1fr) auto;
  inset: clamp(14px, 1.6vw, 22px);
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(18px, 0, 0);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2;
}

.screen-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  z-index: 3;
}

.screen-crop {
  background-image: url("assets/images/screenshot-support-admin.png");
  background-repeat: no-repeat;
  border: 1px solid rgba(53, 53, 51, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.screen-crop::after {
  content: none;
  display: none;
}

.screen-slide-mail .screen-crop {
  background-color: #ffffff;
  background-image: url("assets/images/service-screen-mail-history-restored.png?v=1.5.386");
  background-position: center;
  background-size: contain;
}

.screen-slide-draft .screen-crop {
  background-color: #f8faf9;
  background-image: url("assets/images/service-screen-auto-draft.svg?v=1.5.386");
  background-position: center;
  background-size: contain;
}

.screen-slide-slack .screen-crop {
  background-color: #ffffff;
  background-image: url("assets/images/service-screen-slack-final.png?v=1.5.386");
  background-position: center;
  background-size: contain;
}

.screen-slide-customer .screen-crop {
  background-color: #ffffff;
  background-image: url("assets/images/service-screen-customer-profile.png?v=1.5.386");
  background-position: center;
  background-size: contain;
}

.screen-slide figcaption {
  align-items: center;
  color: #4b4b46;
  display: flex;
  font-size: 12px;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.03em;
  line-height: 1.7;
  min-height: 30px;
}

.screen-slide figcaption::after {
  background: rgba(47, 118, 107, 0.55);
  content: "";
  height: 1px;
  margin-left: 18px;
  width: min(28%, 128px);
}

.screen-carousel-dots {
  bottom: clamp(14px, 1.6vw, 22px);
  display: flex;
  gap: 7px;
  position: absolute;
  right: clamp(14px, 1.6vw, 22px);
  z-index: 5;
}

.screen-carousel-dots span {
  background: rgba(53, 53, 51, 0.2);
  height: 2px;
  transition: background 220ms ease, width 220ms ease;
  width: 18px;
}

.screen-carousel-dots span.is-active {
  background: #2f766b;
  width: 34px;
}

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

.faq-lead-copy {
  margin-top: clamp(20px, 2.6vw, 32px);
  max-width: 380px;
}

.faq-list {
  border-top: 1px solid rgba(53, 53, 51, 0.14);
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(53, 53, 51, 0.14);
  padding: clamp(24px, 3.2vw, 38px) 0;
}

.faq-item h3 {
  color: #333331;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 650;
  line-height: 1.65;
  margin: 0 0 10px;
}

.faq-item p {
  color: #555550;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  margin: 0;
}

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

  .story-grid.case-grid.case-grid-wide {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
  }

  .comparison-grid {
    gap: clamp(62px, 12vw, 82px);
    grid-template-columns: 1fr;
  }

  .comparison-card-before::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 58' fill='none'%3E%3Cpath d='M10 4V50' stroke='%23719F96' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M4 43L10 50L16 43' stroke='%23719F96' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 58px no-repeat;
    border: 0;
    box-shadow: none;
    bottom: -60px;
    display: block;
    height: 58px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    width: 20px;
    z-index: 3;
  }
}

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

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

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .hero-note {
    bottom: 204px;
    max-width: calc(100vw - 52px);
  }

  .hero-actions {
    bottom: 64px;
    flex-direction: column;
    left: 26px;
    right: 26px;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  .problem-section .section-head,
  .change-section .section-head,
  .works-section .section-head {
    margin-bottom: 28px;
  }

  .problem-grid,
  .feature-grid,
  .story-grid.case-grid.case-grid-wide {
    grid-template-columns: 1fr;
  }

  .story-grid.case-grid.case-grid-wide {
    max-width: none;
  }

  .feature-card {
    min-height: 0;
    padding: 24px;
  }

  .problem-card {
    min-height: 0;
    padding: 0;
  }

  .problem-body {
    padding: 24px;
  }

  .feature-card {
    min-height: 0;
  }

  .comparison-card {
    padding: 26px;
  }

  .comparison-visual {
    max-width: 340px;
    width: min(88%, 340px);
  }

  .case-card.case-story p {
    font-size: 13px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .faq-list {
    margin-top: 4px;
  }
}

/* Floating consultation CTA. The hero stays editorial; conversion is handled
   as a persistent bottom action. */
@media (min-width: 961px) {
  .hero {
    min-height: 980px;
  }

  .hero-media {
    height: clamp(820px, 54vw, 960px);
    left: max(210px, 12.5vw);
    right: max(105px, 7vw);
    top: 42px;
  }
}

.hero-note {
  bottom: 42px;
}

@media (min-width: 769px) {
  .about-section .about-copy {
    padding-top: 48px;
  }
}

@media (max-width: 1180px) {
  .about-section .split-section {
    grid-template-columns: 1fr;
    gap: clamp(30px, 4vw, 44px);
  }

  .about-section .section-title {
    max-width: 760px;
    overflow-wrap: anywhere;
  }

  .about-section .about-copy {
    max-width: 760px;
    padding-top: 0;
  }
}

.floating-contact {
  align-items: center;
  background: #343431;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 54px rgba(29, 29, 27, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  justify-content: center;
  left: auto;
  min-height: 58px;
  padding: 0 28px;
  position: fixed;
  right: 28px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 260px;
  z-index: 9900;
}

.floating-contact::after {
  content: none;
  display: none;
  margin-left: 0;
}

.floating-contact:hover {
  background: #595950;
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    left: 32px;
    top: 22px;
  }

  .hero h1 > span {
    font-size: 26px;
    padding: 11px 7px;
  }

  .hero-media {
    --hero-circle-size: min(86vw, 390px);
    height: var(--hero-circle-size);
    margin-left: calc(var(--hero-circle-size) / -2);
    top: 204px;
    width: var(--hero-circle-size);
  }

  .hero-marquee {
    bottom: 214px;
    color: rgba(53, 53, 51, 0.065);
    font-size: 72px;
    z-index: 0;
  }

  .hero-note {
    background: rgba(255, 255, 255, 0.94);
    bottom: 140px;
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.62);
    left: 20px;
    line-height: 1.86;
    max-width: none;
    padding: 12px 14px;
    right: 20px;
    z-index: 3;
  }

  .floating-contact {
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 20px;
    min-height: 58px;
    right: 20px;
    width: auto;
  }
}

@media (max-width: 420px) {
  .hero-note {
    font-size: clamp(15.5px, 4.15vw, 17px);
    line-height: 1.78;
    padding-bottom: 12px;
    padding-top: 12px;
  }
}

@media (max-width: 980px) {
  .service-product-panel[data-screen-carousel] {
    grid-template-columns: 1fr;
  }

  .screen-copy-stack {
    min-height: 0;
  }

  .product-screen-carousel {
    aspect-ratio: 1.28 / 1;
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .service-product-panel[data-screen-carousel] {
    gap: 24px;
    padding: 20px;
  }

  .service-product-panel[data-screen-carousel] .screen-copy h3 {
    font-size: 23px;
    line-height: 1.5;
  }

  .service-product-panel[data-screen-carousel] .screen-copy p {
    font-size: 13px;
    line-height: 1.95;
  }

  .screen-tabs {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .screen-tabs button {
    font-size: 11px;
    line-height: 1.45;
    min-height: 44px;
    padding: 0 10px;
  }

  .product-screen-carousel {
    aspect-ratio: auto;
    min-height: 390px;
    padding: 12px;
  }

  .screen-slide {
    inset: 12px;
  }

  .screen-slide figcaption {
    align-items: flex-start;
    flex-direction: column;
    font-size: 11px;
    gap: 10px;
    min-height: 48px;
  }

  .screen-slide figcaption::after {
    margin-left: 0;
    width: 72px;
  }

  .screen-slide-mail .screen-crop {
    background-position: center;
    background-size: contain;
  }

  .screen-slide-draft .screen-crop {
    background-position: center;
    background-size: contain;
  }

  .screen-slide-slack .screen-crop {
    background-position: center;
    background-size: contain;
  }

  .screen-slide-customer .screen-crop {
    background-position: center;
    background-size: contain;
  }
}

/* Subtle rounding pass. Keep the STUDIO-like editorial sharpness, while
   softening hard UI edges enough to feel less severe. */
:root {
  --cs-radius-xs: 4px;
  --cs-radius-sm: 6px;
  --cs-radius-md: 8px;
}

.button,
.floating-contact,
.archive-tools a,
.screen-tabs button,
.service-product-tags b,
.page-numbers {
  border-radius: var(--cs-radius-xs);
}

.problem-card,
.feature-card,
.comparison-card,
.faq-item,
.company-table,
.company-list div,
.stat-card,
.contact-panel,
.form-layout,
.single-body,
.about-store-card,
.service-item,
.service-product-panel,
.service-product-panel[data-screen-carousel],
.product-screen-carousel,
.service-dashboard,
.service-dashboard-shot,
.service-dashboard-focus,
.case-card {
  border-radius: var(--cs-radius-md);
}

.problem-visual,
.feature-visual,
.comparison-visual,
.screen-crop,
.service-image,
.service-image img,
.case-image,
.case-image img,
.wide-photo-band img,
.page-image-band img,
.single-hero-image,
.single-hero-image img,
.about-main-photo,
.about-sub-photo,
.about-store-photo-main,
.about-store-photo-sub {
  border-radius: var(--cs-radius-sm);
}

.problem-card,
.feature-card,
.comparison-card,
.case-card,
.product-screen-carousel,
.service-product-panel {
  overflow: hidden;
}

/* Mobile hero balance pass. The copy moves slightly to the right and lower
   while the hero itself becomes shorter, so the first viewport feels tighter. */
@media (max-width: 640px) {
  .hero {
    min-height: 856px;
    padding-top: 72px;
  }

  .hero-inner,
  .hero-copy {
    height: 784px;
    min-height: 784px;
  }

  .hero-media {
    --hero-circle-size: min(88vw, 390px);
    height: var(--hero-circle-size);
    top: 220px;
    width: var(--hero-circle-size);
  }

  .hero-marquee {
    bottom: 222px;
  }

  .hero h1 {
    left: calc(clamp(78px, 18vw, 96px) + 14px);
  }

  .hero-note {
    bottom: 104px;
    font-size: clamp(16px, 4.45vw, 18px);
    font-weight: 760;
    left: clamp(78px, 18vw, 96px);
    line-height: 1.78;
    right: 22px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 846px;
  }

  .hero-inner,
  .hero-copy {
    height: 774px;
    min-height: 774px;
  }

  .hero-media {
    --hero-circle-size: min(86vw, 360px);
    top: 224px;
  }

  .hero-marquee {
    bottom: 210px;
  }

  .hero h1 {
    left: calc(clamp(74px, 18vw, 86px) + 14px);
  }

  .hero-note {
    bottom: 104px;
    font-size: clamp(15.5px, 4.15vw, 17px);
    left: clamp(74px, 18vw, 86px);
    right: 20px;
  }
}

/* Owned media area. */
.owned-media-section,
.media-archive-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(222, 211, 190, 0.18), rgba(222, 211, 190, 0) 32%),
    linear-gradient(180deg, #f8f7f2 0%, #f2f1eb 100%);
}

.owned-media-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 53, 51, 0.13);
  border-radius: 18px;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(420px, 0.42fr) minmax(0, 0.58fr);
  padding: clamp(28px, 4.8vw, 58px);
}

.owned-media-lead {
  align-self: center;
  min-width: 0;
}

.owned-media-lead .section-title {
  margin-bottom: clamp(20px, 2.6vw, 32px);
}

.media-title {
  display: grid;
  font-size: clamp(34px, 3.25vw, 44px);
  gap: 0.12em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.media-title span {
  display: block;
}

.media-index-link,
.media-card-link {
  align-items: center;
  color: #333331;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 13px;
  letter-spacing: 0.08em;
  margin-top: clamp(24px, 3vw, 36px);
  transition: color 240ms ease;
}

.media-index-link::before,
.media-card-link::before {
  background: rgba(53, 53, 51, 0.36);
  content: "";
  display: inline-block;
  height: 1px;
  transition: background 240ms ease, width 240ms ease;
  width: 36px;
}

.media-index-link:hover,
.media-card a:hover .media-card-link,
.media-card-link:hover {
  color: #1867c0;
}

.media-index-link:hover::before,
.media-card a:hover .media-card-link::before,
.media-card-link:hover::before {
  background: #1867c0;
  width: 46px;
}

.media-card-grid,
.media-archive-grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}

.owned-media-section .media-card-grid {
  grid-template-columns: 1fr;
}

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

.media-card {
  background:
    linear-gradient(135deg, rgba(24, 103, 192, 0.045), rgba(24, 103, 192, 0) 42%),
    #fff;
  border: 1px solid rgba(53, 53, 51, 0.13);
  border-radius: 16px;
  min-height: clamp(250px, 23vw, 310px);
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.media-card a {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.owned-media-section .media-card {
  background:
    linear-gradient(115deg, rgba(24, 103, 192, 0.055), rgba(24, 103, 192, 0) 34%),
    #fff;
  min-height: 0;
  padding: 0;
}

.owned-media-section .media-card a {
  align-items: start;
  column-gap: clamp(18px, 2.6vw, 30px);
  display: grid;
  grid-template-areas:
    "eyecatch category"
    "eyecatch title"
    "eyecatch summary"
    "eyecatch read";
  grid-template-columns: minmax(200px, 0.38fr) minmax(0, 1fr);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: clamp(172px, 15vw, 210px);
  padding: clamp(14px, 1.8vw, 20px);
  row-gap: 8px;
}

.media-card-eyecatch {
  background: #f8faf9;
  border-radius: 12px;
  display: block;
  grid-area: eyecatch;
  align-self: center;
  aspect-ratio: 1.55 / 1;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.media-card-eyecatch img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-card-category {
  align-self: flex-start;
  background: rgba(24, 103, 192, 0.08);
  border-radius: 999px;
  color: #1867c0;
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-bottom: clamp(18px, 2vw, 26px);
  padding: 7px 12px;
  white-space: nowrap;
}

.owned-media-section .media-card-category {
  align-self: center;
  grid-area: category;
  justify-self: start;
  margin: 0;
}

.media-card h3 {
  color: #333331;
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 700;
  line-height: 1.62;
  margin: 0 0 16px;
}

.owned-media-section .media-card h3 {
  grid-area: title;
  line-height: 1.48;
  margin: 0;
}

.media-card p {
  color: #555550;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.95;
  margin: 0;
}

.owned-media-section .media-card p {
  grid-area: summary;
  line-height: 1.78;
  max-width: 40em;
}

.media-card .media-card-link {
  margin-left: auto;
  margin-top: auto;
  padding-top: clamp(22px, 2.8vw, 34px);
}

.owned-media-section .media-card .media-card-link {
  align-self: end;
  grid-area: read;
  justify-self: end;
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  padding-top: 0;
  white-space: nowrap;
}

.media-card:hover {
  border-color: rgba(24, 103, 192, 0.24);
  box-shadow: 0 18px 44px rgba(24, 40, 60, 0.08);
  transform: translateY(-2px);
}

.media-archive-grid {
  margin-left: clamp(0px, 10vw, 130px);
}

@media (max-width: 1180px) {
  .owned-media-panel {
    grid-template-columns: 1fr;
  }

  .owned-media-lead {
    max-width: 720px;
  }
}

@media (max-width: 960px) {
  .owned-media-panel {
    grid-template-columns: 1fr;
  }

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

  .owned-media-section .media-card-grid {
    grid-template-columns: 1fr;
  }

  .media-archive-grid {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .owned-media-panel {
    border-radius: 16px;
    padding: 24px;
  }

  .media-card-grid,
  .media-archive-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 0;
    padding: 24px;
  }

  .owned-media-section .media-card {
    padding: 0;
  }

  .owned-media-section .media-card a {
    align-items: start;
    gap: 14px;
    grid-template-areas:
      "eyecatch"
      "category"
      "title"
      "summary"
      "read";
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
  }

  .media-card-eyecatch {
    aspect-ratio: 1.65 / 1;
    height: auto;
    min-height: 0;
    width: 100%;
  }

  .owned-media-section .media-card .media-card-link {
    justify-self: end;
    margin-top: 4px;
  }
}

/* Keep photo edges clean against the page background. */
.hero-media,
.case-image,
.wide-photo-band {
  background: #fff;
}

.hero-media {
  filter: none;
}

.hero-media img {
  filter: none;
  height: 114%;
  margin: -5% -7%;
  max-width: none;
  object-position: center 55%;
  width: 114%;
}

.case-image img,
.wide-photo-band img {
  display: block;
  filter: none;
}

.wide-photo-band img {
  border-radius: 0;
  opacity: 1;
}

.motion-ready .wide-photo-band img.reveal-item,
.motion-ready .wide-photo-band img.reveal-item.reveal-image {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Final balance pass for the intro service section. */
@media (min-width: 1181px) {
  .about-section .split-section {
    align-items: start;
    gap: clamp(84px, 8vw, 128px);
    grid-template-columns: minmax(460px, 0.45fr) minmax(0, 0.55fr);
  }

  .about-section .section-title {
    font-size: clamp(40px, 3.15vw, 46px);
    line-height: 1.52;
    max-width: 560px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .about-section .about-copy {
    max-width: 660px;
    padding-top: 48px;
  }

  .about-section .section-copy {
    line-height: 2.22;
  }
}

.problem-section .section-head {
  border-bottom: 0;
}

.problem-section .problem-card {
  border-radius: 0;
  overflow: visible;
}

.problem-section .problem-visual {
  border-radius: 0;
  margin: 0 auto;
  max-width: 112%;
}

@media (max-width: 640px) {
  .problem-section .section-head {
    margin-bottom: 38px;
  }

  .problem-grid {
    gap: 46px;
    max-width: 380px;
  }

  .problem-section .problem-visual {
    transform: scale(1.08);
  }

  .problem-body {
    padding: 18px 8px 0;
  }
}

/* Crisp product screen pass. Keep the SaaS screen clear instead of washing it
   out with decorative gradients. */
.service-product-panel[data-screen-carousel] {
  background: #f8faf9;
  border-color: rgba(53, 53, 49, 0.13);
  box-shadow: 0 18px 54px rgba(53, 53, 49, 0.06);
}

.service-product-panel[data-screen-carousel]::before,
.product-screen-carousel::before,
.screen-crop::after {
  content: none;
  display: none;
}

.product-screen-carousel {
  background: #ffffff;
  border-color: rgba(53, 53, 49, 0.14);
  box-shadow: 0 22px 54px rgba(53, 53, 49, 0.08);
}

.screen-crop {
  background-color: #fff;
  border-color: rgba(53, 53, 49, 0.14);
  box-shadow:
    0 14px 30px rgba(53, 53, 49, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  filter: none;
}

.screen-slide figcaption {
  background: #ffffff;
  border-color: rgba(53, 53, 49, 0.13);
  color: #333331;
}

/* Before/after transition mark. */
@media (min-width: 961px) {
  .comparison-grid::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 112 24' fill='none'%3E%3Ccircle cx='9' cy='12' r='2.8' fill='%23D1A75D'/%3E%3Cpath d='M16 12H100' stroke='%237AA99F' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M92 5L100 12L92 19' stroke='%237AA99F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 112px 24px no-repeat;
    border: 0;
    box-shadow: none;
    content: "";
    display: block;
    height: 24px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 112px;
    z-index: 5;
  }
}

@media (max-width: 960px) {
  .comparison-grid .comparison-card-before {
    overflow: visible;
  }

  .comparison-card-before::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 72' fill='none'%3E%3Ccircle cx='12' cy='8' r='2.8' fill='%23D1A75D'/%3E%3Cpath d='M12 16V58' stroke='%237AA99F' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M5 50L12 58L19 50' stroke='%237AA99F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 72px no-repeat;
    border: 0;
    bottom: -58px;
    box-shadow: none;
    content: "";
    display: block;
    height: 72px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    width: 24px;
    z-index: 5;
  }
}

/* Comparison connector. Keep the mark quiet and linear so it reads as flow,
   not as a floating button between the cards. */
@media (min-width: 961px) {
  .comparison-grid::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 118 22' fill='none'%3E%3Cpath d='M2 11H104' stroke='%23719F96' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M96 4L105 11L96 18' stroke='%23719F96' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 118px 22px no-repeat;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: transparent;
    content: "";
    display: block;
    height: 22px;
    width: 118px;
  }
}

@media (max-width: 960px) {
  .comparison-card-before::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 76' fill='none'%3E%3Cpath d='M12 2V62' stroke='%23719F96' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M5 54L12 63L19 54' stroke='%23719F96' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 76px no-repeat;
    border: 0;
    border-radius: 0;
    bottom: -70px;
    box-shadow: none;
    color: transparent;
    content: "";
    display: block;
    height: 76px;
    width: 24px;
  }
}

/* Mobile hero text balance. Let the vertical headline sit over the photo so
   the first view feels closer to the STUDIO reference. */
@media (max-width: 640px) {
  .hero {
    min-height: 790px;
  }

  .hero-inner,
  .hero-copy {
    min-height: 720px;
  }

  .hero h1 {
    gap: 8px;
    left: clamp(34px, 10vw, 54px);
    top: 88px;
    z-index: 5;
  }

  .hero h1 > span {
    animation: none !important;
    background: rgba(248, 250, 249, 0.92);
    font-size: clamp(22px, 6.2vw, 25px);
    line-height: 1.14;
    opacity: 1 !important;
    padding: 9px 6px;
    transform: none !important;
  }

  .hero-media {
    --hero-circle-size: min(104vw, 408px);
    animation: none !important;
    left: 50%;
    margin-left: 0;
    opacity: 1 !important;
    right: auto;
    top: 142px;
    transform: translateX(-50%) !important;
  }

  .hero-media img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-note {
    animation: none !important;
    background: rgba(255, 255, 255, 0.96);
    bottom: 94px;
    color: #4f4f4a;
    font-size: clamp(17px, 4.8vw, 19px);
    font-weight: 760;
    left: 42px;
    line-height: 1.64;
    max-width: 326px;
    min-height: 0;
    opacity: 1 !important;
    padding: 0;
    transform: none !important;
    z-index: 3;
  }

  .hero-marquee {
    bottom: 184px;
  }
}

/* Final hero balance pass. Keep the editorial STUDIO-like overlap, but pull
   the text, image, and first section into one calmer first-view composition. */
@media (min-width: 961px) {
  .hero {
    --hero-section-left: max(var(--cs-page-pad), calc((100vw - var(--cs-max)) / 2));
    --hero-copy-align-left: calc(var(--hero-section-left) - var(--cs-page-pad));
    min-height: clamp(940px, 56vw, 1020px);
  }

  .hero-inner {
    min-height: clamp(840px, 50vw, 920px);
  }

  .hero-copy {
    height: clamp(840px, 50vw, 920px);
  }

  .hero h1 {
    left: max(24px, calc(var(--hero-copy-align-left) - 70px));
    top: clamp(46px, 3.6vw, 62px);
  }

  .hero h1 > span {
    font-size: clamp(31px, 2.05vw, 36px);
    padding: 14px 9px;
  }

  .hero-media {
    height: clamp(820px, 54vw, 960px);
    left: max(210px, 13vw);
    right: max(86px, 7vw);
    top: clamp(36px, 2.4vw, 44px);
  }

  .hero-note {
    background: rgba(255, 255, 255, 0.82);
    bottom: 18px;
    color: #51514c;
    font-size: clamp(24px, 1.45vw, 28px);
    left: var(--hero-copy-align-left);
    line-height: 1.48;
    max-width: clamp(900px, 56vw, 1040px);
    padding: 10px 0;
  }

  .hero-marquee {
    bottom: 28px;
  }

  .about-section {
    padding-top: clamp(86px, 7vw, 108px);
  }
}

@media (max-width: 960px) and (min-width: 641px) {
  .hero {
    min-height: 760px;
  }

  .hero-inner,
  .hero-copy {
    min-height: 680px;
  }

  .hero-copy {
    height: 680px;
  }

  .hero h1 {
    gap: 8px;
    left: clamp(50px, 7.8vw, 74px);
    top: 42px;
    z-index: 5;
  }

  .hero h1 > span {
    font-size: clamp(28px, 4.1vw, 32px);
    line-height: 1.14;
    padding: 11px 7px;
  }

  .hero-media {
    height: clamp(500px, 68vw, 560px);
    left: clamp(170px, 28vw, 230px);
    right: -40px;
    top: 70px;
  }

  .hero-note {
    background: rgba(255, 255, 255, 0.88);
    bottom: 82px;
    color: #51514c;
    font-size: clamp(17px, 2.25vw, 19px);
    line-height: 1.76;
    left: 28px;
    max-width: min(620px, calc(100vw - 56px));
    padding: 10px 0;
  }

  .hero-marquee {
    bottom: 124px;
    font-size: clamp(92px, 19vw, 138px);
  }

  .about-section {
    padding-top: 82px;
  }
}

@media (max-width: 640px) {
  .hero {
    --hero-mobile-copy-left: clamp(34px, 10.5vw, 48px);
    --hero-mobile-note-left: calc(var(--hero-mobile-copy-left) + 60px);
    min-height: 930px;
  }

  .hero-inner,
  .hero-copy {
    min-height: 860px;
  }

  .hero-copy {
    height: 860px;
  }

  .hero h1 {
    gap: 10px;
    left: var(--hero-mobile-note-left);
    top: 76px;
  }

  .hero h1 > span {
    font-size: clamp(28px, 7.7vw, 32px);
    line-height: 1.12;
    padding: 10px 8px;
  }

  .hero-media {
    --hero-circle-size: min(132vw, 540px);
    left: 56%;
    top: 248px;
  }

  .hero-note {
    background: rgba(255, 255, 255, 0.94);
    bottom: 34px;
    font-size: clamp(18px, 4.85vw, 20px);
    line-height: 1.68;
    left: var(--hero-mobile-note-left);
    max-width: min(280px, calc(100vw - var(--hero-mobile-note-left) - 24px));
    right: auto;
  }

  .hero-marquee {
    bottom: 184px;
    font-size: clamp(92px, 27vw, 116px);
  }
}

/* Final hero left-edge alignment. The vertical headline, hero copy, and the
   following section title now share the same content column. */
.hero {
  --hero-content-left: max(var(--cs-page-pad), calc((100vw - var(--cs-max)) / 2));
  --hero-local-content-left: max(0px, calc(var(--hero-content-left) - var(--cs-page-pad)));
}

@media (min-width: 961px) {
  .hero {
    --hero-section-left: var(--hero-content-left);
    --hero-copy-align-left: var(--hero-content-left);
  }

  .hero h1,
  .hero-note {
    left: var(--hero-local-content-left);
  }
}

@media (max-width: 960px) {
  .hero {
    --hero-mobile-copy-left: var(--hero-content-left);
    --hero-mobile-note-left: var(--hero-content-left);
  }

  .hero h1,
  .hero-note {
    left: var(--hero-local-content-left);
  }

  .hero-note {
    max-width: min(360px, calc(100vw - var(--hero-content-left) - var(--cs-page-pad)));
  }
}

/* Final issue-section cleanup. Keep the problem visuals clear, centered, and
   spacious instead of relying on vague wide abstract banners. */
.problem-section {
  background: #f8faf9;
}

.problem-section .section-head {
  margin-bottom: clamp(34px, 4.2vw, 54px);
  padding-bottom: 0;
}

.problem-grid {
  align-items: start;
  gap: clamp(44px, 5.6vw, 76px);
  max-width: 1160px;
}

.problem-section .problem-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 24px);
}

.problem-section .problem-visual {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: none;
  width: clamp(260px, 23vw, 330px);
}

.problem-body {
  padding: 0;
}

.problem-card p {
  margin-left: auto;
  margin-right: auto;
  max-width: 13em;
}

.problem-card small {
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.86;
  margin-top: 16px;
  max-width: 20em;
  text-align: center;
}

@media (max-width: 640px) {
  .problem-section .section-title {
    font-size: clamp(29px, 7.7vw, 32px);
    letter-spacing: 0;
    line-height: 1.48;
    max-width: 10.5em;
  }

  .problem-grid {
    gap: 40px;
    max-width: 334px;
  }

  .problem-section .section-head {
    margin-bottom: 28px;
  }

  .problem-section .problem-visual {
    width: min(232px, 62vw);
  }

  .problem-section .problem-card {
    gap: 18px;
  }

  .problem-card p {
    font-size: clamp(18px, 4.9vw, 20px);
    line-height: 1.58;
    max-width: 13.2em;
  }

  .problem-card small {
    font-size: 14px;
    line-height: 1.78;
    margin-top: 10px;
    max-width: 21em;
  }
}

/* Final contact spacing adjustment. Keep the CTA compact so the vertical label
   does not float in a large empty field. */
.section.contact-band {
  padding-bottom: clamp(88px, 8vw, 128px);
  padding-top: clamp(64px, 7vw, 96px);
}

.section.contact-band .contact-panel {
  align-items: start;
}

@media (min-width: 641px) and (max-width: 980px) {
  .section.contact-band .contact-panel {
    gap: clamp(34px, 6vw, 62px);
    grid-template-columns: minmax(82px, 0.18fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .section.contact-band {
    padding-bottom: 64px;
    padding-top: 42px;
  }

  .section.contact-band .contact-panel {
    padding-top: 20px;
  }
}

/* Hero vertical headline size pass. */
@media (min-width: 961px) {
  .hero h1 {
    top: clamp(76px, 5.2vw, 104px);
  }

  .hero h1 > span {
    font-size: clamp(42px, 2.9vw, 52px);
    padding: 16px 12px;
  }
}

@media (max-width: 960px) and (min-width: 641px) {
  .hero h1 {
    top: clamp(66px, 8vw, 96px);
  }

  .hero h1 > span {
    font-size: clamp(38px, 5.8vw, 46px);
    padding: 14px 10px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    top: 116px;
  }

  .hero h1 > span {
    font-size: clamp(38px, 10.2vw, 43px);
    line-height: 1.09;
    padding: 12px 9px;
  }
}

/* Operation tab balance: remove the leading rule and center labels. */
.screen-tabs button {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
}

.screen-tabs button::before,
.screen-tabs button.is-active::before {
  content: none;
  display: none;
  margin: 0;
}

@media (max-width: 640px) {
  .screen-tabs button {
    padding: 0 12px;
  }
}

/* Owned media lead alignment pass. */
.owned-media-panel {
  align-items: start;
}

.owned-media-lead {
  align-self: start;
  padding-top: clamp(2px, 0.5vw, 8px);
}

@media (min-width: 961px) {
  .owned-media-lead .media-index-link {
    align-self: flex-start;
  }
}

@media (max-width: 960px) {
  .owned-media-lead {
    padding-top: 0;
  }

  .owned-media-lead .media-index-link {
    margin-top: clamp(24px, 3vw, 36px);
  }
}

/* Mobile hero/service gap pass. The hero keeps its composition, but the next
   section starts sooner so SERVICE no longer feels stranded below the fold. */
@media (max-width: 640px) {
  .hero {
    min-height: 880px;
  }

  .hero-inner,
  .hero-copy {
    min-height: 810px;
  }

  .hero-copy {
    height: 810px;
  }

  .hero-note {
    bottom: 22px;
    font-size: clamp(14px, 3.7vw, 17px);
    max-width: calc(100vw - var(--hero-content-left) - 18px);
  }

  .hero-marquee {
    bottom: 158px;
  }

  .about-section {
    padding-top: 52px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 856px;
  }

  .hero-inner,
  .hero-copy {
    min-height: 792px;
  }

  .hero-copy {
    height: 792px;
  }

  .about-section {
    padding-top: 44px;
  }
}

/* Mobile first-view balance: match the tighter STUDIO-like composition where
   the vertical headline and image enter earlier, and the bottom statement is
   large enough to read as a closing catch copy. */
@media (max-width: 640px) {
  .hero {
    min-height: 822px;
    padding-top: 28px;
  }

  .hero-inner,
  .hero-copy {
    height: 760px;
    min-height: 760px;
  }

  .hero h1 {
    gap: 12px;
    top: 16px;
  }

  .hero h1 > span {
    font-size: clamp(40px, 10.5vw, 46px);
    line-height: 1.08;
    padding: 12px 10px;
  }

  .hero-media {
    --hero-circle-size: min(92vw, 500px);
    height: var(--hero-circle-size);
    left: 56%;
    margin-left: calc(var(--hero-circle-size) / -2);
    top: 100px;
    width: var(--hero-circle-size);
  }

  .hero-note {
    background: transparent;
    bottom: 34px;
    box-shadow: none;
    color: #4a4a46;
    font-size: clamp(17px, 3.65vw, 20px);
    font-weight: 760;
    left: 18px;
    line-height: 1.55;
    max-width: none;
    padding: 0;
    right: 18px;
  }

  .hero-marquee {
    bottom: 126px;
  }

  .about-section {
    padding-top: 46px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 800px;
  }

  .hero-inner,
  .hero-copy {
    height: 742px;
    min-height: 742px;
  }

  .hero h1 > span {
    font-size: clamp(36px, 10.2vw, 40px);
  }

  .hero-note {
    bottom: 30px;
    font-size: clamp(15.5px, 3.95vw, 17px);
  }
}

/* Mobile hero image alignment repair. Earlier passes left both a negative
   margin and translateX in place, which pushed the photo blob off canvas. */
@media (max-width: 640px) {
  .hero-media {
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%) !important;
  }

  .hero h1 {
    top: 64px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    top: 68px;
  }
}

/* v1.4.97 final continuation pass. Consolidate the latest direction so the
   mobile first view, issue cards, and comparison visuals stop fighting older
   override blocks above. */
.problem-section .section-title .copy-line {
  display: inline-block;
}

.problem-section .section-title .copy-line + .copy-line {
  margin-left: 0.16em;
}

#issues .section-head,
#service .section-head,
.change-section .section-head {
  border-bottom: 0 !important;
}

#issues .section-head::after,
#service .section-head::after,
.change-section .section-head::after {
  content: none !important;
  display: none !important;
}

.problem-grid {
  display: grid !important;
  gap: clamp(38px, 4.2vw, 64px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1240px !important;
}

.problem-section .section-head {
  margin-bottom: clamp(46px, 5vw, 70px) !important;
}

.problem-section .problem-card {
  min-width: 0;
}

.problem-section .problem-visual {
  width: clamp(310px, 25vw, 390px) !important;
}

.problem-card p {
  max-width: 14em;
}

.problem-card small {
  max-width: 23em;
}

.comparison-card {
  padding: clamp(28px, 3.4vw, 48px) !important;
}

.comparison-visual {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block;
  margin: 0 auto clamp(22px, 2.4vw, 34px) !important;
  max-width: min(96%, 560px) !important;
  object-fit: contain !important;
  padding: 0 !important;
  width: min(96%, 560px) !important;
}

.comparison-label {
  border-bottom: 0 !important;
  margin-bottom: 12px !important;
  padding-bottom: 10px !important;
}

.comparison-card ul {
  border-top: 1px solid rgba(53, 53, 51, 0.12) !important;
}

.comparison-card li:first-child {
  border-top: 0 !important;
}

@media (min-width: 641px) and (max-width: 1080px) {
  .problem-grid {
    gap: clamp(28px, 3.2vw, 44px) !important;
  }

  .problem-section .problem-visual {
    width: min(27vw, 300px) !important;
  }
}

@media (max-width: 760px) {
  .problem-grid {
    grid-template-columns: 1fr !important;
    max-width: 390px !important;
  }

  .problem-section .section-title .copy-line {
    display: block;
  }

  .problem-section .section-title .copy-line + .copy-line {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 800px !important;
    padding-top: 18px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 744px !important;
    min-height: 744px !important;
  }

  .hero h1 {
    gap: 12px !important;
    left: var(--cs-page-pad) !important;
    top: 46px !important;
  }

  .hero h1 > span {
    font-size: clamp(42px, 11.2vw, 48px) !important;
    line-height: 1.06 !important;
    padding: 12px 9px !important;
  }

  .hero-media {
    --hero-circle-size: min(90vw, 500px);
    height: var(--hero-circle-size) !important;
    left: 50% !important;
    margin-left: 0 !important;
    right: auto !important;
    top: 132px !important;
    transform: translateX(-50%) !important;
    width: var(--hero-circle-size) !important;
  }

  .hero-media img {
    object-position: center 48% !important;
  }

  .hero-note {
    background: transparent !important;
    bottom: 52px !important;
    box-shadow: none !important;
    color: #3d3d39 !important;
    font-size: clamp(18px, 4.7vw, 21px) !important;
    font-weight: 760 !important;
    left: var(--cs-page-pad) !important;
    line-height: 1.58 !important;
    max-width: calc(100vw - (var(--cs-page-pad) * 2)) !important;
    padding: 0 !important;
    right: var(--cs-page-pad) !important;
  }

  .hero-note > span {
    white-space: normal !important;
  }

  .hero-marquee {
    bottom: 116px !important;
  }

  .about-section {
    padding-top: 34px !important;
  }

  .problem-section .section-title {
    font-size: clamp(30px, 7.6vw, 34px) !important;
    line-height: 1.42 !important;
    max-width: 10em !important;
  }

  .problem-grid {
    gap: 48px !important;
  }

  .problem-section .problem-visual {
    width: min(76vw, 310px) !important;
  }

  .comparison-visual {
    width: min(94vw, 360px) !important;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 786px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 730px !important;
    min-height: 730px !important;
  }

  .hero h1 {
    top: 42px !important;
  }

  .hero h1 > span {
    font-size: clamp(39px, 10.7vw, 43px) !important;
  }

  .hero-media {
    --hero-circle-size: min(92vw, 470px);
    top: 136px !important;
  }

  .hero-note {
    bottom: 42px !important;
    font-size: clamp(17px, 4.65vw, 19px) !important;
  }

  .hero-marquee {
    bottom: 103px !important;
  }
}

/* v1.4.98 mobile hero balance. Keep the vertical headline clear of the
   sticky header while tightening the handoff into the service section. */
@media (max-width: 640px) {
  .hero {
    min-height: 724px !important;
    padding-top: 0 !important;
  }

  .hero-inner,
  .hero-copy {
    height: 684px !important;
    min-height: 684px !important;
  }

  .hero h1 {
    gap: 9px !important;
    top: 104px !important;
  }

  .hero h1 > span {
    font-size: clamp(36px, 9.6vw, 40px) !important;
    line-height: 1.06 !important;
    padding: 10px 8px !important;
  }

  .hero-media {
    --hero-circle-size: min(88vw, 430px);
    top: 142px !important;
  }

  .hero-note {
    bottom: 34px !important;
    font-size: clamp(18px, 4.9vw, 21px) !important;
    line-height: 1.52 !important;
  }

  .hero-marquee {
    bottom: 82px !important;
  }

  .about-section {
    padding-top: 14px !important;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 712px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 672px !important;
    min-height: 672px !important;
  }

  .hero h1 {
    top: 100px !important;
  }

  .hero h1 > span {
    font-size: clamp(35px, 9.4vw, 38px) !important;
  }

  .hero-media {
    --hero-circle-size: min(88vw, 420px);
    top: 144px !important;
  }

  .hero-note {
    bottom: 28px !important;
  }

  .hero-marquee {
    bottom: 76px !important;
  }
}

/* v1.4.99: tighten the hero-to-service handoff and keep the vertical copy
   clear of the sticky header across mobile and tablet widths. */
.about-section {
  padding-top: clamp(44px, 4.6vw, 70px) !important;
}

@media (min-width: 641px) and (max-width: 980px) {
  .hero {
    min-height: 710px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 660px !important;
    min-height: 660px !important;
  }

  .hero h1 {
    top: 76px !important;
  }

  .hero h1 > span {
    font-size: clamp(30px, 4.9vw, 36px) !important;
    line-height: 1.08 !important;
    padding: 11px 8px !important;
  }

  .hero-media {
    height: min(58vw, 520px) !important;
    top: 132px !important;
  }

  .hero-note {
    bottom: 24px !important;
  }

  .hero-marquee {
    bottom: 64px !important;
  }

  .about-section {
    padding-top: 18px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 690px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 650px !important;
    min-height: 650px !important;
  }

  .hero h1 {
    gap: 8px !important;
    top: 112px !important;
  }

  .hero h1 > span {
    font-size: clamp(32px, 8.7vw, 36px) !important;
    line-height: 1.05 !important;
    padding: 9px 7px !important;
  }

  .hero-media {
    --hero-circle-size: min(88vw, 414px);
    top: 150px !important;
  }

  .hero-note {
    bottom: 20px !important;
    font-size: clamp(19px, 5.1vw, 22px) !important;
    line-height: 1.5 !important;
  }

  .hero-marquee {
    bottom: 60px !important;
  }

  .about-section {
    margin-top: -4px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 678px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 638px !important;
    min-height: 638px !important;
  }

  .hero h1 {
    top: 108px !important;
  }

  .hero h1 > span {
    font-size: clamp(31px, 8.6vw, 35px) !important;
  }

  .hero-media {
    --hero-circle-size: min(88vw, 400px);
    top: 150px !important;
  }

  .hero-note {
    bottom: 18px !important;
  }

  .hero-marquee {
    bottom: 56px !important;
  }
}

/* v1.5.00: keep the ISSUES headline short and on one line. */
#issues .section-title {
  max-width: none !important;
  white-space: nowrap !important;
}

@media (max-width: 640px) {
  #issues .section-title {
    font-size: clamp(30px, 8vw, 40px) !important;
    letter-spacing: 0 !important;
  }
}

/* v1.5.02: make the before/after illustrations use more of the card area. */
.comparison-card {
  padding-top: clamp(18px, 2vw, 28px) !important;
  padding-bottom: clamp(24px, 2.8vw, 38px) !important;
}

.comparison-visual {
  margin: -4px auto clamp(16px, 1.8vw, 24px) !important;
  max-width: min(100%, 640px) !important;
  width: min(100%, 640px) !important;
}

@media (max-width: 760px) {
  .comparison-card {
    padding-top: 18px !important;
    padding-bottom: 28px !important;
  }

  .comparison-visual {
    margin-top: -2px !important;
    margin-bottom: 18px !important;
    width: min(100%, 390px) !important;
  }
}

/* v1.5.02: remove the awkward white-to-soft-paper band and tighten the
   empty space around the transition sections. */
#about.about-section {
  padding-bottom: clamp(32px, 3.8vw, 52px) !important;
}

#issues.problem-section,
.change-section {
  background: #f8faf9 !important;
}

#issues.problem-section {
  padding-top: clamp(54px, 5.4vw, 82px) !important;
}

#issues.problem-section::before,
#issues.problem-section::after,
.change-section::before,
.change-section::after {
  content: none !important;
  display: none !important;
}

.change-section {
  padding-top: clamp(58px, 5.8vw, 88px) !important;
  padding-bottom: clamp(72px, 7vw, 108px) !important;
}

.change-section .section-head {
  margin-bottom: clamp(24px, 3vw, 42px) !important;
}

.change-section .comparison-card,
.change-section .comparison-card-before,
.change-section .comparison-card-after {
  background: rgba(255, 255, 255, 0.92) !important;
}

@media (max-width: 760px) {
  #about.about-section {
    padding-bottom: 24px !important;
  }

  #issues.problem-section {
    padding-top: 48px !important;
  }

  .change-section {
    padding-top: 46px !important;
    padding-bottom: 66px !important;
  }

  .change-section .section-head {
    margin-bottom: 20px !important;
  }
}

/* v1.5.03: final responsive polish before external preview.
   Consolidates hero alignment, issue-card rhythm, and before/after art sizing. */
#issues .section-head,
#service .section-head,
.change-section .section-head {
  border-bottom: 0 !important;
}

#issues .section-head::after,
#service .section-head::after,
.change-section .section-head::after {
  content: none !important;
  display: none !important;
}

#about.about-section {
  padding-bottom: clamp(28px, 3vw, 46px) !important;
}

#issues.problem-section,
.change-section {
  background: #f8faf9 !important;
}

#issues.problem-section {
  padding-top: clamp(50px, 5vw, 76px) !important;
  padding-bottom: clamp(72px, 7vw, 112px) !important;
}

.problem-section .section-head {
  margin-bottom: clamp(34px, 4vw, 52px) !important;
}

#issues .section-title {
  font-size: clamp(34px, 3.9vw, 56px) !important;
  line-height: 1.22 !important;
  max-width: none !important;
  white-space: nowrap !important;
}

.problem-grid {
  display: grid !important;
  gap: clamp(44px, 5vw, 76px) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin-inline: auto !important;
  max-width: 1180px !important;
}

.problem-section .problem-card {
  align-content: start !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  justify-items: center !important;
  padding: 0 !important;
  text-align: center !important;
}

.problem-section .problem-visual {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  margin: 0 auto clamp(18px, 2.1vw, 26px) !important;
  max-width: 360px !important;
  object-fit: contain !important;
  transform: none !important;
  width: min(100%, 28vw, 360px) !important;
}

.problem-body {
  margin-top: -14px !important;
  max-width: 340px !important;
}

.problem-card p {
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.55 !important;
  margin-inline: auto !important;
  max-width: 15em !important;
}

.problem-card small {
  font-size: clamp(13px, 1vw, 15px) !important;
  line-height: 1.95 !important;
  margin-inline: auto !important;
  max-width: 24em !important;
}

.change-section {
  padding-top: clamp(54px, 5.4vw, 82px) !important;
  padding-bottom: clamp(72px, 7vw, 106px) !important;
}

.change-section .section-head {
  margin-bottom: clamp(22px, 2.8vw, 38px) !important;
}

.comparison-card {
  padding: clamp(24px, 2.8vw, 38px) !important;
}

.comparison-visual {
  aspect-ratio: 1.02 / 1 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
  height: auto !important;
  margin: 0 auto clamp(18px, 2vw, 26px) !important;
  max-width: min(100%, 680px) !important;
  object-fit: contain !important;
  padding: 0 !important;
  width: min(100%, 680px) !important;
}

.comparison-card-before .comparison-visual {
  margin-top: 0 !important;
  margin-bottom: clamp(18px, 2vw, 26px) !important;
  object-position: center top !important;
}

.comparison-card ul {
  border-top: 1px solid rgba(53, 53, 51, 0.13) !important;
}

.comparison-card li:first-child {
  border-top: 0 !important;
}

@media (min-width: 761px) and (max-width: 1080px) {
  .problem-grid {
    gap: clamp(34px, 4vw, 52px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .problem-section .problem-visual {
    width: min(100%, 250px) !important;
  }
}

@media (max-width: 760px) {
  #issues .section-title {
    font-size: clamp(28px, 7.1vw, 34px) !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }

  .problem-grid {
    gap: 46px !important;
    grid-template-columns: 1fr !important;
    max-width: 390px !important;
  }

  .problem-section .problem-visual {
    width: min(74vw, 300px) !important;
  }

  .problem-body {
    margin-top: -22px !important;
    max-width: 340px !important;
  }

  .comparison-card {
    padding: 20px 18px 28px !important;
  }

  .comparison-visual {
    max-width: min(100%, 390px) !important;
    width: min(100%, 390px) !important;
  }

  .comparison-card-before .comparison-visual {
    margin-top: -12px !important;
    margin-bottom: 12px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 688px !important;
    padding-top: 0 !important;
  }

  .hero-inner,
  .hero-copy {
    height: 650px !important;
    min-height: 650px !important;
  }

  .hero h1 {
    gap: 8px !important;
    left: var(--cs-page-pad) !important;
    top: 92px !important;
    z-index: 5 !important;
  }

  .hero h1 > span {
    font-size: clamp(29px, 8vw, 34px) !important;
    line-height: 1.07 !important;
    padding: 9px 7px !important;
  }

  .hero-media {
    --hero-circle-size: min(89vw, 430px) !important;
    height: var(--hero-circle-size) !important;
    left: 50% !important;
    margin-left: 0 !important;
    right: auto !important;
    top: 146px !important;
    transform: translateX(-50%) !important;
    width: var(--hero-circle-size) !important;
  }

  .hero-note {
    background: transparent !important;
    bottom: 36px !important;
    box-shadow: none !important;
    color: #3d3d39 !important;
    font-size: clamp(18px, 4.8vw, 21px) !important;
    font-weight: 760 !important;
    left: var(--cs-page-pad) !important;
    line-height: 1.6 !important;
    max-width: calc(100vw - (var(--cs-page-pad) * 2)) !important;
    padding: 0 !important;
    right: var(--cs-page-pad) !important;
  }

  .hero-note > span {
    display: block !important;
    white-space: normal !important;
  }

  .hero-marquee {
    bottom: 80px !important;
    font-size: clamp(82px, 27vw, 124px) !important;
  }

  .about-section {
    margin-top: 0 !important;
    padding-top: 18px !important;
  }

  #issues.problem-section {
    padding-top: 56px !important;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 672px !important;
  }

  .hero-inner,
  .hero-copy {
    height: 636px !important;
    min-height: 636px !important;
  }

  .hero h1 {
    top: 90px !important;
  }

  .hero h1 > span {
    font-size: clamp(27px, 7.8vw, 32px) !important;
  }

  .hero-media {
    --hero-circle-size: min(90vw, 408px) !important;
    top: 146px !important;
  }

  .hero-note {
    bottom: 32px !important;
    font-size: clamp(17px, 4.6vw, 19px) !important;
  }
}

/* v1.5.09 typography pass: closer to the softer Japanese reading rhythm of akiyauction.com. */
:root {
  --cs-type-ja: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cs-type-ink: #343433;
  --cs-type-body: #4a4946;
}

html,
body {
  color: var(--cs-type-body);
  font-family: var(--cs-type-ja);
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
}

body {
  font-weight: 500;
  letter-spacing: 0.018em;
  line-height: 1.9;
}

p,
li,
dd,
dt {
  letter-spacing: 0.02em;
}

.section-title,
.page-hero h1,
#service .section-title,
.company-section .section-title,
.problem-section .section-title,
.owned-media-lead .section-title,
.single-body h2,
.contact-panel h2,
.thanks-card h1 {
  color: var(--cs-type-ink);
  font-family: var(--cs-type-ja) !important;
  font-weight: 680 !important;
  letter-spacing: 0.004em !important;
  line-height: 1.5 !important;
}

#issues .section-title {
  line-height: 1.3 !important;
}

.section-copy,
.about-copy p,
.copy-block p,
.service-copy p,
.feature-card p,
.stat-card p,
.comparison-card li,
.case-card p,
.case-card.case-story p,
.media-card p,
.faq-item p,
.single-body p,
.single-body li,
.process-list p,
.contact-lead p,
.footer p {
  color: var(--cs-type-body);
  font-family: var(--cs-type-ja);
  font-size: clamp(14.5px, 1.04vw, 16.5px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.08;
}

.hero h1,
.hero h1 > span,
.hero h1 .hero-latin,
.hero h1 .hero-combine {
  color: var(--cs-type-ink);
  font-family: var(--cs-type-ja) !important;
  font-weight: 700 !important;
  letter-spacing: 0.012em !important;
}

.hero-note {
  color: var(--cs-type-ink) !important;
  display: flex !important;
  flex-direction: column;
  font-family: var(--cs-type-ja) !important;
  font-weight: 650 !important;
  gap: 0.12em;
  letter-spacing: 0.018em !important;
  line-height: 1.78 !important;
}

.hero-note > .hero-note-line {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0 0.15em;
}

.hero-note-phrase,
.hero-note-line:last-child {
  white-space: nowrap !important;
}

.problem-card p,
.feature-card h3,
.case-card h3,
.case-card.case-story h3,
.media-card h3,
.faq-item h3,
.single-body h3,
.comparison-card h3,
.operation-copy h3 {
  color: var(--cs-type-ink);
  font-family: var(--cs-type-ja);
  font-weight: 680 !important;
  letter-spacing: 0.002em !important;
  line-height: 1.68 !important;
}

.problem-card small {
  color: var(--cs-type-body);
  font-family: var(--cs-type-ja);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.02;
}

.eyebrow,
.section-label,
.site-logo,
.site-nav a,
.modal-nav a,
.case-more,
.media-card-link,
.media-index-link,
.button,
.button-dark,
.floating-cta {
  letter-spacing: 0.08em;
}

.comparison-card li {
  font-size: clamp(16.5px, 1.2vw, 19px) !important;
  font-weight: 620 !important;
  line-height: 1.92 !important;
}

@media (max-width: 760px) {
  .section-title,
  .page-hero h1,
  #service .section-title,
  .company-section .section-title,
  .problem-section .section-title,
  .owned-media-lead .section-title {
    line-height: 1.42 !important;
  }

  .section-copy,
  .about-copy p,
  .copy-block p,
  .service-copy p,
  .feature-card p,
  .stat-card p,
  .comparison-card li,
  .case-card p,
  .case-card.case-story p,
  .media-card p,
  .faq-item p,
  .single-body p,
  .single-body li,
  .process-list p,
  .contact-lead p {
    font-size: 14px;
    line-height: 1.95;
  }

  .hero-note {
    line-height: 1.66 !important;
  }

  .hero-note {
    gap: 0.1em;
  }

  .comparison-card li {
    font-size: 15.5px !important;
    line-height: 1.86 !important;
  }

  .problem-card p,
  .feature-card h3,
  .case-card h3,
  .case-card.case-story h3,
  .media-card h3,
  .faq-item h3 {
    line-height: 1.58 !important;
  }
}

/* Hero headline polish */
.hero h1 > span {
  font-size: clamp(32px, 3.35vw, 41px) !important;
  line-height: 1.06 !important;
  padding: 13px 10px !important;
}

.hero h1 .hero-combine {
  align-items: center;
  block-size: 1.02em;
  display: inline-flex !important;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.74em !important;
  font-weight: 800 !important;
  inline-size: 1.14em;
  justify-content: center;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  text-combine-upright: none !important;
  text-orientation: mixed !important;
  transform: translateY(-0.02em);
  -webkit-text-combine: none !important;
  writing-mode: horizontal-tb !important;
}

@media (max-width: 760px) {
  .hero h1 {
    gap: 9px !important;
  }

  .hero h1 > span {
    font-size: clamp(32px, 8.9vw, 38px) !important;
    line-height: 1.05 !important;
    padding: 10px 8px !important;
  }

  .hero h1 .hero-combine {
    font-size: 0.76em !important;
    inline-size: 1.12em;
  }
}

/* Contact photo CTA */
.section.contact-band.contact-photo-cta {
  align-items: center;
  background: #1f1f1d;
  display: flex;
  isolation: isolate;
  min-height: clamp(430px, 46vw, 620px);
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) 0;
  position: relative;
}

.contact-photo-cta .contact-bg {
  border-radius: 0;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 48%;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.contact-photo-cta::before {
  background:
    linear-gradient(90deg, rgba(31, 31, 29, 0.84) 0%, rgba(31, 31, 29, 0.66) 45%, rgba(31, 31, 29, 0.34) 100%),
    rgba(31, 31, 29, 0.16);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.contact-photo-cta .contact-panel {
  background: transparent !important;
  border: 0 !important;
  display: block !important;
  padding: 0 !important;
  position: relative;
}

.contact-photo-cta .contact-panel::before,
.contact-photo-cta .contact-vertical,
.contact-photo-cta .contact-copy::before {
  content: none !important;
  display: none !important;
}

.contact-photo-cta .contact-copy {
  max-width: 790px;
  padding: 0 !important;
}

.contact-photo-cta .contact-copy h2 {
  color: #fff !important;
  font-size: clamp(30px, 3.3vw, 52px);
  line-height: 1.42 !important;
  margin-bottom: 18px;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

.contact-title-mobile-break {
  display: none;
}

.contact-photo-cta .contact-copy p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(14px, 1.02vw, 16.5px);
  line-height: 2.05;
  margin-bottom: 30px;
  max-width: 720px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.contact-photo-cta .contact-copy .button {
  align-self: center;
  background: #fff !important;
  border-color: #fff !important;
  box-shadow: none;
  color: #333331 !important;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  min-height: 62px;
  min-width: 220px;
  width: fit-content;
}

.contact-photo-cta .contact-copy .button:hover {
  background: #f8faf9 !important;
  border-color: #f8faf9 !important;
  color: #22221f !important;
}

/* Tighten the intro copy pair so the two paragraphs read as one connected thought. */
#about.about-section .about-copy {
  gap: clamp(12px, 1.2vw, 16px) !important;
}

/* Bring the SERVICE intro copy closer to the title. */
@media (min-width: 1181px) {
  #about.about-section .split-section {
    gap: clamp(58px, 6vw, 92px) !important;
  }

  #about.about-section .about-copy {
    padding-top: 12px !important;
  }

  #about.about-section .section-copy {
    line-height: 2.06 !important;
  }
}

@media (max-width: 1180px) {
  #about.about-section .split-section {
    gap: clamp(18px, 3vw, 28px) !important;
  }

  #about.about-section .about-copy {
    margin-top: clamp(-24px, -2vw, -14px) !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 760px) {
  #about.about-section .split-section {
    gap: 10px !important;
  }

  #about.about-section .about-copy {
    margin-top: -22px !important;
  }

  #about.about-section .section-copy {
    line-height: 1.9 !important;
  }
}

@media (max-width: 390px) {
  #about.about-section .about-copy {
    margin-top: -18px !important;
  }
}

/* v1.5.78: modestly tighten the VALUE copy under the heading. */
@media (max-width: 1180px) {
  #service .section-head {
    margin-bottom: clamp(28px, 4vw, 42px) !important;
  }

  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    margin-top: clamp(18px, 3vw, 28px) !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 760px) {
  #service .section-head {
    margin-bottom: 28px !important;
  }

  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    margin-top: 18px !important;
  }

  #service .section-copy {
    font-size: 14px;
    line-height: 1.9;
  }
}

.about-copy-mobile {
  display: none !important;
}

@media (max-width: 760px) {
  #about.about-section .about-copy-desktop {
    display: none !important;
  }

  #about.about-section .about-copy-mobile {
    display: block !important;
  }
}

@media (max-width: 760px) {
  .section.contact-band.contact-photo-cta {
    min-height: 440px;
    padding: 72px var(--cs-page-pad);
  }

  .contact-photo-cta::before {
    background:
      linear-gradient(180deg, rgba(31, 31, 29, 0.78) 0%, rgba(31, 31, 29, 0.72) 100%),
      rgba(31, 31, 29, 0.2);
  }

  .contact-photo-cta .contact-copy h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.46 !important;
  }

  .contact-title-mobile-break {
    display: block;
  }
}

/* v1.5.71: lower the hero support message so it sits closer to the CTA. */
@media (max-width: 960px) and (min-width: 641px) {
  .hero-note {
    bottom: 46px !important;
  }
}

@media (max-width: 640px) {
  .hero-note {
    bottom: 12px !important;
  }
}

@media (max-width: 390px) {
  .hero-note {
    bottom: 10px !important;
  }
}

/* v1.5.74: simplify the operation-screen frame so the UI does not look boxed
   inside multiple nested borders. */
.product-screen-carousel {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%) !important;
  border: 0 !important;
  box-shadow:
    inset 0 0 0 1px rgba(53, 53, 49, 0.07),
    0 22px 54px rgba(53, 53, 49, 0.09) !important;
  padding: clamp(12px, 1.5vw, 18px) !important;
}

.screen-slide {
  gap: 14px !important;
  inset: clamp(12px, 1.5vw, 18px) !important;
}

.screen-crop {
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.screen-slide figcaption {
  padding: 0 2px;
}

@media (max-width: 640px) {
  .product-screen-carousel {
    min-height: 360px;
    padding: 14px !important;
  }

  .screen-slide {
    inset: 14px !important;
  }
}

/* v1.5.80: show a subtle swipe affordance when the operation screen appears. */
.product-screen-carousel::before,
.product-screen-carousel::after {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(53, 53, 49, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(53, 53, 49, 0.16);
  color: rgba(53, 53, 49, 0.8);
  display: flex !important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  height: 38px;
  justify-content: center;
  line-height: 1;
  opacity: 0.86;
  pointer-events: none;
  position: absolute;
  top: 45%;
  transform: translate3d(0, -50%, 0);
  width: 38px;
  z-index: 9;
}

.product-screen-carousel::before {
  content: "‹" !important;
  left: 10px;
}

.product-screen-carousel::after {
  content: "›";
  right: 10px;
}

.service-product-panel.is-inview .product-screen-carousel::before {
  animation: csSwipeCueLeft 2200ms ease-out 360ms 2 both;
}

.service-product-panel.is-inview .product-screen-carousel::after {
  animation: csSwipeCueRight 2200ms ease-out 360ms 2 both;
}

@keyframes csSwipeCueLeft {
  0% {
    opacity: 0;
    transform: translate3d(10px, -50%, 0);
  }

  22%,
  84% {
    opacity: 0.9;
    transform: translate3d(0, -50%, 0);
  }

  48% {
    transform: translate3d(-5px, -50%, 0);
  }

  100% {
    opacity: 0.82;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes csSwipeCueRight {
  0% {
    opacity: 0;
    transform: translate3d(-10px, -50%, 0);
  }

  22%,
  84% {
    opacity: 0.9;
    transform: translate3d(0, -50%, 0);
  }

  48% {
    transform: translate3d(5px, -50%, 0);
  }

  100% {
    opacity: 0.82;
    transform: translate3d(0, -50%, 0);
  }
}

@media (max-width: 640px) {
  .product-screen-carousel::before,
  .product-screen-carousel::after {
    font-size: 22px;
    height: 34px;
    top: 43%;
    width: 34px;
  }

  .product-screen-carousel::before {
    left: 8px;
  }

  .product-screen-carousel::after {
    right: 8px;
  }
}

/* v1.5.81: tap-to-expand preview for operation screens. */
.screen-lightbox {
  align-items: center;
  background: rgba(33, 33, 29, 0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(28px, 6vw, 72px) var(--cs-page-pad);
  pointer-events: none;
  position: fixed;
  transition: opacity 260ms ease;
  z-index: 10020;
}

.screen-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.screen-lightbox-frame {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  box-shadow: 0 28px 90px rgba(20, 20, 18, 0.28);
  display: grid;
  gap: 14px;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  max-height: min(78vh, 680px);
  padding: clamp(14px, 2vw, 22px);
  transform: translate3d(0, 16px, 0) scale(0.96);
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  width: min(920px, 88vw);
}

.screen-lightbox.is-open .screen-lightbox-frame {
  transform: translate3d(0, 0, 0) scale(1);
}

.screen-lightbox-frame .screen-crop {
  aspect-ratio: 1.48 / 1;
  min-height: min(56vh, 440px);
}

.screen-lightbox-frame figcaption {
  color: #333331;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.screen-lightbox-close {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(53, 53, 49, 0.14);
  border-radius: 999px;
  height: 42px;
  position: fixed;
  right: clamp(18px, 4vw, 42px);
  top: clamp(18px, 4vw, 42px);
  width: 42px;
  z-index: 10021;
}

.screen-lightbox-close::before,
.screen-lightbox-close::after {
  background: #353531;
  content: "";
  height: 1px;
  left: 12px;
  position: absolute;
  top: 20px;
  width: 18px;
}

.screen-lightbox-close::before {
  transform: rotate(45deg);
}

.screen-lightbox-close::after {
  transform: rotate(-45deg);
}

.screen-lightbox-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(53, 53, 49, 0.14);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  color: #353531;
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  font-weight: 650;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: 48px;
  z-index: 10021;
}

.screen-lightbox-nav-prev {
  left: clamp(14px, 3.4vw, 54px);
  transform: translateY(-50%) rotate(180deg);
}

.screen-lightbox-nav-next {
  right: clamp(14px, 3.4vw, 54px);
}

.screen-lightbox-nav:hover {
  border-color: rgba(47, 125, 115, 0.34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.screen-lightbox-nav-prev:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.04);
}

.screen-lightbox-nav-next:hover {
  transform: translateY(-50%) scale(1.04);
}

.screen-lightbox-nav:focus-visible {
  outline: 2px solid rgba(47, 125, 115, 0.72);
  outline-offset: 3px;
}

.screen-lightbox.has-single-image .screen-lightbox-nav {
  display: none;
}

body.screen-lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .screen-lightbox {
    align-items: flex-start;
    padding: 72px 18px 32px;
  }

  .screen-lightbox-frame {
    gap: 12px;
    max-height: 74vh;
    padding: 14px;
    width: min(100%, 520px);
  }

  .screen-lightbox-nav {
    font-size: 25px;
    height: 40px;
    width: 40px;
  }

  .screen-lightbox-nav-prev {
    left: 8px;
  }

  .screen-lightbox-nav-next {
    right: 8px;
  }

  .screen-lightbox-frame .screen-crop {
    aspect-ratio: 1.24 / 1;
    min-height: 360px;
  }

  .screen-lightbox-frame figcaption {
    font-size: 12px;
  }

  .screen-lightbox-close {
    height: 38px;
    right: 18px;
    top: 22px;
    width: 38px;
  }

  .screen-lightbox-close::before,
  .screen-lightbox-close::after {
    left: 11px;
    top: 18px;
    width: 16px;
  }
}

/* v1.5.82: keep operation-screen previews clean white and contained on mobile. */
.product-screen-carousel,
.screen-lightbox-frame {
  background: #fff !important;
}

.screen-crop,
.screen-lightbox-frame .screen-crop {
  background-color: #fff !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.screen-slide {
  gap: 10px !important;
}

.screen-lightbox-frame {
  box-sizing: border-box;
  overflow: hidden;
  width: min(900px, calc(100vw - 48px));
}

.screen-lightbox-frame .screen-crop {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 640px) {
  .screen-lightbox {
    padding-left: 16px;
    padding-right: 16px;
  }

  .screen-lightbox-frame {
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .screen-lightbox-frame .screen-crop {
    aspect-ratio: 1.48 / 1;
    min-height: clamp(220px, 56vw, 320px);
  }
}

/* v1.5.83: align mobile title-to-copy rhythm between SERVICE and VALUE. */
@media (max-width: 760px) {
  #about.about-section .about-copy {
    margin-top: -8px !important;
  }

  #service .section-head > .section-copy-group {
    margin-top: 14px !important;
  }
}

@media (max-width: 390px) {
  #about.about-section .about-copy {
    margin-top: -8px !important;
  }

  #service .section-head > .section-copy-group {
    margin-top: 14px !important;
  }
}

/* v1.5.84: make carousel arrows actionable without triggering tap-expand. */
.product-screen-carousel::before,
.product-screen-carousel::after {
  content: none !important;
  display: none !important;
}

.screen-carousel-arrow {
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(53, 53, 49, 0.2);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(53, 53, 49, 0.18);
  color: rgba(53, 53, 49, 0.96);
  cursor: pointer;
  display: flex;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  line-height: 0.82;
  padding: 0;
  position: absolute;
  top: 45%;
  transform: translate3d(0, -50%, 0);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 42px;
  z-index: 10;
}

.screen-carousel-arrow:hover,
.screen-carousel-arrow:focus-visible {
  background: #fff;
  box-shadow: 0 18px 42px rgba(53, 53, 49, 0.24);
  outline: none;
}

.screen-carousel-arrow-prev {
  left: 10px;
}

.screen-carousel-arrow-next {
  right: 10px;
}

.service-product-panel.is-inview .screen-carousel-arrow-prev {
  animation: csSwipeCueLeft 2200ms ease-out 360ms 2 both;
}

.service-product-panel.is-inview .screen-carousel-arrow-next {
  animation: csSwipeCueRight 2200ms ease-out 360ms 2 both;
}

@media (min-width: 641px) {
  .screen-carousel-arrow {
    font-size: 27px;
    height: 40px;
    top: 43%;
    width: 40px;
  }

  .screen-carousel-arrow-prev {
    left: clamp(18px, 2vw, 28px);
  }

  .screen-carousel-arrow-next {
    right: clamp(18px, 2vw, 28px);
  }
}

@media (max-width: 640px) {
  .screen-carousel-arrow {
    font-size: 27px;
    height: 40px;
    top: 43%;
    width: 40px;
  }

  .screen-carousel-arrow-prev {
    left: 8px;
  }

  .screen-carousel-arrow-next {
    right: 8px;
  }
}

/* v1.5.186: keep the operation preview and arrows contained in the outer frame. */
.service-product-panel[data-screen-carousel] {
  overflow: hidden !important;
}

.product-screen-carousel {
  box-sizing: border-box !important;
  max-width: 100% !important;
  overflow: hidden !important;
  width: 100% !important;
}

.screen-carousel-arrow-prev {
  left: clamp(12px, 1.5vw, 18px) !important;
}

.screen-carousel-arrow-next {
  right: clamp(12px, 1.5vw, 18px) !important;
}

@media (max-width: 640px) {
  .screen-carousel-arrow-prev {
    left: 10px !important;
  }

  .screen-carousel-arrow-next {
    right: 10px !important;
  }
}

/* v1.5.86: remove the FAQ archive subheading and keep the list readable. */
.faq-archive-inner {
  max-width: min(920px, var(--cs-max));
}

.faq-archive-section {
  padding-top: clamp(72px, 8vw, 108px);
}

@media (max-width: 760px) {
  .faq-archive-section {
    padding-top: 52px;
  }
}

/* v1.5.87: make before/after labels easier to identify. */
.comparison-label > span {
  align-items: center;
  background: #3f403b;
  border: 1px solid rgba(53, 53, 49, 0.18);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 28px;
  padding: 0 14px;
}

.comparison-card-after .comparison-label > span {
  background: #2f766b;
  border-color: rgba(47, 118, 107, 0.22);
}

@media (max-width: 760px) {
  .comparison-label > span {
    font-size: 12px;
    min-height: 30px;
    padding: 0 15px;
  }

  .comparison-label b {
    margin-top: 16px !important;
  }
}

/* v1.5.88: remove the decorative mark on the left side of the navigation logo. */
.site-header .brand-mark,
.menu-modal-head .brand-mark,
.site-footer .brand-mark {
  display: none;
}

/* Refine the first-view support copy and align it to section content. */
.hero-note {
  background: transparent !important;
  color: #2f302e !important;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif !important;
  font-feature-settings: "palt" 1;
  font-size: clamp(20px, 1.46vw, 23px) !important;
  font-weight: 500 !important;
  gap: 0.22em !important;
  letter-spacing: 0.004em !important;
  line-height: 1.78 !important;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.hero-note > .hero-note-line {
  display: block !important;
  white-space: nowrap !important;
}

@media (max-width: 640px) {
  .hero-note {
    font-size: clamp(19.5px, 5.05vw, 21px) !important;
    font-weight: 500 !important;
    gap: 0.28em !important;
    left: 0 !important;
    line-height: 1.82 !important;
    max-width: 100% !important;
    right: 0 !important;
    text-align: left !important;
  }
}

@media (max-width: 390px) {
  .hero-note {
    font-size: clamp(19px, 4.92vw, 20px) !important;
    max-width: 100% !important;
  }
}

/* v1.5.95: match the mobile heading-to-copy spacing in SERVICE and VALUE. */
@media (max-width: 760px) {
  #about.about-section .split-section {
    gap: 0 !important;
  }

  #about.about-section .about-copy,
  #service .section-head > .section-copy-group {
    margin-top: 18px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 390px) {
  #about.about-section .about-copy,
  #service .section-head > .section-copy-group {
    margin-top: 18px !important;
  }
}

/* Give the mobile vertical hero copy a little more room below the header. */
@media (max-width: 640px) {
  .hero h1 {
    top: 104px !important;
  }
}

/* Rebalance the horizontal AI glyph inside the vertical hero copy. */
.hero h1 .hero-combine {
  block-size: 1em !important;
  font-size: 0.72em !important;
  inline-size: 1.12em !important;
  letter-spacing: 0.02em !important;
  transform: translateY(-0.012em) !important;
}

@media (max-width: 640px) {
  .hero h1 .hero-combine {
    block-size: 0.99em !important;
    font-size: 0.72em !important;
    inline-size: 1.1em !important;
  }
}

/* Prevent the MEDIA heading from overlapping the article cards at
   intermediate viewport widths. */
.owned-media-lead {
  min-width: 0;
}

.owned-media-lead .media-title {
  font-size: clamp(34px, 3.25vw, 44px) !important;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (min-width: 1181px) {
  .owned-media-panel {
    gap: clamp(34px, 5vw, 72px) !important;
    grid-template-columns: minmax(420px, 0.42fr) minmax(0, 0.58fr) !important;
  }
}

@media (max-width: 1180px) {
  .owned-media-panel {
    grid-template-columns: 1fr !important;
  }

  .owned-media-lead {
    max-width: 720px;
  }
}

/* Center the before/after connector so the visual padding on both ends matches. */
@media (min-width: 961px) {
  .comparison-grid::after {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 112 22' fill='none'%3E%3Cpath d='M6 11H106' stroke='%23719F96' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M98 4L106 11L98 18' stroke='%23719F96' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 112px 22px no-repeat !important;
    height: 22px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 112px !important;
  }
}

/* Give the before/after card copy a touch more left-side breathing room. */
.comparison-label,
.comparison-card ul {
  padding-left: clamp(14px, 1.35vw, 24px);
  padding-right: clamp(8px, 0.9vw, 16px);
}

/* v1.5.186: make the first-view hero visibly breathe in after the intro mark. */
@keyframes csHeroPhotoReveal {
  from {
    opacity: 0;
    transform: translate3d(18px, 20px, 0) scale(0.965);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes csHeroPhotoZoomReveal {
  from {
    filter: saturate(0.9) brightness(1.05);
    transform: scale(1.095);
  }

  to {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
}

@keyframes csHeroVerticalReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes csHeroNoteReveal {
  from {
    opacity: 0;
    transform: translate3d(-10px, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes csHeroBackgroundWordReveal {
  from {
    opacity: 0;
    transform: translate3d(-18px, 10px, 0) scale(1.015);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

body.home .hero-media,
body.front-page .hero-media {
  animation: csHeroPhotoReveal 1180ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--cs-intro-delay) + 260ms) both !important;
  will-change: opacity, transform;
}

body.home .hero-media img,
body.front-page .hero-media img {
  animation: csHeroPhotoZoomReveal 1680ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--cs-intro-delay) + 260ms) both !important;
  will-change: filter, transform;
}

body.home .hero h1 > span,
body.front-page .hero h1 > span {
  animation: csHeroVerticalReveal 780ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 660ms) both !important;
  will-change: opacity, transform;
}

body.home .hero h1 > span:nth-child(2),
body.front-page .hero h1 > span:nth-child(2) {
  animation-delay: calc(var(--cs-intro-delay) + 790ms) !important;
}

body.home .hero-note,
body.front-page .hero-note {
  animation: csHeroNoteReveal 820ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 1060ms) both !important;
  will-change: opacity, transform;
}

body.home .hero-marquee,
body.front-page .hero-marquee {
  animation: csHeroBackgroundWordReveal 1180ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 900ms) both !important;
  will-change: opacity, transform;
}

@media (max-width: 640px) {
  body.home .hero-media,
  body.front-page .hero-media {
    animation-duration: 1060ms !important;
    animation-delay: calc(var(--cs-intro-delay) + 240ms) !important;
  }

  body.home .hero h1 > span,
  body.front-page .hero h1 > span {
    animation-duration: 720ms !important;
    animation-delay: calc(var(--cs-intro-delay) + 560ms) !important;
  }

  body.home .hero h1 > span:nth-child(2),
  body.front-page .hero h1 > span:nth-child(2) {
    animation-delay: calc(var(--cs-intro-delay) + 680ms) !important;
  }

  body.home .hero-note,
  body.front-page .hero-note {
    animation-delay: calc(var(--cs-intro-delay) + 980ms) !important;
  }

  body.home .hero-marquee,
  body.front-page .hero-marquee {
    animation-delay: calc(var(--cs-intro-delay) + 780ms) !important;
  }
}

/* v1.5.186: make the horizontal AI in the vertical hero copy read with more presence. */
.hero h1 .hero-combine {
  block-size: 1.08em !important;
  font-family: "Helvetica Neue", Arial, Montserrat, "Noto Sans JP", sans-serif !important;
  font-size: 0.9em !important;
  font-weight: 800 !important;
  inline-size: 1.42em !important;
  letter-spacing: 0.08em !important;
  line-height: 0.92 !important;
  transform: translateY(-0.02em) !important;
}

@media (max-width: 640px) {
  .hero h1 .hero-combine {
    block-size: 1.04em !important;
    font-size: 0.82em !important;
    inline-size: 1.32em !important;
    letter-spacing: 0.06em !important;
  }
}

/* v1.5.186: use more clean white surfaces so the page has clearer contrast. */
body,
.section,
.section-soft,
#about.about-section,
#issues.problem-section,
#service,
.change-section,
.works-section,
.owned-media-section,
.media-archive-section,
.faq-section {
  background: #fff !important;
}

#issues.problem-section,
.change-section,
.owned-media-section,
.media-archive-section {
  border-top: 1px solid rgba(53, 53, 49, 0.08);
}

.change-section,
.owned-media-section,
.media-archive-section {
  border-bottom: 1px solid rgba(53, 53, 49, 0.08);
}

.problem-card,
.comparison-card,
.comparison-card-before,
.comparison-card-after,
.service-product-panel,
.service-product-panel[data-screen-carousel],
.product-screen-carousel,
.owned-media-panel,
.media-card,
.faq-item {
  background-color: #fff !important;
}

.owned-media-panel,
.service-product-panel,
.service-product-panel[data-screen-carousel],
.comparison-card,
.comparison-card-before,
.comparison-card-after {
  border-color: rgba(53, 53, 49, 0.12) !important;
  box-shadow: 0 18px 58px rgba(53, 53, 49, 0.055) !important;
}

.product-screen-carousel,
.screen-lightbox-frame {
  background: #fff !important;
}

/* v1.5.186: alternate white and soft sections, with crisp white issue visuals. */
#issues.problem-section,
.change-section,
.owned-media-section {
  background: #f8faf9 !important;
}

#issues.problem-section {
  border-bottom: 1px solid rgba(53, 53, 49, 0.08);
}

.problem-section .problem-card {
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative;
}

.problem-section .problem-card::before {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 22px 64px rgba(53, 53, 49, 0.055);
  content: "";
  height: clamp(240px, 21vw, 312px);
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: clamp(240px, 21vw, 312px);
  z-index: 0;
}

.problem-section .problem-visual,
.problem-section .problem-body {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .problem-section .problem-card::before {
    height: clamp(238px, 72vw, 316px);
    width: clamp(238px, 72vw, 316px);
  }

  .problem-grid {
    gap: 58px !important;
  }

  .problem-body {
    margin-top: 10px !important;
  }
}

/* v1.5.186: post-FAQ support block on a soft surface. */
.support-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(246, 244, 237, 0) 100%),
    #f4f1e8 !important;
  color: var(--cs-ink);
  padding-block: clamp(84px, 10vw, 136px);
}

.support-panel {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6.5vw, 92px);
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
}

.support-lead {
  min-width: 0;
}

.support-section .eyebrow {
  color: rgba(47, 49, 45, 0.72);
  margin-bottom: clamp(18px, 2vw, 26px);
}

.support-section .section-title {
  color: var(--cs-ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.36;
}

.support-section .section-copy {
  color: rgba(47, 49, 45, 0.74);
  font-size: clamp(14.5px, 1.08vw, 16px);
  font-weight: 560;
  line-height: 2.05;
  margin-top: clamp(22px, 3vw, 34px);
  max-width: 420px;
}

.support-actions {
  display: grid;
  gap: 20px;
  margin-top: clamp(34px, 4.2vw, 52px);
  max-width: 360px;
}

.support-actions span {
  color: rgba(47, 49, 45, 0.62);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-align: center;
}

.support-button {
  align-items: center;
  background: var(--cs-ink);
  border: 1px solid var(--cs-ink);
  border-radius: var(--cs-radius-xs);
  color: var(--cs-paper);
  display: flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.support-button::after {
  content: none;
  display: none;
  margin-left: 0;
}

.support-button:hover {
  background: #242622;
  border-color: #242622;
  transform: translateY(-1px);
}

.support-button-secondary {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(47, 49, 45, 0.24);
  color: var(--cs-ink);
}

.support-button-secondary:hover {
  background: #fff;
  border-color: rgba(47, 49, 45, 0.34);
  color: var(--cs-ink);
}

.support-card-list {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.support-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(47, 49, 45, 0.1);
  border-radius: var(--cs-radius-md);
  box-shadow: 0 18px 44px rgba(47, 49, 45, 0.08);
  color: var(--cs-ink);
  display: grid;
  gap: clamp(18px, 2.6vw, 34px);
  grid-template-columns: 92px minmax(0, 1fr);
  padding: clamp(24px, 3vw, 38px);
}

.support-icon {
  align-items: center;
  color: var(--cs-teal);
  display: inline-flex;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.support-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 100%;
}

.support-card h3 {
  color: var(--cs-ink);
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1.55;
  margin: 0 0 8px;
}

.support-card p {
  color: #555550;
  font-size: clamp(13.5px, 1vw, 15px);
  font-weight: 540;
  line-height: 2;
  margin: 0;
}

@media (max-width: 960px) {
  .support-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .support-actions {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .support-section {
    padding-block: clamp(72px, 18vw, 96px);
    scroll-margin-top: 92px;
  }

  .support-lead {
    order: 1;
  }

  .support-card-list {
    order: 2;
  }

  .support-section .section-copy {
    max-width: 100%;
  }

  .support-card {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .support-icon {
    height: 48px;
    width: 48px;
  }

  .support-card h3 {
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.58;
  }
}

/* v1.5.186: tighten the NEWS area and bring labels back into the house palette. */
.owned-media-section {
  padding-block: clamp(84px, 8.6vw, 124px);
}

.owned-media-panel {
  gap: clamp(22px, 3vw, 36px) !important;
  grid-template-columns: minmax(280px, 0.29fr) minmax(0, 0.71fr) !important;
  padding: clamp(22px, 3.4vw, 40px) !important;
}

.owned-media-lead .section-copy {
  max-width: 430px;
}

.owned-media-section .media-card-grid {
  gap: clamp(12px, 1.4vw, 18px);
}

.owned-media-section .media-card {
  background:
    linear-gradient(115deg, rgba(47, 118, 107, 0.045), rgba(47, 118, 107, 0) 34%),
    #fff !important;
}

.owned-media-section .media-card a {
  column-gap: clamp(16px, 2vw, 24px);
  grid-template-columns: minmax(168px, 0.34fr) minmax(0, 1fr);
  min-height: clamp(142px, 12vw, 172px);
  padding: clamp(14px, 1.55vw, 18px);
  row-gap: 5px;
}

.owned-media-section .media-card-eyecatch {
  border-radius: var(--cs-radius-sm);
}

.owned-media-section .media-card-category {
  background: rgba(47, 118, 107, 0.1);
  border: 1px solid rgba(47, 118, 107, 0.15);
  color: var(--cs-teal);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  padding: 5px 10px;
}

.owned-media-section .media-card h3 {
  font-size: clamp(18px, 1.48vw, 22px);
  line-height: 1.52;
}

.owned-media-section .media-card p {
  font-size: 12.5px;
  line-height: 1.72;
}

.media-index-link:hover,
.media-card a:hover .media-card-link,
.media-card-link:hover {
  color: var(--cs-teal);
}

.media-index-link:hover::before,
.media-card a:hover .media-card-link::before,
.media-card-link:hover::before {
  background: var(--cs-teal);
}

.media-card:hover {
  border-color: rgba(47, 118, 107, 0.24);
}

/* v1.5.186: bring comparison card text slightly inward for a calmer center balance. */
.comparison-label,
.comparison-card ul {
  margin-left: clamp(14px, 2vw, 32px) !important;
  margin-right: clamp(8px, 1.4vw, 24px) !important;
}

@media (max-width: 760px) {
  .comparison-label,
  .comparison-card ul {
    margin-left: clamp(6px, 2.4vw, 12px) !important;
    margin-right: clamp(2px, 1.5vw, 8px) !important;
  }
}

/* v1.5.186: align the SERVICE intro copy with the heading top and give the next block a little air. */
@media (min-width: 1181px) {
  #about.about-section {
    padding-bottom: clamp(118px, 10vw, 156px) !important;
  }

  #about.about-section .about-copy {
    padding-top: clamp(44px, 3.55vw, 52px) !important;
  }
}

@media (max-width: 1180px) {
  .owned-media-panel {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .owned-media-section {
    padding-block: clamp(72px, 16vw, 96px);
  }

  .owned-media-panel {
    padding: 26px !important;
  }
}

/* v1.5.186: keep NEWS cards crisp white and use compact rectangular cards on SP. */
.media-card,
.owned-media-section .media-card {
  background: #fff !important;
}

.owned-media-section .media-card a {
  background: #fff;
}

@media (max-width: 760px) {
  .owned-media-section .media-card-grid {
    gap: 16px;
  }

  .owned-media-section .media-card {
    border-radius: 16px;
  }

  .owned-media-section .media-card a {
    column-gap: 16px;
    display: grid !important;
    grid-template-areas:
      "eyecatch category"
      "eyecatch title"
      "eyecatch summary"
      "eyecatch read";
    grid-template-columns: minmax(104px, 32%) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    min-height: 0;
    padding: 18px;
    row-gap: 6px;
  }

  .owned-media-section .media-card-eyecatch {
    align-self: start;
    aspect-ratio: 1.34 / 1;
    border-radius: 10px;
    grid-area: eyecatch;
    margin-top: 2px;
    width: 100%;
  }

  .owned-media-section .media-card-category {
    align-self: start;
    font-size: 10px;
    justify-self: start;
    padding: 4px 9px;
  }

  .owned-media-section .media-card h3 {
    font-size: clamp(16.5px, 4.35vw, 18.5px);
    line-height: 1.48;
  }

  .owned-media-section .media-card p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: 12px;
    line-height: 1.7;
    overflow: hidden;
  }

  .owned-media-section .media-card .media-card-link {
    font-size: 11.5px;
    gap: 10px;
    justify-self: start;
    margin-top: 2px;
  }
}

@media (max-width: 390px) {
  .owned-media-section .media-card a {
    column-gap: 13px;
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 16px;
  }

  .owned-media-section .media-card h3 {
    font-size: 16.5px;
  }

  .owned-media-section .media-card p {
    -webkit-line-clamp: 2;
  }

  .owned-media-section .media-card .media-card-link::before {
    width: 28px;
  }
}

/* v1.5.186: force NEWS cards into a compact white mobile layout and remove old blue label tone. */
.owned-media-section .media-card-category {
  background: rgba(47, 118, 107, 0.1) !important;
  border: 1px solid rgba(47, 118, 107, 0.18) !important;
  color: #2f766b !important;
}

@media (max-width: 760px) {
  .owned-media-panel {
    padding: 18px !important;
  }

  .owned-media-section .media-card {
    background: #fff !important;
    border-color: rgba(53, 53, 51, 0.13);
    border-radius: 16px !important;
    overflow: hidden;
    padding: 0 !important;
  }

  .owned-media-section .media-card a {
    align-items: start;
    background: #fff !important;
    column-gap: 16px;
    display: grid !important;
    grid-template-areas:
      "eyecatch category"
      "eyecatch title"
      "eyecatch summary"
      "eyecatch read";
    grid-template-columns: minmax(112px, 34%) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    min-height: 0 !important;
    padding: 16px !important;
    row-gap: 6px;
  }

  .owned-media-section .media-card-eyecatch {
    align-self: start;
    aspect-ratio: 1.24 / 1;
    background: #f8faf9;
    border-radius: 10px;
    grid-area: eyecatch;
    margin: 0 !important;
    overflow: hidden;
    width: 100%;
  }

  .owned-media-section .media-card-eyecatch img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .owned-media-section .media-card-category {
    align-self: start;
    border-radius: 999px;
    font-size: 10px;
    justify-self: start;
    letter-spacing: 0.03em;
    line-height: 1;
    margin: 0 !important;
    padding: 5px 9px !important;
  }

  .owned-media-section .media-card h3 {
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.52;
    margin: 0 !important;
  }

  .owned-media-section .media-card p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: 12px;
    line-height: 1.72;
    margin: 0 !important;
    overflow: hidden;
  }

  .owned-media-section .media-card .media-card-link {
    align-self: end;
    font-size: 11.5px;
    gap: 10px;
    justify-self: start;
    margin: 2px 0 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 390px) {
  .owned-media-section .media-card a {
    column-gap: 14px;
    grid-template-columns: 94px minmax(0, 1fr);
    padding: 15px !important;
  }

  .owned-media-section .media-card h3 {
    font-size: 16px;
  }

  .owned-media-section .media-card p {
    font-size: 11.5px;
  }
}

/* v1.5.186: restore a visible first-view entrance on SP without fighting
   the mobile transform rules that keep the photo centered. */
@keyframes csHeroMobilePhotoIn {
  from {
    filter: saturate(0.92) brightness(1.05);
    scale: 0.965;
  }

  to {
    filter: saturate(1) brightness(1);
    scale: 1;
  }
}

@keyframes csHeroMobileTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes csHeroMobileNoteIn {
  from {
    filter: blur(1.5px);
    translate: 0 18px;
  }

  to {
    filter: blur(0);
    translate: 0 0;
  }
}

@keyframes csHeroMobileMarqueeIn {
  from {
    translate: -18px 10px;
  }

  to {
    translate: 0 0;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
  body.home .hero-media,
  body.front-page .hero-media {
    animation: csHeroMobilePhotoIn 1080ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--cs-intro-delay) + 220ms) both !important;
    transform-origin: 50% 50%;
    will-change: scale, filter;
  }

  body.home .hero h1 > span,
  body.front-page .hero h1 > span {
    animation: csHeroMobileTextIn 560ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 520ms) both !important;
    will-change: opacity, transform;
  }

  body.home .hero h1 > span:nth-child(2),
  body.front-page .hero h1 > span:nth-child(2) {
    animation-delay: calc(var(--cs-intro-delay) + 650ms) !important;
  }

  body.home .hero-note,
  body.front-page .hero-note {
    animation: csHeroMobileNoteIn 780ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 860ms) both !important;
    will-change: translate, filter;
  }

  body.home .hero-marquee,
  body.front-page .hero-marquee {
    animation: csHeroMobileMarqueeIn 980ms cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--cs-intro-delay) + 720ms) both !important;
    will-change: translate;
  }
}

/* v1.5.186: keep the global fixed CTA out of the mobile menu layer. */
body.is-menu-open .floating-contact {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
}

body.is-menu-open .menu-modal {
  z-index: 10010;
}

/* v1.5.186: keep NEWS labels aligned and in the house palette on both the
   top-page block and the news archive page. */
.media-card,
.media-archive-section .media-card,
.owned-media-section .media-card {
  background: #fff !important;
}

.media-card-category,
.owned-media-section .media-card-category,
.media-archive-section .media-card-category {
  align-self: flex-start !important;
  background: #eef5f1 !important;
  border: 1px solid rgba(47, 118, 107, 0.2) !important;
  border-radius: 999px !important;
  color: #2f766b !important;
  display: inline-flex !important;
  font-size: 10.5px !important;
  font-weight: 740 !important;
  justify-self: start !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  margin: 0 0 clamp(14px, 1.4vw, 18px) !important;
  padding: 6px 11px !important;
  white-space: nowrap !important;
}

.owned-media-section .media-card-category {
  grid-area: category;
  margin: 0 !important;
}

.media-archive-section .media-card a {
  align-items: flex-start;
}

.media-archive-section .media-card h3 {
  margin-top: 0;
}

@media (max-width: 760px) {
  .media-card-category,
  .owned-media-section .media-card-category,
  .media-archive-section .media-card-category {
    font-size: 10px !important;
    margin-bottom: 12px !important;
    padding: 5px 10px !important;
  }

  .owned-media-section .media-card-category {
    margin-bottom: 0 !important;
  }
}

/* v1.5.186: give archive NEWS labels breathing room below the eyecatch. */
.media-archive-section .media-card-category {
  margin: clamp(13px, 1.2vw, 17px) 0 clamp(14px, 1.4vw, 18px) !important;
}

@media (max-width: 760px) {
  .media-archive-section .media-card-category {
    margin: 13px 0 12px !important;
  }
}

/* v1.5.386: keep the large first-view background lettering present but quieter. */
.hero-marquee {
  color: rgba(53, 53, 51, 0.095) !important;
}

@media (max-width: 640px) {
  .hero-marquee {
    color: rgba(53, 53, 51, 0.065) !important;
  }
}

/* v1.5.199: NEWS detail pages for the two fixed announcement entries. */
.news-detail-hero .media-title {
  max-width: 920px;
}

.news-detail-section {
  background: #fff;
}

.news-detail {
  margin: 0 auto;
  width: min(900px, 100%);
}

.news-detail-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.news-detail-meta .media-card-category {
  margin: 0 !important;
}

.news-detail-meta time {
  color: #73716c;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-detail-eyecatch {
  background: #fff;
  border: 1px solid rgba(47, 46, 42, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(47, 46, 42, 0.06);
  margin: 0 0 32px;
  overflow: hidden;
}

.news-detail-eyecatch img {
  aspect-ratio: 16 / 7;
  display: block;
  object-fit: cover;
  width: 100%;
}

.news-detail-body {
  color: #3b3a37;
  display: grid;
  font-size: clamp(1rem, 0.38vw + 0.95rem, 1.12rem);
  font-weight: 600;
  gap: 18px;
  line-height: 2;
}

.news-detail-body p {
  margin: 0;
}

.news-detail-back {
  align-items: center;
  color: #2f2e2a;
  display: inline-flex;
  font-weight: 700;
  gap: 14px;
  margin-top: 34px;
  text-decoration: none;
}

.news-detail-back::before {
  background: rgba(47, 46, 42, 0.35);
  content: "";
  height: 1px;
  width: 48px;
}

@media (max-width: 767px) {
  .news-detail-section {
    padding-bottom: 120px;
  }

  .news-detail-eyecatch img {
    aspect-ratio: 4 / 3;
  }

  .news-detail-body {
    font-size: 1rem;
    line-height: 1.9;
  }
}

/* v1.5.186: align the major section headline scale. */
#about .section-title,
#issues .section-title,
#faq .section-title,
.support-section .section-title {
  font-size: clamp(38px, 3.45vw, 44px) !important;
  letter-spacing: 0 !important;
  line-height: 1.36 !important;
}

#issues .section-title {
  max-width: 100% !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  #about .section-title,
  #issues .section-title,
  #faq .section-title,
  .support-section .section-title {
    font-size: clamp(30px, 7.2vw, 34px) !important;
    line-height: 1.42 !important;
  }
}

/* v1.5.186: use a single anonymized operation screenshot on the service page. */
.service-dashboard-shot.service-dashboard-anonymized {
  aspect-ratio: 40 / 27 !important;
  background: #fff;
}

.service-dashboard-shot.service-dashboard-anonymized img {
  object-fit: contain;
  object-position: center center;
}

/* v1.5.386: final support / flow replacement and service screenshot polish. */
.support-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0) 42%),
    #f8faf9 !important;
  padding-block: clamp(92px, 9vw, 148px) !important;
}

.support-panel {
  align-items: start !important;
  display: grid !important;
  column-gap: clamp(62px, 8vw, 124px) !important;
  grid-template-columns: minmax(280px, 0.38fr) minmax(480px, 0.62fr) !important;
  row-gap: clamp(26px, 3.2vw, 42px) !important;
}

.support-lead {
  margin-top: -6px !important;
  max-width: 430px;
}

.support-section .section-copy {
  color: rgba(53, 53, 49, 0.74) !important;
  font-size: 15px !important;
  font-weight: 620 !important;
  line-height: 2.05 !important;
  margin-top: clamp(22px, 2.8vw, 34px) !important;
}

.support-actions {
  gap: 24px !important;
  grid-column: 2;
  justify-self: center;
  margin-top: 0 !important;
  max-width: 360px !important;
  order: 3;
  width: min(360px, 100%);
}

.support-actions span {
  color: rgba(53, 53, 49, 0.58) !important;
  font-size: 12px !important;
  margin-bottom: 11px !important;
}

.support-button {
  border-radius: 5px !important;
  min-height: 58px !important;
}

.support-card-list {
  display: grid !important;
  gap: 24px !important;
}

.support-card {
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.1) !important;
  border-radius: 7px !important;
  box-shadow: 0 22px 64px rgba(53, 53, 49, 0.065) !important;
  gap: clamp(22px, 3vw, 42px) !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  min-height: clamp(156px, 12vw, 184px);
  padding: clamp(34px, 3.6vw, 54px) clamp(36px, 4vw, 64px) !important;
}

.support-icon {
  color: #2f766b !important;
  height: 72px !important;
  width: 72px !important;
}

.support-card h3 {
  font-size: clamp(22px, 1.85vw, 28px) !important;
  font-weight: 760 !important;
  line-height: 1.48 !important;
  margin-bottom: 10px !important;
}

.support-card p {
  color: rgba(53, 53, 49, 0.72) !important;
  font-size: clamp(14px, 1vw, 15.5px) !important;
  line-height: 1.95 !important;
}

.flow-section .split-section {
  align-items: start;
  gap: clamp(54px, 7vw, 112px) !important;
  grid-template-columns: minmax(300px, 0.37fr) minmax(0, 0.63fr) !important;
}

.flow-section .split-section > div:first-child .section-title {
  max-width: 560px;
}

.flow-section .process-list li {
  padding: clamp(30px, 4vw, 46px) 0 clamp(34px, 4.4vw, 52px) !important;
}

.flow-section .process-list span {
  color: rgba(53, 53, 49, 0.64) !important;
  display: block;
  font-size: 12px !important;
  margin-bottom: 16px !important;
}

.flow-section .process-list strong {
  font-size: clamp(24px, 2.25vw, 32px) !important;
  line-height: 1.45 !important;
  margin: 0 0 14px !important;
}

.flow-section .process-list p {
  color: rgba(53, 53, 49, 0.74) !important;
  font-size: 15px !important;
  font-weight: 560 !important;
  line-height: 2.05 !important;
}

.service-image,
.service-dashboard-shot {
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.1) !important;
  border-radius: 7px !important;
  box-shadow: 0 20px 60px rgba(53, 53, 49, 0.06) !important;
  cursor: zoom-in;
  overflow: hidden !important;
}

.service-image {
  aspect-ratio: 1.9 / 1 !important;
  display: flex !important;
  justify-self: end;
  min-height: 0 !important;
  padding: clamp(16px, 1.8vw, 24px) !important;
}

.service-image img {
  border-radius: 5px !important;
  display: block !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
}

.service-image::before,
.service-image::after {
  content: none !important;
}

.image-lightbox-frame {
  background: #fff !important;
  border-radius: 10px;
  max-height: min(82vh, 760px) !important;
  width: min(1080px, 90vw) !important;
}

.image-lightbox-frame img {
  border-radius: 6px;
  display: block;
  max-height: min(68vh, 620px);
  object-fit: contain;
  width: 100%;
}

.image-lightbox-frame figcaption {
  color: rgba(53, 53, 49, 0.8);
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 960px) {
  .support-panel,
  .flow-section .split-section {
    grid-template-columns: 1fr !important;
  }

  .support-panel {
    gap: 44px !important;
    row-gap: 34px !important;
  }

  .support-lead {
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .support-section {
    padding-block: 72px 86px !important;
  }

  .support-lead {
    max-width: none;
    order: 1;
  }

  .support-card-list {
    order: 2;
  }

  .support-actions {
    grid-column: 1;
    order: 3;
  }

  .support-card {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 30px 28px !important;
  }

  .support-icon {
    height: 50px !important;
    width: 50px !important;
  }

  .flow-section .split-section {
    gap: 34px !important;
  }

  .flow-section .process-list strong {
    font-size: clamp(22px, 6.6vw, 28px) !important;
  }

  .flow-section .process-list p {
    font-size: 14px !important;
    line-height: 1.95 !important;
  }

  .service-image {
    aspect-ratio: 1.55 / 1 !important;
    padding: 12px !important;
  }

  .image-lightbox-frame {
    width: min(100%, 540px) !important;
  }

  .image-lightbox-frame img {
    max-height: 60vh;
  }
}

/* v1.5.386: align the service-page operation image with the headline top. */
.service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized {
  align-self: start;
  margin-top: clamp(40px, 3.2vw, 52px);
}

@media (max-width: 900px) {
  .service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized {
    margin-top: 0;
  }
}

/* v1.5.386: keep the supplied circular caret visible in both static and JS states. */
.screen-carousel-arrow,
.screen-lightbox-nav {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #30332f !important;
  opacity: 0.9 !important;
  font-size: 0 !important;
  pointer-events: auto !important;
}

.screen-carousel-arrow {
  height: 46px !important;
  width: 46px !important;
  z-index: 20 !important;
}

.screen-carousel-arrow::before,
.screen-lightbox-nav::before {
  background: transparent url("assets/icons/caret-circle-left-light.svg") center / contain no-repeat;
  content: "";
  display: block;
  filter: drop-shadow(0 10px 18px rgba(53, 53, 49, 0.12));
  height: 38px;
  width: 38px;
}

.screen-carousel-arrow-next::before,
.screen-lightbox-nav-next::before {
  transform: rotate(180deg);
}

.screen-lightbox-nav {
  height: 54px !important;
  width: 54px !important;
}

.screen-lightbox-nav::before {
  height: 44px;
  width: 44px;
}

.screen-lightbox-nav-prev {
  transform: translateY(-50%) !important;
}

.screen-lightbox-nav-next {
  transform: translateY(-50%) !important;
}

.screen-lightbox-nav-prev:hover,
.screen-lightbox-nav-next:hover {
  transform: translateY(-50%) scale(1.04) !important;
}

.screen-carousel-arrow:hover,
.screen-carousel-arrow:focus-visible,
.screen-lightbox-nav:hover,
.screen-lightbox-nav:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  color: #20221f !important;
}

@media (max-width: 640px) {
  .screen-carousel-arrow {
    height: 44px !important;
    width: 44px !important;
  }

  .screen-carousel-arrow::before {
    height: 36px;
    width: 36px;
  }

  .screen-lightbox-nav {
    height: 48px !important;
    width: 48px !important;
  }

  .screen-lightbox-nav::before {
    height: 40px;
    width: 40px;
  }
}

/* v1.5.386: remove the warm beige cast from white surfaces. */
:root {
  --cs-paper: #ffffff;
  --cs-paper-soft: #f8faf9;
  --cs-paper-warm: #f6f8f7;
  --cs-faint: #edf0ee;
  --cs-line: #dfe4e1;
}

html,
body,
.site-shell,
#content,
.section,
.page-hero,
.page-image-band,
.works-section,
.faq-section,
.faq-archive-section,
.media-archive-section,
#about.about-section,
#service {
  background: #fff !important;
}

#issues.problem-section,
.change-section,
.owned-media-section,
.support-section,
.flow-section {
  background: #f8faf9 !important;
}

.support-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 44%),
    #f8faf9 !important;
}

.feature-card,
.problem-card,
.comparison-card,
.comparison-card-before,
.comparison-card-after,
.service-product-panel,
.service-product-panel[data-screen-carousel],
.service-item,
.service-image,
.service-detail-card,
.product-screen-carousel,
.owned-media-panel,
.media-card,
.media-card a,
.owned-media-section .media-card,
.owned-media-section .media-card a,
.support-card,
.faq-item,
.single-body,
.news-detail-body {
  background: #fff !important;
  background-color: #fff !important;
}

.feature-visual,
.media-card-eyecatch,
.screen-lightbox-frame,
.service-dashboard-shot.service-dashboard-anonymized {
  background: #fff !important;
  background-color: #fff !important;
}

.product-screen-carousel {
  box-shadow:
    inset 0 0 0 1px rgba(53, 53, 49, 0.08),
    0 22px 54px rgba(53, 53, 49, 0.08) !important;
}

.problem-section .problem-card {
  background: transparent !important;
  background-color: transparent !important;
}

.problem-section .problem-card::before {
  background: #fff !important;
}

.section-soft {
  background: #fff !important;
}

#issues.problem-section.section-soft,
.change-section.section-soft,
.owned-media-section.section-soft {
  background: #f8faf9 !important;
}

/* v1.5.386: match the service FLOW block to the top-page support card design. */
.flow-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 44%),
    #f8faf9 !important;
  padding-block: clamp(92px, 9vw, 148px) !important;
}

.flow-section .split-section {
  align-items: center !important;
  display: grid !important;
  gap: clamp(62px, 8vw, 124px) !important;
  grid-template-columns: minmax(280px, 0.38fr) minmax(480px, 0.62fr) !important;
}

.flow-section .split-section > div:first-child {
  max-width: 450px;
}

.flow-section .eyebrow {
  color: rgba(53, 53, 49, 0.72) !important;
  margin-bottom: clamp(18px, 2vw, 26px) !important;
}

.flow-section .section-title {
  color: var(--cs-ink) !important;
  font-size: clamp(38px, 3.45vw, 44px) !important;
  letter-spacing: 0 !important;
  line-height: 1.36 !important;
  max-width: 100% !important;
}

.flow-section .process-list {
  counter-reset: flowStep;
  display: grid !important;
  gap: 24px !important;
}

.flow-section .process-list li {
  align-items: center;
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.1) !important;
  border-radius: 7px !important;
  box-shadow: 0 22px 64px rgba(53, 53, 49, 0.065) !important;
  counter-increment: flowStep;
  display: grid;
  gap: 8px clamp(22px, 3vw, 42px);
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: clamp(156px, 12vw, 184px);
  padding: clamp(34px, 3.6vw, 54px) clamp(36px, 4vw, 64px) !important;
}

.flow-section .process-list li:last-child {
  border-bottom: 1px solid rgba(53, 53, 49, 0.1) !important;
}

.flow-section .process-list li::before {
  align-items: center;
  align-self: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: #2f766b;
  content: counter(flowStep, decimal-leading-zero);
  display: inline-flex;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 25px;
  font-weight: 760;
  grid-column: 1;
  grid-row: 1 / span 3;
  height: 72px;
  justify-content: center;
  letter-spacing: 0.02em;
  width: 72px;
}

.flow-section .process-list span,
.flow-section .process-list strong,
.flow-section .process-list p {
  grid-column: 2;
}

.flow-section .process-list span {
  color: rgba(53, 53, 49, 0.58) !important;
  font-size: 12px !important;
  font-weight: 760 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  margin: 0 0 8px !important;
}

.flow-section .process-list strong {
  color: var(--cs-ink) !important;
  font-size: clamp(22px, 1.85vw, 28px) !important;
  font-weight: 760 !important;
  line-height: 1.48 !important;
  margin: 0 0 4px !important;
}

.flow-section .process-list p {
  color: rgba(53, 53, 49, 0.72) !important;
  font-size: clamp(14px, 1vw, 15.5px) !important;
  font-weight: 560 !important;
  line-height: 1.95 !important;
}

@media (max-width: 960px) {
  .flow-section .split-section {
    align-items: start !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .flow-section {
    padding-block: 72px 86px !important;
  }

  .flow-section .split-section {
    gap: 34px !important;
  }

  .flow-section .process-list li {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 28px !important;
  }

  .flow-section .process-list li::before {
    font-size: 18px;
    grid-column: 1;
    grid-row: auto;
    height: 50px;
    width: 50px;
  }

  .flow-section .process-list span,
  .flow-section .process-list strong,
  .flow-section .process-list p {
    grid-column: 1;
  }

  .flow-section .section-title {
    font-size: clamp(30px, 7.2vw, 34px) !important;
    line-height: 1.42 !important;
  }

  .flow-section .process-list strong {
    font-size: clamp(21px, 6vw, 25px) !important;
    line-height: 1.58 !important;
  }

  .flow-section .process-list p {
    font-size: 14px !important;
  }
}

/* v1.5.386: align and enrich the FEATURES detail blocks. */
.page-service-list .service-item,
.page-service-list .service-item:nth-child(even) {
  align-items: stretch !important;
}

.page-service-list .service-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  max-width: 650px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}

.page-service-list .service-number {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  color: rgba(53, 53, 49, 0.46) !important;
  display: block;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 650 !important;
  height: auto;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: clamp(22px, 2.4vw, 30px) !important;
  padding: 0 !important;
  width: auto;
}

.page-service-list .service-number::after {
  content: none !important;
}

.page-service-list .service-copy h3,
.page-service-list .service-lead,
.page-service-list .service-detail-card {
  max-width: 100% !important;
  width: 100%;
}

.page-service-list .service-copy h3 {
  font-size: clamp(27px, 2.35vw, 32px) !important;
  line-height: 1.48 !important;
  margin: 0 !important;
}

.page-service-list .service-lead {
  color: rgba(53, 53, 49, 0.76) !important;
  font-size: clamp(14.5px, 1.04vw, 16px) !important;
  font-weight: 560 !important;
  line-height: 2.04 !important;
  margin-top: clamp(20px, 2vw, 26px) !important;
}

.page-service-list .service-detail-card {
  background: #fff !important;
  background-color: #fff !important;
  border: 1px solid rgba(47, 118, 107, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  display: grid !important;
  gap: 16px !important;
  margin-top: clamp(24px, 2.6vw, 34px) !important;
  overflow: hidden;
  padding: clamp(20px, 2.3vw, 28px) !important;
  position: relative;
}

.page-service-list .service-detail-card::before {
  background: transparent;
  border-color: rgba(47, 118, 107, 0.58);
  border-radius: 14px 0 0 14px;
  border-style: solid;
  border-width: 1px 0 1px 3px;
  bottom: -1px;
  box-sizing: border-box;
  content: "";
  left: -1px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: -1px;
  width: 18px;
}

.page-service-list .service-detail-card p {
  color: rgba(53, 53, 49, 0.78) !important;
  font-size: clamp(13.5px, 0.94vw, 14.5px) !important;
  font-weight: 540 !important;
  line-height: 1.9 !important;
  margin: 0 !important;
  max-width: none !important;
  padding-left: 22px;
  position: relative;
}

.page-service-list .service-detail-card p + p {
  margin-top: 0 !important;
}

.page-service-list .service-detail-card p::before {
  background: #2f766b;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(47, 118, 107, 0.1);
  content: "";
  height: 7px;
  left: 1px;
  position: absolute;
  top: 0.78em;
  width: 7px;
}

.page-service-list .service-detail-card strong {
  color: #2f766b !important;
  display: block;
  font-size: clamp(13px, 0.9vw, 14px);
  font-weight: 760 !important;
  line-height: 1.58;
  margin-bottom: 3px;
}

@media (max-width: 960px) {
  .page-service-list .service-copy {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .floating-contact {
    border-radius: var(--cs-radius-xs) !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    box-shadow: 0 18px 54px rgba(29, 29, 27, 0.22) !important;
    font-size: 14px !important;
    left: 20px !important;
    min-height: 58px !important;
    padding: 0 28px !important;
    right: 20px !important;
    width: auto !important;
  }

  body.page-template-page-service {
    padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
  }

  body.page-template-page-service .floating-contact {
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    left: 20px !important;
    margin: 0 !important;
    min-height: 52px !important;
    position: fixed !important;
    right: 20px !important;
    width: auto !important;
  }

  .page-service-list .service-number {
    margin-bottom: 18px !important;
  }

  .page-service-list .service-copy h3 {
    font-size: clamp(23px, 6.2vw, 27px) !important;
  }

  .page-service-list .service-lead {
    font-size: 14px !important;
    line-height: 1.92 !important;
    margin-top: 16px !important;
  }

  .page-service-list .service-detail-card {
    border-radius: 12px !important;
    gap: 14px !important;
    margin-top: 22px !important;
    padding: 18px 17px 18px 20px !important;
  }

  .page-service-list .service-detail-card::before {
    border-radius: 12px 0 0 12px;
    bottom: -1px;
    top: -1px;
    width: 16px;
  }

  .page-service-list .service-detail-card p {
    font-size: 13.5px !important;
    line-height: 1.84 !important;
    padding-left: 20px;
  }
}

/* v1.5.386: unify service screenshots with the operation-screen frame. */
.page-service-list .service-image {
  align-items: center !important;
  align-self: center !important;
  aspect-ratio: 40 / 27 !important;
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.1) !important;
  border-radius: 7px !important;
  box-shadow: 0 20px 60px rgba(53, 53, 49, 0.06) !important;
  justify-content: center !important;
  justify-self: stretch !important;
  overflow: hidden !important;
  padding: clamp(16px, 1.8vw, 24px) !important;
}

.page-service-list .service-image img {
  border-radius: 5px !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  width: 100% !important;
}

.page-service-list .service-item:nth-child(2) .service-image {
  aspect-ratio: 40 / 27 !important;
}

@media (max-width: 640px) {
  .service-dashboard-shot.service-dashboard-anonymized {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
  }

  .service-dashboard-shot.service-dashboard-anonymized img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* v1.5.386: keep NEWS article detail titles balanced. */
.news-detail-hero {
  padding-bottom: clamp(60px, 7vw, 86px) !important;
}

.news-detail-hero .page-hero-inner,
.single-media_article .page-hero .page-hero-inner {
  gap: 16px !important;
}

.news-detail-hero .media-title,
.single-media_article .page-hero h1 {
  font-size: clamp(34px, 3.7vw, 52px) !important;
  font-weight: 680 !important;
  letter-spacing: 0.002em !important;
  line-height: 1.34 !important;
  max-width: min(820px, 100%) !important;
}

/* v1.5.386: keep case-study detail titles in the same scale as article details. */
.single-case_study .page-hero h1,
.page-hero[data-marquee="DETAIL"] h1 {
  font-size: clamp(34px, 3.9vw, 54px) !important;
  font-weight: 680 !important;
  letter-spacing: 0.002em !important;
  line-height: 1.34 !important;
  max-width: min(920px, 100%) !important;
}

/* v1.5.386: let the top operation screenshots use the mobile width. */
@media (max-width: 640px) {
  .service-product-panel[data-screen-carousel] {
    margin-left: calc(var(--cs-page-pad) * -0.5) !important;
    margin-right: calc(var(--cs-page-pad) * -0.5) !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .product-screen-carousel {
    aspect-ratio: auto !important;
    min-height: clamp(286px, 76vw, 304px) !important;
    padding: 8px !important;
  }

  .screen-slide {
    gap: 8px !important;
    inset: 8px !important;
  }

  .screen-crop {
    min-height: 0 !important;
  }

  .screen-slide figcaption {
    min-height: 38px !important;
  }
}

/* v1.5.386: clip issue illustrations to a clean circle and remove the extra haze. */
.problem-section .problem-card::before {
  content: none !important;
  display: none !important;
}

.problem-section .problem-visual {
  background: #fff !important;
  border-radius: 50% !important;
  clip-path: circle(49.3% at 50% 50%) !important;
  filter: none !important;
  overflow: hidden !important;
}

/* v1.5.386: tighten the top space above the comparison illustrations. */
.change-section .comparison-visual {
  margin-top: clamp(-34px, -2vw, -18px) !important;
}

/* v1.5.386: on mobile, show each FEATURES screenshot before the detail box. */
@media (max-width: 640px) {
  .page-service-list .service-item,
  .page-service-list .service-item:nth-child(even) {
    display: flex !important;
    flex-direction: column !important;
  }

  .page-service-list .service-copy {
    display: contents !important;
  }

  .page-service-list .service-number {
    order: 1;
    width: 100%;
  }

  .page-service-list .service-copy h3 {
    order: 2;
    width: 100%;
  }

  .page-service-list .service-lead {
    order: 3;
    width: 100%;
  }

  .page-service-list .service-image {
    margin-top: 6px !important;
    order: 4 !important;
    width: 100%;
  }

  .page-service-list .service-detail-card {
    margin-top: 2px !important;
    order: 5;
    width: 100%;
  }
}

/* v1.5.386: standardize every FEATURES screenshot presentation. */
.page-service-list .service-image {
  align-items: center !important;
  aspect-ratio: 1.48 / 1 !important;
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.1) !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 52px rgba(53, 53, 49, 0.055) !important;
  display: flex !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: clamp(16px, 1.35vw, 18px) !important;
}

.page-service-list .service-image img {
  background: #f8faf9 !important;
  border-radius: 4px !important;
  display: block !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
}

@media (max-width: 640px) {
  .page-service-list .service-image {
    aspect-ratio: 1.48 / 1 !important;
    padding: 12px !important;
  }
}

.news-detail-hero .page-hero-inner > p,
.single-media_article .page-hero .page-hero-inner > p {
  font-size: clamp(14.5px, 1vw, 16px) !important;
  max-width: 680px !important;
}

@media (max-width: 640px) {
  .news-detail-hero {
    padding-bottom: 58px !important;
  }

  .news-detail-hero .media-title,
  .single-media_article .page-hero h1,
  .single-case_study .page-hero h1,
  .page-hero[data-marquee="DETAIL"] h1 {
    font-size: clamp(26px, 7vw, 28px) !important;
    line-height: 1.44 !important;
    max-width: 100% !important;
  }
}

/* v1.5.386: keep CTA labels visually centered after removing arrow marks. */
.support-actions {
  margin-left: auto !important;
  margin-right: auto !important;
}

.support-actions > div {
  width: 100%;
}

.support-button,
.floating-contact,
.contact-copy .button,
.works-title-row .button-ghost {
  justify-content: center !important;
  text-align: center !important;
}

.support-button::after,
.floating-contact::after,
.contact-copy .button::after,
.works-title-row .button-ghost::after {
  content: none !important;
  display: none !important;
  margin: 0 !important;
}

/* v1.5.386: align NEWS thumbnails with the article title top on mobile. */
@media (max-width: 760px) {
  .owned-media-section .media-card-eyecatch {
    margin-top: 26px !important;
  }
}

/* v1.5.386: place NEWS card read-more links at the bottom right on mobile. */
@media (max-width: 760px) {
  .owned-media-section .media-card .media-card-link {
    align-self: end !important;
    justify-self: end !important;
    margin: auto 0 0 !important;
    text-align: right !important;
  }
}

/* v1.5.386: compact CASE heading with supporting copy and archive link. */
.works-section .case-section-copy {
  color: rgba(53, 53, 49, 0.72) !important;
  font-size: clamp(13.5px, 1.05vw, 15px) !important;
  font-weight: 560 !important;
  line-height: 2 !important;
  margin: 0 !important;
  max-width: 620px;
}

.works-section .case-index-link {
  margin-top: clamp(18px, 2.4vw, 28px) !important;
}

/* v1.5.386: place section archive links beside the lead copy. */
.section-copy-action {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 32px);
  justify-content: space-between;
  margin-top: clamp(12px, 1.6vw, 16px);
  width: 100%;
}

.section-copy-action .section-copy {
  margin: 0 !important;
  min-width: 0;
}

.section-inline-link {
  flex: 0 0 auto;
  margin: 0 0 0 auto !important;
  white-space: nowrap;
}

.works-section .case-index-link {
  margin-top: 0 !important;
}

@media (max-width: 420px) {
  .section-copy-action {
    gap: 14px;
  }

  .section-inline-link {
    font-size: 11px;
    gap: 10px;
  }

  .section-inline-link::before {
    width: 28px;
  }
}

/* v1.5.386: keep mobile case thumbnails inside the card and hide old numbering. */
@media (max-width: 760px) {
  .works-section .case-card::after {
    content: none !important;
    display: none !important;
  }

  .works-section .case-card.case-story {
    overflow: hidden !important;
  }

  .works-section .case-card.case-story > a {
    overflow: hidden !important;
  }

  .works-section .case-card.case-story .case-image {
    border-radius: var(--cs-radius-sm) !important;
    max-width: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .works-section .case-card.case-story .case-image img {
    max-width: none !important;
    width: 100% !important;
  }
}

/* v1.5.386: remove the leading rule from all section list links. */
.section-inline-link {
  gap: 0 !important;
}

.section-inline-link::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
}

/* v1.5.386: keep desktop archive links below the heading copy with the leading rule. */
@media (min-width: 761px) {
  .section-copy-action {
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    justify-content: flex-start !important;
    margin-top: clamp(18px, 2vw, 28px) !important;
    width: fit-content !important;
  }

  .section-copy-action .section-copy {
    margin: 0 !important;
    max-width: 36em !important;
  }

  .section-inline-link {
    gap: 13px !important;
    margin: clamp(22px, 2.6vw, 34px) 0 0 !important;
  }

  .section-inline-link::before {
    background: rgba(53, 53, 51, 0.36) !important;
    content: "" !important;
    display: inline-block !important;
    height: 1px !important;
    transition: background 240ms ease, width 240ms ease !important;
    width: 36px !important;
  }

  .works-section .case-section-copy {
    max-width: none !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }
}

/* v1.5.386: prevent FEATURES screenshots from being cropped on mobile. */
.page-service-list .service-image img {
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 640px) {
  .page-service-list .service-image {
    padding: 14px !important;
  }
}

/* v1.5.386: let the service hero screenshot fill the frame width on mobile. */
@media (max-width: 640px) {
  .service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized {
    aspect-ratio: 40 / 27 !important;
    height: auto !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized img {
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    width: 100% !important;
  }
}

/* v1.5.386: add illustrated download cards before the support cards. */
.resource-download-section {
  background: #fff;
  padding: clamp(64px, 8vw, 112px) var(--cs-page-pad);
}

.resource-download-section + .support-section {
  padding-top: clamp(56px, 7vw, 96px);
}

.resource-download-head {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  margin-bottom: clamp(24px, 3.2vw, 40px);
  padding-bottom: clamp(20px, 2.6vw, 28px);
}

.resource-download-head .section-title {
  margin-bottom: 0;
}

.resource-download-head .section-copy {
  margin: 0 0 3px;
  max-width: 520px;
}

.resource-download-grid {
  display: grid;
  gap: clamp(18px, 2.8vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-download-card {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.14);
  border-radius: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
}

.resource-download-preview {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.14)),
    url("assets/images/feature-ai-draft.png?v=1.5.420"),
    radial-gradient(circle at 82% 18%, rgba(47, 118, 107, 0.15), transparent 24%),
    linear-gradient(135deg, rgba(235, 247, 245, 0.96), rgba(255, 255, 255, 0.78) 52%, rgba(243, 240, 232, 0.86));
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(53, 53, 49, 0.1);
  display: flex;
  justify-content: center;
  min-height: clamp(214px, 20vw, 292px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.resource-download-preview::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.2) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.resource-download-preview-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.14)),
    url("assets/images/feature-knowledge.png?v=1.5.420"),
    radial-gradient(circle at 18% 16%, rgba(213, 172, 87, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(249, 248, 243, 0.98), rgba(235, 247, 245, 0.7) 58%, rgba(255, 255, 255, 0.92));
  background-position: center;
  background-size: cover;
}

.resource-download-illustration {
  display: none;
}

.resource-download-format {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(47, 118, 107, 0.18);
  border-radius: 999px;
  color: #2f766b;
  display: inline-flex;
  font-family: Montserrat, "Noto Sans JP", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 760;
  height: 32px;
  justify-content: center;
  letter-spacing: 0.08em;
  padding: 0 12px;
  position: absolute;
  right: clamp(18px, 2.4vw, 28px);
  top: clamp(18px, 2.4vw, 28px);
  z-index: 3;
}

.resource-download-body {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.resource-download-label {
  align-self: flex-start;
  background: rgba(235, 247, 245, 0.95);
  border: 1px solid rgba(47, 118, 107, 0.16);
  border-radius: 999px;
  color: #2f766b;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  margin-bottom: 16px;
  padding: 8px 12px;
}

.resource-download-body h3 {
  color: #353531;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.34;
  margin: 0 0 18px;
}

.resource-download-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0 0 clamp(24px, 2.4vw, 32px);
  padding: 0;
}

.resource-download-list li {
  color: rgba(53, 53, 49, 0.76);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 700;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}

.resource-download-list li::before {
  background: #2f766b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(47, 118, 107, 0.1);
  content: "";
  height: 7px;
  left: 4px;
  position: absolute;
  top: 0.85em;
  width: 7px;
}

.resource-download-button {
  align-items: center;
  background: #353531;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 780;
  justify-content: center;
  line-height: 1;
  margin-top: 0;
  min-height: 56px;
  padding: 0 24px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.resource-download-button:hover {
  background: #2f766b;
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .resource-download-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .resource-download-head .section-copy {
    max-width: none;
  }

  .resource-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .resource-download-section {
    padding: 56px 0 64px;
  }

  .resource-download-section .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .resource-download-head {
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .resource-download-preview {
    min-height: 198px;
  }

  .resource-download-format {
    height: 28px;
    right: 16px;
    top: 16px;
  }

  .resource-download-body {
    padding: 24px 22px 26px;
  }

  .resource-download-body h3 {
    font-size: 23px;
  }

  .resource-download-button {
    margin-top: 0;
  }
}

/* v1.5.386: keep FEATURES screenshots full-width without stacked wrapper frames. */
.page-service-list .service-image {
  aspect-ratio: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  display: block !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  width: 100% !important;
}

.page-service-list .service-image img {
  background: transparent !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  object-fit: contain !important;
  object-position: center top !important;
  transform: none !important;
  width: 100% !important;
}

@media (max-width: 640px) {
  .page-service-list .service-image {
    margin-top: 10px !important;
    width: 100% !important;
  }
}

/* v1.5.386: keep support CTAs directly under the support heading copy. */
.support-panel {
  align-items: start !important;
}

.support-lead {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.support-card-list {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
}

.support-actions {
  grid-column: 1 !important;
  grid-row: 2 !important;
  justify-self: start !important;
  margin: clamp(38px, 4.4vw, 56px) 0 0 !important;
  order: initial !important;
  width: min(360px, 100%) !important;
}

@media (max-width: 960px) {
  .support-lead,
  .support-card-list,
  .support-actions {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .support-actions {
    margin-top: 0 !important;
    max-width: 520px !important;
    order: 2 !important;
  }

  .support-card-list {
    order: 3 !important;
  }
}

.support-lead > .support-actions {
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  margin: clamp(34px, 4vw, 48px) 0 0 !important;
  order: initial !important;
}

@media (max-width: 960px) {
  .support-lead > .support-actions {
    margin-top: clamp(30px, 7vw, 40px) !important;
    max-width: 520px !important;
  }

  .support-card-list {
    order: 2 !important;
  }
}

/* v1.5.386: mobile support order and balanced banner padding. */
@media (max-width: 640px) {
  .support-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 34px !important;
  }

  .support-lead {
    order: 1 !important;
    width: 100% !important;
  }

  .support-lead > .support-actions {
    margin-top: 30px !important;
    max-width: none !important;
    width: 100% !important;
  }

  .support-card-list {
    order: 2 !important;
    width: 100% !important;
  }

  .support-card {
    align-items: start !important;
    padding: 24px 28px 26px !important;
  }
}

/* v1.5.386: turn download resources into wide illustrated banners. */
.resource-download-grid {
  gap: clamp(16px, 2.2vw, 24px) !important;
  grid-template-columns: 1fr !important;
}

.resource-download-card {
  border-radius: 14px !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr) !important;
  grid-template-rows: 1fr !important;
  min-height: clamp(260px, 22vw, 312px) !important;
}

.resource-download-card:nth-child(2) {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.96fr) !important;
}

.resource-download-preview {
  background:
    linear-gradient(135deg, rgba(239, 249, 252, 0.98), rgba(255, 255, 255, 0.78) 58%, rgba(219, 240, 249, 0.9)) !important;
  border-bottom: 0 !important;
  border-right: 1px solid rgba(53, 53, 49, 0.1) !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.resource-download-preview-soft {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(246, 242, 232, 0.86) 56%, rgba(232, 247, 244, 0.8)) !important;
}

.resource-download-preview::after {
  background: none !important;
}

.resource-download-card:nth-child(2) .resource-download-preview {
  border-left: 1px solid rgba(53, 53, 49, 0.1) !important;
  border-right: 0 !important;
  order: 2 !important;
}

.resource-download-card:nth-child(2) .resource-download-body {
  order: 1 !important;
}

.resource-download-illustration {
  display: block !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
}

.resource-download-body {
  justify-content: center !important;
  padding: clamp(28px, 3.7vw, 44px) clamp(30px, 4.2vw, 52px) !important;
}

.resource-download-body h3 {
  font-size: clamp(25px, 2.45vw, 34px) !important;
  line-height: 1.3 !important;
  margin-bottom: 18px !important;
}

.resource-download-list {
  margin-bottom: clamp(18px, 2vw, 26px) !important;
}

.resource-download-button {
  max-width: 360px !important;
  min-height: 52px !important;
  width: 100% !important;
}

@media (max-width: 860px) {
  .resource-download-card,
  .resource-download-card:nth-child(2) {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .resource-download-card:nth-child(2) .resource-download-preview,
  .resource-download-card:nth-child(2) .resource-download-body {
    order: initial !important;
  }

  .resource-download-preview,
  .resource-download-card:nth-child(2) .resource-download-preview {
    border-bottom: 1px solid rgba(53, 53, 49, 0.1) !important;
    border-left: 0 !important;
    border-right: 0 !important;
    min-height: clamp(190px, 49vw, 280px) !important;
  }

  .resource-download-body {
    padding: 26px 24px 28px !important;
  }

  .resource-download-button {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .resource-download-card {
    border-radius: 12px !important;
  }

  .resource-download-preview,
  .resource-download-card:nth-child(2) .resource-download-preview {
    min-height: clamp(178px, 52vw, 228px) !important;
  }

  .resource-download-body h3 {
    font-size: 23px !important;
  }
}

/* v1.5.386: use the supplied download-banner artwork directly. */
.resource-download-grid {
  gap: clamp(18px, 2vw, 24px) !important;
  grid-template-columns: 1fr !important;
}

.resource-download-card,
.resource-download-card:nth-child(2) {
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.16) !important;
  border-radius: 10px !important;
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.resource-download-preview,
.resource-download-preview-soft,
.resource-download-card:nth-child(2) .resource-download-preview {
  background: transparent !important;
  border: 0 !important;
  display: block !important;
  line-height: 0 !important;
  min-height: 0 !important;
  order: initial !important;
  padding: 0 !important;
}

.resource-download-preview::after {
  display: none !important;
}

.resource-download-banner-link {
  display: block;
  line-height: 0;
}

.resource-download-illustration {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important;
  width: 100% !important;
}

.resource-download-format,
.resource-download-body {
  display: none !important;
}

@media (max-width: 640px) {
  .resource-download-grid {
    gap: 18px !important;
  }

  .resource-download-card,
  .resource-download-card:nth-child(2) {
    border-radius: 8px !important;
  }
}

/* v1.5.386: make screenshot previews fill the frame width and grow vertically. */
.page-service-list .service-image,
.page-service-list .service-item .service-image,
.page-service-list .service-item:nth-child(2) .service-image,
.service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized {
  align-self: start !important;
  aspect-ratio: auto !important;
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  display: block !important;
  height: auto !important;
  max-width: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  place-self: start stretch !important;
  width: 100% !important;
}

.page-service-list .service-image img,
.service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized img {
  background: transparent !important;
  border-radius: 0 !important;
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  object-fit: contain !important;
  object-position: center top !important;
  transform: none !important;
  width: 100% !important;
}

.product-screen-carousel {
  aspect-ratio: auto !important;
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  min-height: clamp(460px, 38vw, 560px) !important;
}

.screen-crop,
.screen-lightbox-frame .screen-crop {
  background-position: center top !important;
  background-size: 100% auto !important;
}

@media (max-width: 640px) {
  .page-service-list .service-image,
  .service-product-panel:not([data-screen-carousel]) .service-dashboard-shot.service-dashboard-anonymized {
    border-radius: 7px !important;
  }

  .product-screen-carousel {
    min-height: clamp(286px, 76vw, 340px) !important;
  }
}

/* v1.5.386: force FEATURES screenshots to occupy the full frame width. */
.page-service-list .service-image,
.page-service-list .service-item .service-image,
.page-service-list .service-item:nth-child(n) .service-image {
  aspect-ratio: auto !important;
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.12) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  display: block !important;
  height: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  width: 100% !important;
}

.page-service-list .service-image::before,
.page-service-list .service-image::after {
  content: none !important;
  display: none !important;
}

.page-service-list .service-image img {
  background: transparent !important;
  border-radius: 0 !important;
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
  transform: none !important;
  width: 100% !important;
}

@media (max-width: 640px) {
  .page-service-list {
    width: 100% !important;
  }

  .page-service-list .service-image,
  .page-service-list .service-item:nth-child(n) .service-image {
    border-radius: 7px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* v1.5.386: tighten only the space around DOWNLOAD and keep supplied banner frames clean. */
.resource-download-section {
  padding-top: clamp(32px, 3.5vw, 48px) !important;
  padding-bottom: clamp(32px, 3.5vw, 48px) !important;
}

.resource-download-section + .support-section {
  padding-top: clamp(28px, 3vw, 40px) !important;
}

#content > .section-soft:has(+ .resource-download-section),
#content > .faq-section:has(+ .resource-download-section) {
  padding-bottom: clamp(32px, 3.5vw, 48px) !important;
}

.resource-download-card,
.resource-download-card:nth-child(2) {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

@media (max-width: 640px) {
  .resource-download-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .resource-download-section + .support-section {
    padding-top: 30px !important;
  }

  #content > .section-soft:has(+ .resource-download-section),
  #content > .faq-section:has(+ .resource-download-section) {
    padding-bottom: 32px !important;
  }

  .resource-download-head {
    gap: 18px !important;
    margin-bottom: 24px !important;
    padding-bottom: 20px !important;
  }

  .resource-download-grid {
    gap: 18px !important;
  }
}

/* v1.5.386: render download banner copy as HTML text and keep the supplied artwork separate. */
.resource-download-grid {
  gap: clamp(14px, 1.9vw, 20px) !important;
  grid-template-columns: 1fr !important;
}

.resource-download-card,
.resource-download-card:nth-child(2) {
  background: #fff !important;
  border: 1px solid rgba(53, 53, 49, 0.14) !important;
  border-radius: 10px !important;
  cursor: pointer;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  min-height: clamp(242px, 19.5vw, 284px) !important;
  overflow: hidden !important;
  position: relative;
}

.resource-download-card:nth-child(2) {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.resource-download-preview,
.resource-download-preview-soft,
.resource-download-card:nth-child(2) .resource-download-preview {
  background: transparent !important;
  border: 0 !important;
  display: block !important;
  line-height: 0 !important;
  min-height: 100% !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.resource-download-preview {
  border-right: 1px solid rgba(53, 53, 49, 0.08) !important;
}

.resource-download-card:nth-child(2) .resource-download-preview {
  border-left: 1px solid rgba(53, 53, 49, 0.08) !important;
  border-right: 0 !important;
  order: 2 !important;
}

.resource-download-card:nth-child(2) .resource-download-body {
  order: 1 !important;
}

.resource-download-banner-link {
  display: block !important;
  height: 100% !important;
  line-height: 0 !important;
}

.resource-download-illustration {
  display: block !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  width: 100% !important;
}

.resource-download-card:first-child .resource-download-illustration {
  object-position: 38% 50% !important;
}

.resource-download-card:nth-child(2) .resource-download-illustration {
  object-position: 60% 50% !important;
}

.resource-download-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(28px, 3.6vw, 42px) clamp(30px, 4vw, 50px) !important;
}

.resource-download-label {
  margin-bottom: 14px !important;
}

.resource-download-body h3 {
  font-size: clamp(25px, 2.35vw, 32px) !important;
  line-height: 1.28 !important;
  margin-bottom: 18px !important;
}

.resource-download-list {
  gap: 10px !important;
  margin-bottom: 0 !important;
}

.resource-download-list li {
  font-size: clamp(14px, 1.18vw, 15px) !important;
  line-height: 1.72 !important;
}

.resource-download-format {
  display: inline-flex !important;
}

.resource-download-button {
  background: transparent !important;
  border: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  inset: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  width: auto !important;
  z-index: 6 !important;
}

@media (max-width: 860px) {
  .resource-download-card,
  .resource-download-card:nth-child(2) {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .resource-download-card:nth-child(2) .resource-download-preview,
  .resource-download-card:nth-child(2) .resource-download-body {
    order: initial !important;
  }

  .resource-download-preview,
  .resource-download-preview-soft,
  .resource-download-card:nth-child(2) .resource-download-preview {
    border: 0 !important;
    min-height: clamp(176px, 44vw, 250px) !important;
  }

  .resource-download-body {
    padding: 24px 24px 26px !important;
  }
}

@media (max-width: 640px) {
  .resource-download-card,
  .resource-download-card:nth-child(2) {
    border-radius: 8px !important;
  }

  .resource-download-preview,
  .resource-download-preview-soft,
  .resource-download-card:nth-child(2) .resource-download-preview {
    min-height: clamp(150px, 42vw, 210px) !important;
  }

  .resource-download-body h3 {
    font-size: 22px !important;
  }
}

/* v1.5.386: use the supplied high-resolution illustration images while keeping copy as HTML text. */
.resource-download-format {
  display: none !important;
}

.resource-download-card:first-child .resource-download-illustration,
.resource-download-card:nth-child(2) .resource-download-illustration {
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 640px) {
  .resource-download-head {
    display: block !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .resource-download-head > * {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .resource-download-head .section-copy {
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
    word-break: break-all !important;
  }
}

/* v1.5.386: refine download-card typography without changing the supplied artwork. */
.resource-download-body,
.resource-download-label,
.resource-download-body h3,
.resource-download-list,
.resource-download-list li {
  font-family: "Noto Sans JP", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-feature-settings: "palt";
  font-kerning: normal;
  letter-spacing: 0 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.resource-download-body {
  color: #353533 !important;
}

.resource-download-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  padding: 7px 12px 8px !important;
}

.resource-download-body h3 {
  color: #333330 !important;
  font-size: clamp(24px, 2.28vw, 31px) !important;
  font-weight: 700 !important;
  line-height: 1.36 !important;
  margin-bottom: 18px !important;
}

.resource-download-list {
  gap: 9px !important;
}

.resource-download-list li {
  color: rgba(53, 53, 49, 0.78) !important;
  font-size: clamp(14px, 1.12vw, 15px) !important;
  font-weight: 600 !important;
  line-height: 1.76 !important;
}

@media (max-width: 640px) {
  .resource-download-body h3 {
    font-size: 21px !important;
    line-height: 1.4 !important;
  }

  .resource-download-list li {
    font-size: 13.5px !important;
    line-height: 1.72 !important;
  }

  .resource-download-head .section-copy {
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}

/* v1.5.386: align desktop support banners to the resource banner column width. */
@media (min-width: 961px) {
  .support-panel {
    column-gap: 0 !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  .support-lead {
    max-width: 430px !important;
  }

  .support-card-list {
    width: 100% !important;
  }

  .support-card {
    gap: clamp(22px, 2.4vw, 34px) !important;
    grid-template-columns: 84px minmax(0, 1fr) !important;
    min-height: clamp(156px, 12vw, 184px) !important;
    padding: clamp(34px, 3.4vw, 48px) clamp(34px, 3.8vw, 52px) !important;
  }
}

/* v1.5.386: remove the long divider under archive-list headings. */
.works-section .section-head {
  border-bottom: 0 !important;
}

.works-section .section-head::after {
  content: none !important;
  display: none !important;
}

/* v1.5.386: keep NEWS archive cards aligned from the left edge. */
.media-archive-section .media-archive-grid {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* v1.5.386: make the support area an original board layout, not stacked reference-like cards. */
.support-card-list {
  background:
    linear-gradient(135deg, rgba(47, 118, 107, 0.045), rgba(255, 255, 255, 0) 42%),
    #fff !important;
  border: 1px solid rgba(47, 118, 107, 0.14) !important;
  border-radius: 8px !important;
  box-shadow: 0 20px 54px rgba(53, 53, 49, 0.055) !important;
  counter-reset: support-board;
  gap: 0 !important;
  overflow: hidden;
  padding: clamp(8px, 1.1vw, 14px) clamp(28px, 3vw, 42px) !important;
}

.support-card {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  counter-increment: support-board;
  gap: clamp(24px, 3vw, 42px) !important;
  grid-template-columns: clamp(74px, 7vw, 94px) minmax(0, 1fr) !important;
  min-height: 0 !important;
  padding: clamp(25px, 2.6vw, 38px) 0 !important;
}

.support-card + .support-card {
  border-top: 1px solid rgba(47, 118, 107, 0.13) !important;
}

.support-icon {
  background: rgba(47, 118, 107, 0.065) !important;
  border: 1px solid rgba(47, 118, 107, 0.18);
  border-radius: 18px;
  color: #2f766b !important;
  height: clamp(54px, 5.2vw, 64px) !important;
  position: relative;
  width: clamp(54px, 5.2vw, 64px) !important;
}

.support-icon::after {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(47, 118, 107, 0.18);
  border-radius: 999px;
  color: rgba(47, 118, 107, 0.84);
  content: counter(support-board, decimal-leading-zero);
  display: inline-flex;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 760;
  height: 24px;
  justify-content: center;
  letter-spacing: 0.02em;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 32px;
}

.support-icon svg {
  height: 62% !important;
  stroke-width: 2.35 !important;
  width: 62% !important;
}

.support-card h3 {
  font-size: clamp(21px, 1.75vw, 26px) !important;
  line-height: 1.45 !important;
  margin-bottom: 7px !important;
}

.support-card p {
  max-width: 36em;
}

@media (max-width: 640px) {
  .support-card-list {
    border-radius: 8px !important;
    padding: 4px 22px !important;
  }

  .support-card {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 22px 0 !important;
  }

  .support-icon {
    border-radius: 15px;
    height: 50px !important;
    width: 50px !important;
  }

  .support-icon::after {
    font-size: 9px;
    height: 21px;
    right: -8px;
    top: -8px;
    width: 28px;
  }

  .support-card h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
}

/* v1.5.386: owned media / magazine pages. */
.magazine-site {
  background: #fbfcfb;
}

.magazine-site .brand-mark {
  display: none;
}

.magazine-site .brand-text {
  gap: 3px;
}

.magazine-site .brand-sub {
  color: rgba(53, 53, 49, 0.48);
  display: block;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.magazine-site .site-footer .brand-sub {
  color: rgba(255, 255, 255, 0.58);
}

.magazine-hero {
  background: #f8faf8;
  border-bottom: 1px solid rgba(53, 53, 49, 0.08);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(118px, 10vw, 156px) var(--cs-page-pad) clamp(56px, 6vw, 82px);
  position: relative;
}

.magazine-hero::before {
  background-image: url("assets/images/magazine-hero-team-meeting.png?v=1.5.386");
  background-position: center center;
  background-size: cover;
  content: "";
  filter: saturate(1.02) contrast(1.02);
  inset: 0;
  opacity: 1;
  position: absolute;
  transform: scale(1.01);
  z-index: 0;
}

.magazine-hero::after {
  content: "";
  display: none;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.magazine-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4.5vw, 68px);
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.54fr);
  position: relative;
  z-index: 2;
}

.magazine-hero-copy {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(53, 53, 49, 0.11);
  max-width: 650px;
  padding: clamp(28px, 3.7vw, 42px);
}

.magazine-hero-copy h1 {
  color: var(--cs-ink);
  font-size: clamp(38px, 4.35vw, 60px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0;
}

.magazine-hero-copy p:last-child {
  color: rgba(53, 53, 49, 0.72);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 560;
  line-height: 1.95;
  margin-top: clamp(18px, 2.4vw, 28px);
  max-width: 560px;
}

.magazine-hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 118, 107, 0.15);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(53, 53, 49, 0.065);
  backdrop-filter: blur(10px);
  padding: clamp(24px, 3vw, 36px);
}

.magazine-hero-card span,
.magazine-card-category,
.magazine-article-category {
  align-items: center;
  background: rgba(47, 118, 107, 0.08);
  border: 1px solid rgba(47, 118, 107, 0.16);
  border-radius: 999px;
  color: #2f766b;
  display: inline-flex;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  padding: 8px 12px;
}

.magazine-hero-card h2 {
  color: var(--cs-ink);
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 760;
  line-height: 1.48;
  margin: 18px 0 12px;
}

.magazine-hero-card p {
  color: rgba(53, 53, 49, 0.68);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.9;
  margin: 0;
}

.magazine-link {
  align-items: center;
  color: var(--cs-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 760;
  gap: 12px;
  margin-top: 24px;
}

.magazine-link::before {
  background: rgba(53, 53, 49, 0.28);
  content: "";
  height: 1px;
  width: 40px;
}

.magazine-section {
  padding-inline: var(--cs-page-pad);
  padding-block: clamp(64px, 8vw, 112px);
}

.magazine-section-head {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  margin-bottom: clamp(30px, 4.2vw, 52px);
}

.magazine-section-head h2 {
  color: var(--cs-ink);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 780;
  line-height: 1.25;
  margin: 0;
}

.magazine-section-head p {
  color: rgba(53, 53, 49, 0.68);
  font-size: 14.5px;
  font-weight: 560;
  line-height: 1.9;
  margin: 14px 0 0;
}

.magazine-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.magazine-categories a {
  border: 1px solid rgba(53, 53, 49, 0.14);
  border-radius: 999px;
  color: rgba(53, 53, 49, 0.72);
  font-size: 12px;
  font-weight: 720;
  padding: 9px 13px;
}

.magazine-featured {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.1);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  margin-bottom: clamp(22px, 3vw, 34px);
  overflow: hidden;
}

.magazine-featured-image,
.magazine-card-image {
  background:
    linear-gradient(135deg, rgba(47, 118, 107, 0.08), rgba(255, 255, 255, 0) 54%),
    #f1f6f5;
  display: block;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.magazine-featured-image img,
.magazine-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.magazine-featured-body {
  align-self: center;
  padding: clamp(34px, 5vw, 64px);
}

.magazine-featured-body h3,
.magazine-card h3 {
  color: var(--cs-ink);
  font-size: clamp(25px, 2.7vw, 36px);
  font-weight: 780;
  line-height: 1.45;
  margin: 18px 0 16px;
}

.magazine-featured-body p,
.magazine-card p {
  color: rgba(53, 53, 49, 0.7);
  font-size: 14.5px;
  font-weight: 560;
  line-height: 1.95;
  margin: 0;
}

.magazine-meta {
  color: rgba(53, 53, 49, 0.52);
  display: flex;
  flex-wrap: wrap;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.03em;
  margin-top: 20px;
}

.magazine-grid {
  display: grid;
  gap: clamp(18px, 2.3vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.magazine-card {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.1);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.magazine-card-image {
  aspect-ratio: 16 / 9;
  min-height: 205px;
}

.magazine-card-body {
  padding: 24px 24px 28px;
}

.magazine-card h3 {
  font-size: clamp(20px, 1.75vw, 25px);
  margin-top: 15px;
}

.magazine-card .magazine-link {
  margin-top: 22px;
}

.magazine-cta {
  background:
    linear-gradient(135deg, rgba(47, 118, 107, 0.08), rgba(47, 118, 107, 0) 48%),
    #fff;
  border: 1px solid rgba(47, 118, 107, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(36px, 5vw, 62px);
  padding: clamp(28px, 4vw, 46px);
}

.magazine-cta h2 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.42;
  margin: 0;
}

.magazine-cta p {
  color: rgba(53, 53, 49, 0.7);
  font-weight: 560;
  line-height: 1.9;
  margin: 14px 0 0;
}

.magazine-cta-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.magazine-article-hero {
  background: #fff;
  border-bottom: 1px solid rgba(53, 53, 49, 0.08);
  padding: clamp(116px, 11vw, 170px) var(--cs-page-pad) clamp(50px, 6.5vw, 78px);
}

.magazine-article-head {
  max-width: 920px;
}

.magazine-article-head h1 {
  color: var(--cs-ink);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 22px 0 20px;
}

.magazine-article-lead {
  color: rgba(53, 53, 49, 0.7);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 560;
  line-height: 2;
  margin: 0;
  max-width: 760px;
}

.magazine-article-eyecatch {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.1);
  border-radius: 8px;
  margin: clamp(30px, 5vw, 54px) auto 0;
  max-width: min(1120px, calc(100% - var(--cs-page-pad) * 2));
  overflow: hidden;
}

.magazine-article-eyecatch img {
  aspect-ratio: 16 / 8.6;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.magazine-article-layout {
  align-items: start;
  display: grid;
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: minmax(180px, 250px) minmax(0, 760px);
}

.magazine-toc {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.1);
  border-radius: 8px;
  padding: 22px;
  position: sticky;
  top: 96px;
}

.magazine-toc b {
  color: var(--cs-ink);
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.magazine-toc a {
  color: rgba(53, 53, 49, 0.68);
  display: block;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.65;
  padding: 8px 0;
}

.magazine-article-body {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.1);
  border-radius: 8px;
  padding: clamp(30px, 5vw, 62px);
}

.magazine-article-body h2 {
  color: var(--cs-ink);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 780;
  line-height: 1.5;
  margin: 44px 0 16px;
}

.magazine-article-body h2:first-child {
  margin-top: 0;
}

.magazine-article-body h3 {
  color: var(--cs-ink);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 760;
  line-height: 1.6;
  margin: 30px 0 10px;
}

.magazine-article-body p,
.magazine-article-body li {
  color: rgba(53, 53, 49, 0.76);
  font-size: 15.5px;
  font-weight: 540;
  line-height: 2.05;
}

.magazine-article-body p {
  margin: 0 0 18px;
}

.magazine-article-body ul,
.magazine-article-body ol {
  margin: 14px 0 22px;
  padding-left: 1.4em;
}

.magazine-note-box {
  background: #f6faf8;
  border: 1px solid rgba(47, 118, 107, 0.14);
  border-radius: 8px;
  margin: 30px 0;
  padding: 22px 24px;
}

.magazine-note-box p:last-child {
  margin-bottom: 0;
}

.magazine-related {
  margin-top: clamp(44px, 6vw, 72px);
}

.magazine-related h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .magazine-hero-grid,
  .magazine-section-head,
  .magazine-featured,
  .magazine-cta,
  .magazine-article-layout {
    grid-template-columns: 1fr;
  }

  .magazine-categories {
    justify-content: flex-start;
  }

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

  .magazine-toc {
    position: static;
  }

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

@media (max-width: 640px) {
  .magazine-hero,
  .magazine-article-hero {
    padding-top: 104px;
  }

  .magazine-hero::before {
    background-position: 54% center;
    opacity: 1;
  }

  .magazine-hero::after {
    display: none;
  }

  .magazine-hero-copy {
    padding: 24px;
  }

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

  .magazine-featured-body,
  .magazine-card-body,
  .magazine-article-body {
    padding: 24px;
  }

  .magazine-featured-image,
  .magazine-card-image {
    min-height: 220px;
  }

  .magazine-article-eyecatch {
    margin-top: 24px;
    max-width: calc(100% - 40px);
  }

  .magazine-article-eyecatch img {
    aspect-ratio: 16 / 10;
  }

  .magazine-section {
    padding-block: 56px;
  }
}

/* v1.5.386: make magazine download CTAs read as a distinct guide panel, not an article card. */
.magazine-resource-cta {
  margin-top: clamp(42px, 6vw, 76px) !important;
}

.magazine-resource-cta.resource-download-grid {
  display: block !important;
  max-width: none !important;
}

.magazine-resource-cta .resource-download-card-checklist {
  align-items: center !important;
  background:
    linear-gradient(135deg, rgba(246, 251, 250, 0.98) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(241, 248, 246, 0.96) 100%) !important;
  border: 1px solid rgba(47, 118, 107, 0.2) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 44px rgba(30, 48, 44, 0.06) !important;
  display: grid !important;
  gap: clamp(22px, 3vw, 38px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: clamp(26px, 3.4vw, 40px) !important;
  position: relative !important;
}

.magazine-resource-cta .resource-download-card-checklist::before {
  content: none !important;
  display: none !important;
}

.magazine-resource-cta .resource-download-card-checklist .resource-download-body {
  align-items: flex-start !important;
  display: flex !important;
  order: 1 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.magazine-resource-cta .resource-download-card-checklist .resource-download-preview {
  align-self: stretch !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border: 0 !important;
  border-radius: 14px !important;
  display: flex !important;
  min-height: clamp(176px, 17vw, 230px) !important;
  order: 2 !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.magazine-resource-cta .resource-download-card-checklist .resource-download-preview::after {
  display: none !important;
}

.magazine-resource-cta .resource-download-card-checklist .resource-download-banner-link {
  display: block !important;
  height: 100% !important;
  width: 100% !important;
}

.magazine-resource-cta .resource-download-card-checklist .resource-download-illustration {
  display: block !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  width: 100% !important;
}

.magazine-resource-cta .resource-download-label {
  background: rgba(235, 247, 245, 0.96) !important;
  border-color: rgba(47, 118, 107, 0.18) !important;
  margin-bottom: 18px !important;
}

.magazine-resource-cta .resource-download-body h2 {
  color: #333330 !important;
  font-family: "Noto Sans JP", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-feature-settings: "palt";
  font-size: clamp(25px, 2.2vw, 31px) !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  line-height: 1.36 !important;
  margin: 0 0 18px !important;
}

.magazine-resource-cta .resource-download-list {
  margin-bottom: clamp(20px, 2vw, 26px) !important;
}

.magazine-resource-cta .resource-download-button {
  min-width: min(100%, 260px) !important;
  width: auto !important;
}

@media (max-width: 860px) {
  .magazine-resource-cta .resource-download-card-checklist {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .magazine-resource-cta {
    margin-top: 34px !important;
  }

  .magazine-resource-cta .resource-download-card-checklist {
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding: 22px !important;
  }

  .magazine-resource-cta .resource-download-card-checklist::before {
    border-radius: 16px 0 0 16px !important;
    bottom: -1px !important;
    height: auto !important;
    top: -1px !important;
    width: 16px !important;
  }

  .magazine-resource-cta .resource-download-card-checklist .resource-download-body {
    order: 1 !important;
    width: 100% !important;
  }

  .magazine-resource-cta .resource-download-card-checklist .resource-download-preview {
    aspect-ratio: 16 / 7 !important;
    border-radius: 12px !important;
    min-height: 0 !important;
    order: 2 !important;
    width: 100% !important;
  }

  .magazine-resource-cta .resource-download-body h2 {
    font-size: 22px !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
  }

  .magazine-resource-cta .resource-download-list {
    gap: 9px !important;
    margin-bottom: 18px !important;
  }

  .magazine-resource-cta .resource-download-list li {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .magazine-resource-cta .resource-download-button {
    min-height: 52px !important;
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* v1.5.386: place the magazine hero copy below the photo instead of overlaying it. */
.magazine-hero {
  background: #fff;
  border-bottom: 0;
  display: block;
  min-height: 0;
  overflow: visible;
  padding: 0;
}

.magazine-hero::before {
  background-position: center center;
  content: "";
  display: block;
  filter: saturate(1.02) contrast(1.02);
  height: clamp(520px, 42vw, 680px);
  inset: auto;
  opacity: 1;
  position: relative;
  transform: none;
  width: 100%;
}

.magazine-hero::after {
  display: none;
}

.magazine-hero-grid {
  display: block;
  padding: clamp(52px, 6vw, 84px) var(--cs-page-pad) clamp(34px, 4vw, 58px);
  width: 100%;
}

.magazine-hero-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 760px;
  padding: 0;
  transform: none;
}

.magazine-hero-copy h1 {
  font-size: clamp(42px, 4.65vw, 68px);
  line-height: 1.12;
}

.magazine-hero-copy p:last-child {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.95;
  margin-top: clamp(18px, 2.2vw, 26px);
  max-width: 680px;
}

@media (max-width: 960px) {
  .magazine-site .magazine-hero {
    padding: 0;
  }

  .magazine-site .magazine-hero::before {
    height: clamp(360px, 64vw, 520px);
  }

  .magazine-site .magazine-hero-grid {
    padding: clamp(42px, 8vw, 68px) var(--cs-page-pad) clamp(24px, 5vw, 40px);
  }

  .magazine-site .magazine-hero-copy {
    max-width: 700px;
  }

  .magazine-site .magazine-hero-copy h1 {
    font-size: clamp(34px, 7vw, 46px);
    line-height: 1.18;
  }

  .magazine-site .magazine-hero-copy p:last-child {
    font-size: 14.5px;
    line-height: 1.95;
    margin-top: 18px;
  }

  .magazine-site .magazine-section {
    padding-top: 0;
  }

  .magazine-site .magazine-section-head {
    display: none;
  }
}

@media (max-width: 640px) {
  .magazine-site .magazine-hero::before {
    height: 360px;
  }

  .magazine-site .magazine-hero-grid {
    padding-top: 42px;
    padding-bottom: 28px;
  }
}

/* v1.5.386: restore the desktop magazine hero to the photo-backed card layout. */
@media (min-width: 961px) {
  .magazine-site .site-header {
    background: #fff;
    border-bottom: 1px solid rgba(29, 29, 27, 0.08);
  }

  .magazine-site .magazine-hero {
    align-items: end;
    background: #fff;
    display: grid;
    margin-top: 68px;
    min-height: clamp(620px, 37.4vw, 720px);
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .magazine-site .magazine-hero::before {
    background-position: center -34px;
    background-size: cover;
    content: "";
    display: block;
    filter: saturate(1.02) contrast(1.02);
    height: calc(100% + 34px);
    inset: 0;
    opacity: 1;
    position: absolute;
    transform: none;
    width: 100%;
    z-index: 0;
  }

  .magazine-site .magazine-hero-grid {
    align-items: end;
    display: grid;
    margin: 0 auto;
    max-width: 1280px;
    min-height: inherit;
    padding: 0 var(--cs-page-pad) clamp(28px, 2.4vw, 42px);
    position: relative;
    width: 100%;
    z-index: 2;
  }

  .magazine-site .magazine-hero-copy {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    box-shadow: none;
    max-width: 560px;
    padding: clamp(30px, 2vw, 36px) clamp(32px, 2.2vw, 40px);
  }

  .magazine-site .magazine-hero-copy h1 {
    font-size: clamp(38px, 2.75vw, 50px);
    line-height: 1.17;
  }

  .magazine-site .magazine-hero-copy p:last-child {
    font-size: clamp(13px, 0.86vw, 14.5px);
    line-height: 1.85;
    margin-top: clamp(16px, 1.4vw, 22px);
    max-width: 500px;
  }
}

/* v1.5.386: extend the FEATURES detail accent through the visible rounded edge. */
.page-service-list .service-detail-card::before {
  background: transparent !important;
  border-color: #4b9186 !important;
  border-radius: 14px 0 0 14px !important;
  border-style: solid !important;
  border-width: 1px 0 1px 4px !important;
  bottom: -1px !important;
  box-sizing: border-box !important;
  left: -1px !important;
  top: -1px !important;
  width: 18px !important;
}

@media (max-width: 640px) {
  .page-service-list .service-detail-card::before {
    border-radius: 12px 0 0 12px !important;
    width: 16px !important;
  }
}

/* v1.5.386: keep the desktop magazine hero copy below the visible faces. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero-grid {
    padding-bottom: 0;
  }

  .magazine-site .magazine-hero-copy {
    max-width: 520px;
    padding: clamp(24px, 1.65vw, 30px) clamp(28px, 2vw, 36px);
  }

  .magazine-site .magazine-hero-copy h1 {
    font-size: clamp(34px, 2.35vw, 43px);
    line-height: 1.15;
  }

  .magazine-site .magazine-hero-copy p:last-child {
    font-size: clamp(12.5px, 0.78vw, 13.5px);
    line-height: 1.78;
    margin-top: clamp(12px, 1vw, 16px);
  }
}

/* v1.5.386: move the desktop magazine hero card off the visible faces. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero {
    min-height: clamp(640px, 39vw, 750px);
  }

  .magazine-site .magazine-hero::before {
    background-position: center -92px;
    height: calc(100% + 92px);
  }

  .magazine-site .magazine-hero-grid {
    padding-bottom: clamp(12px, 1.1vw, 20px);
  }

  .magazine-site .magazine-hero-copy {
    max-width: 500px;
    padding: clamp(22px, 1.45vw, 26px) clamp(26px, 1.75vw, 32px);
  }

  .magazine-site .magazine-hero-copy h1 {
    font-size: clamp(32px, 2.15vw, 39px);
    line-height: 1.15;
  }

  .magazine-site .magazine-hero-copy p:last-child {
    font-size: clamp(12px, 0.74vw, 13px);
    line-height: 1.72;
    margin-top: clamp(10px, 0.8vw, 14px);
    max-width: 450px;
  }
}

/* v1.5.386: drop the desktop magazine copy card below the face line. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero {
    margin-bottom: clamp(84px, 6vw, 116px);
    min-height: clamp(610px, 39vw, 700px);
    overflow: visible;
  }

  .magazine-site .magazine-hero-grid {
    padding-bottom: 0;
    transform: translateY(clamp(72px, 5.5vw, 96px));
  }

  .magazine-site .magazine-hero-copy {
    background: rgba(255, 255, 255, 0.92);
    max-width: 480px;
    padding: clamp(20px, 1.35vw, 24px) clamp(24px, 1.65vw, 30px);
  }

  .magazine-site .magazine-hero-copy h1 {
    font-size: clamp(34px, 2.32vw, 42px);
  }

  .magazine-site .magazine-hero-copy p:last-child {
    font-size: clamp(12.8px, 0.78vw, 13.6px);
    max-width: 430px;
  }
}

/* v1.5.386: lower the desktop magazine copy card further without affecting mobile. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero {
    margin-bottom: clamp(124px, 8vw, 156px);
    min-height: clamp(620px, 39vw, 710px);
  }

  .magazine-site .magazine-hero-grid {
    transform: translateY(clamp(104px, 6.8vw, 124px));
  }
}

/* v1.5.386: keep breathing room after the lowered desktop magazine hero. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero {
    margin-bottom: clamp(96px, 6.5vw, 124px);
  }

  .magazine-site .magazine-hero + .magazine-section {
    padding-top: clamp(26px, 2.6vw, 44px);
  }

  .magazine-site .magazine-section-head {
    align-items: center;
    gap: clamp(22px, 2.8vw, 42px);
    margin-bottom: clamp(28px, 3.4vw, 46px);
  }

  .magazine-site .magazine-section-head h2 {
    font-size: clamp(30px, 2.95vw, 42px);
    line-height: 1.16;
  }

  .magazine-site .magazine-section-head .eyebrow {
    font-size: 12.5px;
    margin-bottom: 12px;
  }

  .magazine-site .magazine-section-head p {
    font-size: clamp(13px, 0.86vw, 14px);
    line-height: 1.8;
    margin-top: 12px;
    max-width: 660px;
  }

  .magazine-site .magazine-categories {
    gap: 9px;
  }

  .magazine-site .magazine-categories a {
    font-size: 11.5px;
    padding: 8px 12px;
  }
}

/* v1.5.386: keep the magazine hero card low, but detached from the photo bottom. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero {
    margin-bottom: clamp(64px, 5vw, 92px);
  }

  .magazine-site .magazine-hero-grid {
    padding-bottom: clamp(40px, 3vw, 58px);
    transform: none;
  }

  .magazine-site .magazine-hero + .magazine-section {
    padding-top: clamp(66px, 5vw, 94px);
  }
}

/* v1.5.386: keep the magazine hero photo from spilling into the content below. */
@media (min-width: 961px) {
  .magazine-site .magazine-hero {
    margin-bottom: clamp(84px, 6vw, 112px);
  }

  .magazine-site .magazine-hero::before {
    background-repeat: no-repeat;
    height: 100%;
    inset: 0 0 auto;
  }

  .magazine-site .magazine-hero + .magazine-section {
    padding-top: clamp(82px, 6vw, 112px);
  }
}

/* v1.5.386: add a service-site link to SUPPORT AI Magazine below FAQ. */
.magazine-link-section {
  background: #fff;
  padding: clamp(46px, 5.4vw, 76px) var(--cs-page-pad) clamp(44px, 5vw, 72px);
}

.faq-section + .magazine-link-section {
  padding-top: clamp(42px, 5vw, 68px);
}

.magazine-link-section + .resource-download-section {
  padding-top: clamp(36px, 4vw, 54px) !important;
}

#content > .faq-section:has(+ .magazine-link-section) {
  padding-bottom: clamp(28px, 3vw, 44px) !important;
}

.magazine-link-head {
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.magazine-link-head .section-copy {
  max-width: 660px;
}

.magazine-link-panel {
  background: #fff;
  border: 1px solid rgba(53, 53, 49, 0.14);
  border-radius: 18px;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  min-height: clamp(300px, 28vw, 390px);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.magazine-link-panel:hover {
  border-color: rgba(47, 118, 107, 0.34);
  transform: translateY(-2px);
}

.magazine-link-visual {
  display: block;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.magazine-link-visual::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.54) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.magazine-link-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.magazine-link-body {
  align-self: center;
  display: grid;
  gap: 18px;
  padding: clamp(32px, 4.4vw, 58px);
}

.magazine-link-kicker {
  color: #2f766b;
  font-family: Montserrat, "Noto Sans JP", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.5;
}

.magazine-link-title {
  color: var(--cs-ink);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.35;
}

.magazine-link-text {
  color: var(--cs-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 2;
}

.magazine-link-cta {
  align-items: center;
  color: var(--cs-ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 780;
  gap: 14px;
  margin-top: 6px;
}

.magazine-link-cta::before {
  background: rgba(53, 53, 49, 0.34);
  content: "";
  height: 1px;
  width: 42px;
}

@media (max-width: 860px) {
  .magazine-link-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .magazine-link-head .section-copy {
    max-width: none;
  }

  .magazine-link-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .magazine-link-visual {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .magazine-link-visual::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .magazine-link-section {
    padding: 48px 20px 54px;
  }

  .faq-section + .magazine-link-section {
    padding-top: 42px;
  }

  .magazine-link-section + .resource-download-section {
    padding-top: 30px !important;
  }

  #content > .faq-section:has(+ .magazine-link-section) {
    padding-bottom: 30px !important;
  }

  .magazine-link-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .magazine-link-panel {
    border-radius: 14px;
  }

  .magazine-link-body {
    gap: 14px;
    padding: 24px 22px 26px;
  }

  .magazine-link-title {
    font-size: 25px;
  }

  .magazine-link-text {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* v1.5.386: PC lead-copy columns align with the first SERVICE block. */
@media (min-width: 1181px) {
  #service .section-head,
  .works-section .section-head,
  .magazine-link-head,
  .resource-download-head {
    align-items: start !important;
    display: grid !important;
    gap: clamp(58px, 6vw, 92px) !important;
    grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr) !important;
  }

  .magazine-link-head > .section-copy,
  .resource-download-head > .section-copy {
    grid-column: 2 !important;
    justify-self: stretch !important;
    max-width: none !important;
    padding-top: 51px !important;
    width: 100% !important;
  }

  #service .section-head > .section-copy,
  #service .section-head > .section-copy-group {
    grid-column: 2 !important;
    justify-self: stretch !important;
    max-width: none !important;
    padding-top: 38px !important;
    width: 100% !important;
  }

  .works-section .section-head > .case-section-copy {
    grid-column: 2 !important;
    justify-self: stretch !important;
    max-width: 620px !important;
    padding-top: 51px !important;
    width: 100% !important;
  }

  .resource-download-head .section-copy {
    margin: 0 !important;
  }
}

/* v1.5.386: give the CASE archive link the same breathing room as NEWS/FAQ. */
.works-section .section-inline-link.case-index-link {
  margin-top: clamp(24px, 2.8vw, 36px) !important;
}

@media (max-width: 760px) {
  .works-section .case-section-copy {
    margin: clamp(18px, 4vw, 24px) 0 0 !important;
    max-width: none !important;
  }

  .works-section .section-copy-action {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .works-section .section-inline-link.case-index-link {
    margin: clamp(26px, 7vw, 34px) 0 0 !important;
  }
}

/* v1.5.386: give magazine article cards the same breathing room as the download banners. */
.magazine-site .magazine-featured + .magazine-grid {
  margin-top: clamp(42px, 4.8vw, 66px) !important;
}

.magazine-site .magazine-grid {
  column-gap: clamp(30px, 3.4vw, 46px) !important;
  row-gap: clamp(34px, 3.8vw, 50px) !important;
}

.magazine-site .magazine-grid + .magazine-resource-cta {
  margin-top: clamp(58px, 5.8vw, 86px) !important;
}

@media (max-width: 860px) {
  .magazine-site .magazine-grid {
    gap: clamp(26px, 6vw, 36px) !important;
  }
}

@media (max-width: 640px) {
  .magazine-site .magazine-featured + .magazine-grid {
    margin-top: 36px !important;
  }

  .magazine-site .magazine-grid + .magazine-resource-cta {
    margin-top: 44px !important;
  }
}

/* v1.5.386: let magazine article thumbnails reach the visible card edge. */
.magazine-site .magazine-card-image {
  background: #fff !important;
  isolation: isolate;
}

.magazine-site .magazine-card-image img {
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.075);
  transform-origin: center;
  width: 100% !important;
}

/* v1.5.386: remove thumbnails from top-page NEWS cards and rebalance text cards. */
.owned-media-section .media-card a {
  grid-template-areas:
    "category"
    "title"
    "summary"
    "read" !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto !important;
  min-height: clamp(150px, 13vw, 184px) !important;
  padding: clamp(22px, 2.5vw, 30px) clamp(24px, 3vw, 36px) !important;
  row-gap: clamp(9px, 1vw, 12px) !important;
}

.owned-media-section .media-card-eyecatch {
  display: none !important;
}

.owned-media-section .media-card-category {
  grid-area: category !important;
}

.owned-media-section .media-card h3 {
  grid-area: title !important;
}

.owned-media-section .media-card p {
  grid-area: summary !important;
  max-width: 62em !important;
}

.owned-media-section .media-card .media-card-link {
  grid-area: read !important;
  justify-self: end !important;
  margin-top: clamp(14px, 1.5vw, 20px) !important;
}

@media (max-width: 760px) {
  .owned-media-section .media-card a {
    min-height: 0 !important;
    padding: 24px 20px !important;
    row-gap: 10px !important;
  }

  .owned-media-section .media-card .media-card-link {
    margin-top: 18px !important;
  }
}

/* v1.5.390: SP hero copy overlaps the widened image more assertively. */
@media (max-width: 640px) {
  body.home .hero,
  body.front-page .hero {
    min-height: 900px !important;
  }

  body.home .hero-inner,
  body.home .hero-copy,
  body.front-page .hero-inner,
  body.front-page .hero-copy {
    min-height: 828px !important;
  }

  body.home .hero-copy,
  body.front-page .hero-copy {
    height: 828px !important;
  }

  body.home .hero h1,
  body.front-page .hero h1 {
    gap: 12px !important;
    left: 22px !important;
    top: 90px !important;
    z-index: 8 !important;
  }

  body.home .hero h1 > span,
  body.front-page .hero h1 > span {
    background: rgba(248, 250, 249, 0.92) !important;
    font-size: clamp(40px, 10.8vw, 47px) !important;
    line-height: 1.04 !important;
    padding: 13px 9px !important;
  }

  body.home .hero-media,
  body.front-page .hero-media {
    --hero-circle-size: min(148vw, 580px) !important;
    aspect-ratio: 1 / 1 !important;
    height: var(--hero-circle-size) !important;
    left: 68px !important;
    margin-left: 0 !important;
    right: auto !important;
    top: 82px !important;
    transform: none !important;
    width: var(--hero-circle-size) !important;
  }

  body.home .hero-media img,
  body.front-page .hero-media img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 50% !important;
    width: 100% !important;
  }

  body.home .hero-note,
  body.front-page .hero-note {
    bottom: 58px !important;
  }

  body.home .hero-marquee,
  body.front-page .hero-marquee {
    bottom: 188px !important;
  }
}

/* v1.5.391: retention badge in the first-view lower-right corner. */
.hero-retention-badge {
  position: absolute;
  right: clamp(18px, 4.8vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  width: clamp(118px, 12vw, 184px);
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(102, 83, 24, 0.1));
}

@media (max-width: 1180px) {
  .hero-retention-badge {
    right: clamp(14px, 4vw, 38px);
    bottom: clamp(24px, 5vw, 52px);
    width: clamp(108px, 15vw, 148px);
  }
}

@media (max-width: 640px) {
  .hero-retention-badge {
    right: 16px;
    bottom: 96px;
    width: min(32vw, 126px);
  }
}

/* v1.5.394: hide the SP retention badge and keep only a modest SERVICE gap tighten. */
@media (max-width: 640px) {
  body.home .hero,
  body.front-page .hero {
    min-height: 720px !important;
  }

  body.home .hero-inner,
  body.home .hero-copy,
  body.front-page .hero-inner,
  body.front-page .hero-copy {
    min-height: 668px !important;
  }

  body.home .hero-copy,
  body.front-page .hero-copy {
    height: 668px !important;
  }

  body.home .hero-note,
  body.front-page .hero-note {
    bottom: 0 !important;
  }

  body.home .hero-marquee,
  body.front-page .hero-marquee {
    bottom: 192px !important;
  }

  body.home .hero-retention-badge,
  body.front-page .hero-retention-badge {
    display: none !important;
  }

  body.home .about-section,
  body.front-page .about-section {
    padding-top: 28px !important;
  }
}

/* v1.5.398: keep the SP vertical headline clear of the header and lower the background marquee. */
@media (max-width: 640px) {
  body.home .hero h1,
  body.front-page .hero h1 {
    gap: 8px !important;
    left: 12px !important;
    top: 96px !important;
  }

  body.home .hero h1 > span,
  body.front-page .hero h1 > span {
    font-size: clamp(32px, 8.9vw, 37px) !important;
    line-height: 1.05 !important;
    padding: 10px 7px !important;
  }

  body.home .hero-media,
  body.front-page .hero-media {
    --hero-circle-size: min(136vw, 532px) !important;
    left: 2px !important;
    top: 94px !important;
  }

  body.home .hero-marquee,
  body.front-page .hero-marquee {
    bottom: 138px !important;
  }
}

/* v1.5.408: keep the compact SP header stable and draw the smaller menu icon on the header. */
@media (max-width: 640px) {
  .site-header,
  .magazine-site .site-header {
    animation: none !important;
    min-height: 64px !important;
    opacity: 1 !important;
    padding: 15px 20px !important;
    top: 0 !important;
    transform: none !important;
  }

  .admin-bar .site-header {
    top: 46px !important;
  }

  .site-header::after,
  .magazine-site .site-header::after {
    background: var(--cs-ink) !important;
    box-shadow: 0 6px 0 var(--cs-ink), 0 12px 0 var(--cs-ink);
    content: "" !important;
    height: 2px !important;
    pointer-events: none !important;
    position: absolute !important;
    right: 24px !important;
    top: 25px !important;
    width: 20px !important;
    z-index: 3 !important;
  }

  .brand-lockup {
    gap: 8px !important;
  }

  .brand-name {
    font-size: 13px !important;
    letter-spacing: 0.075em !important;
  }

  .menu-toggle {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--cs-ink) !important;
    display: inline-block !important;
    height: 38px !important;
    position: absolute !important;
    right: 14px !important;
    top: 13px !important;
    width: 38px !important;
    z-index: 2 !important;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    background-color: var(--cs-ink) !important;
    content: "" !important;
    display: block !important;
    height: 2px !important;
    left: 9px !important;
    position: absolute !important;
    width: 20px !important;
  }

  .menu-toggle::before {
    top: 12px !important;
  }

  .menu-toggle span {
    top: 18px !important;
  }

  .menu-toggle::after {
    top: 24px !important;
    width: 14px !important;
  }
}

/* v1.5.410: enlarge the PC vertical hero copy and widen the image into it. */
@media (min-width: 961px) {
  body.home .hero h1,
  body.front-page .hero h1 {
    gap: 11px !important;
    left: -18px !important;
    z-index: 8 !important;
  }

  body.home .hero h1 > span,
  body.front-page .hero h1 > span {
    font-size: clamp(42px, 3.9vw, 50px) !important;
    line-height: 1.04 !important;
    padding: 14px 9px !important;
  }

  body.home .hero-media,
  body.front-page .hero-media {
    left: max(104px, 9vw) !important;
    right: max(20px, 2vw) !important;
  }
}

/* v1.5.411: give the white ABOUT block more breathing room before the next background. */
#about.about-section {
  padding-bottom: clamp(78px, 7.2vw, 118px) !important;
}

@media (min-width: 1181px) {
  #about.about-section {
    padding-bottom: clamp(132px, 10vw, 164px) !important;
  }
}

@media (max-width: 760px) {
  #about.about-section {
    padding-bottom: 54px !important;
  }
}

/* v1.5.413: use the supplied SUPPORT AI artwork as the service logo. */
.brand-lockup.has-logo {
  align-items: center;
  gap: 0 !important;
  line-height: 0;
}

.brand-lockup.has-logo .brand-logo {
  display: block;
  height: auto;
  width: clamp(174px, 16vw, 220px);
}

.brand-lockup.has-logo .brand-mark,
.brand-lockup.has-logo .brand-text {
  display: none !important;
}

.menu-modal-head .brand-lockup.has-logo .brand-logo {
  width: 194px;
}

.site-footer .brand-lockup.has-logo .brand-logo {
  opacity: 0.94;
  width: clamp(174px, 16vw, 218px);
}

@media (max-width: 640px) {
  .brand-lockup.has-logo .brand-logo {
    width: 160px;
  }

  .menu-modal-head .brand-lockup.has-logo .brand-logo {
    width: 172px;
  }
}
