:root {
  --ink: #202020;
  --blue: #797979;
  --blue-deep: #434343;
  --cyan: #bdbdbd;
  --violet: #787878;
  --ice: #f2f2f2;
  --paper: #f3f3f3;
  --white: #ffffff;
  --line: rgba(32, 32, 32, 0.14);
  --page-pad: clamp(24px, 6.4vw, 104px);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  cursor: default;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

::selection {
  background: #bebebe;
  color: #222222;
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  background: linear-gradient(90deg, #8e8e8e, #777777 48%, #b4b4b4);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 98px;
  padding: 0 clamp(24px, 4.2vw, 68px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__logo {
  display: inline-flex;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  line-height: 1;
}

.brand-logo__mark {
  display: block;
  height: 30px;
  width: auto;
}

.brand-logo__word {
  font-size: 19px;
  font-weight: 620;
  letter-spacing: 0.06em;
}

.brand-logo--light {
  color: var(--white);
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(19px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: 0.035em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 320ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-label {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  height: 1.2em;
  vertical-align: top;
}

.nav-label__en,
.nav-label__ja {
  display: block;
  grid-area: 1 / 1;
  white-space: nowrap;
  line-height: 1.2;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-label__ja {
  transform: translateY(100%);
}

.desktop-nav a:hover .nav-label__en,
.header-contact:hover .nav-label__en,
.footer__nav a:hover .nav-label__en {
  transform: translateY(-100%);
}

.desktop-nav a:hover .nav-label__ja,
.header-contact:hover .nav-label__ja,
.footer__nav a:hover .nav-label__ja {
  transform: translateY(0);
}

.nav-label--contact {
  height: 1.3em;
}

.header-contact {
  display: flex;
  min-width: 134px;
  height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: transform 240ms ease, background 240ms ease;
}

.header-contact:hover {
  transform: translateY(-2px);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  visibility: hidden;
  overflow: hidden;
  padding: 112px 28px 38px;
  grid-template-rows: 1fr auto;
  background: #222222;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease, visibility 400ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -250px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(114, 114, 114, 0.8), rgba(148, 148, 148, 0.2) 48%, transparent 70%);
  filter: blur(18px);
}

.mobile-menu nav,
.mobile-menu > p {
  position: relative;
  z-index: 1;
}

.mobile-menu nav {
  display: grid;
  align-content: center;
}

.mobile-menu nav a {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  font-size: clamp(27px, 8vw, 42px);
  font-style: italic;
  font-weight: 520;
  letter-spacing: -0.045em;
}

.mobile-menu nav a span {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0;
  opacity: 0.55;
}

.mobile-menu nav a b {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
}

.mobile-menu > p {
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  height: 100svh;
  max-height: 940px;
  overflow: hidden;
  padding: 150px var(--page-pad) 55px;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(113, 113, 113, 0.32), transparent 28%),
    radial-gradient(circle at 23% 88%, rgba(152, 152, 152, 0.22), transparent 34%),
    #131313;
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(to bottom, transparent, black 34%, transparent 92%);
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -42vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(133, 133, 133, 0.11), rgba(145, 145, 145, 0.06) 40%, transparent 70%);
}

.signal-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.signal-line {
  position: absolute;
  top: 49%;
  left: 51%;
  width: 130vw;
  height: 1px;
  transform-origin: 41% 50%;
  opacity: 0.7;
}

.signal-line::before {
  position: absolute;
  inset: -1px 0;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: signal-draw 1.9s cubic-bezier(0.2, 0.8, 0.2, 1) 360ms forwards;
}

.signal-line--1 {
  transform: translate(-44%, -50%) rotate(34deg);
}

.signal-line--1::before {
  background: linear-gradient(90deg, transparent, #888888 20%, #888888 64%, transparent);
}

.signal-line--2 {
  transform: translate(-44%, -50%) rotate(-49deg);
}

.signal-line--2::before {
  background: linear-gradient(90deg, transparent, #ff3b3b 20%, #b91c1c 68%, transparent);
  animation-delay: 520ms;
}

.signal-line--3 {
  transform: translate(-45%, -50%) rotate(143deg);
}

.signal-line--3::before {
  background: linear-gradient(90deg, transparent, #bababa 25%, #7f7f7f 64%, transparent);
  animation-delay: 660ms;
}

.signal-line--4 {
  transform: translate(-45%, -50%) rotate(213deg);
}

.signal-line--4::before {
  background: linear-gradient(90deg, transparent, #9a9a9a 28%, #ababab 70%, transparent);
  animation-delay: 760ms;
}

.signal-node {
  position: absolute;
  top: 49%;
  left: 51%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #787878;
  box-shadow: 0 0 0 7px rgba(122, 122, 122, 0.12), 0 0 32px 14px rgba(122, 122, 122, 0.2);
  animation: node-in 800ms ease 1.3s forwards, node-pulse 3.4s ease-in-out 2.1s infinite;
}

@keyframes signal-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes node-in {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes node-pulse {
  50% {
    box-shadow: 0 0 0 13px rgba(122, 122, 122, 0.05), 0 0 44px 20px rgba(149, 149, 149, 0.16);
  }
}

.hero__eyebrow,
.hero__title,
.hero__bottom {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  position: absolute;
  top: 137px;
  right: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero__eyebrow span:last-child {
  opacity: 0.5;
}

.hero__title {
  display: flex;
  margin-left: -0.045em;
  flex-direction: column;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(62px, 9.35vw, 150px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.86;
  white-space: nowrap;
}

.hero__title span:last-child {
  align-self: flex-end;
  margin-top: 0.13em;
  margin-right: 0.03em;
}

.hero__bottom {
  position: absolute;
  right: var(--page-pad);
  bottom: 42px;
  left: var(--page-pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero__bottom > p {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--white);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  to {
    transform: translateY(300%);
  }
}

.hero-enter {
  opacity: 0;
  animation: hero-enter 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-enter--1 {
  animation-delay: 0.35s;
}

.hero-enter--2 {
  animation-delay: 0.5s;
}

.hero-enter--3 {
  animation-delay: 0.68s;
}

.hero-enter--4 {
  animation-delay: 0.9s;
}

@keyframes hero-enter {
  from {
    transform: translateY(34px);
    opacity: 0;
    filter: blur(8px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

.message {
  padding: 16px;
  background: var(--paper);
}

.message__card {
  display: grid;
  min-height: 700px;
  padding: clamp(65px, 8.5vw, 138px) clamp(30px, 7vw, 112px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: clamp(60px, 10vw, 180px);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: inset 0 1px 0 #ffffff;
  backdrop-filter: blur(18px);
}

.small-label {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.small-label--light {
  color: rgba(255, 255, 255, 0.68);
}

.message__lead h2 {
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.46;
}

.message__body {
  max-width: 620px;
}

.message__body > p {
  margin-bottom: 26px;
  color: #515151;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 2.2;
}

.scroll-reveal-text {
  background-image: linear-gradient(to right, var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(32, 32, 32, 0.25);
}

.message__body .message__intro {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 650;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.4);
  align-items: center;
  gap: 50px;
  font-size: 14px;
  font-weight: 650;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 25%) 1fr;
  gap: 32px;
  align-items: start;
}

.section-heading__index {
  display: flex;
  padding-top: 22px;
  align-items: center;
  gap: 18px;
}

.section-heading__index span {
  font-size: 13px;
  font-weight: 600;
}

.section-heading__index i {
  display: block;
  width: min(160px, 70%);
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-heading h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(58px, 8vw, 126px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.section-heading p {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0.08em;
}

.section-heading--light {
  color: var(--white);
}

.service {
  position: relative;
  min-height: 1460px;
  overflow: hidden;
  padding: clamp(105px, 10vw, 160px) 0 132px;
  background: linear-gradient(155deg, #5d5d5d, #3e3e3e 65%, #373737);
  color: var(--white);
}

.service::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, transparent 7%, black 40%, transparent 100%);
}

.service .section-heading {
  grid-template-columns: 1fr;
  gap: 18px;
}

.service .section-heading__index {
  padding-top: 0;
}

.service .section-heading p {
  font-size: 24px;
}

.service .service__intro {
  margin-left: 0;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  will-change: transform;
}

.aurora--one {
  top: 24%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: #9d9d9d;
  animation: aurora-float 14s ease-in-out infinite alternate;
}

.aurora--two {
  right: -11%;
  bottom: -5%;
  width: 55vw;
  height: 55vw;
  background: #6d6d6d;
  animation: aurora-float 18s ease-in-out -5s infinite alternate-reverse;
}

@keyframes aurora-float {
  to {
    transform: translate3d(10vw, -5vw, 0) scale(1.15);
  }
}

.service__intro {
  display: grid;
  margin-top: 105px;
  margin-left: 25%;
  grid-template-columns: minmax(320px, 1.25fr) 0.75fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.service__intro > p {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.service__intro > div > p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 2;
}

.pill-link {
  display: inline-flex;
  min-width: 185px;
  height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(32, 32, 32, 0.32);
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.03em;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.pill-link:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.pill-link--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.pill-link--light:hover {
  background: var(--white);
  color: var(--ink);
}

.service-list {
  display: grid;
  margin-top: 118px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(35, 35, 35, 0.52);
  backdrop-filter: blur(16px);
  transition: transform 360ms ease, border-color 360ms ease, background 360ms ease, opacity 800ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(35, 35, 35, 0.74);
}

.service-card__orb {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.75;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__orb {
  transform: translate(-35px, 34px) scale(1.16);
}

.service-card__orb--cyan {
  background: radial-gradient(circle at 35% 35%, #dedede, #898989 45%, transparent 68%);
}

.service-card__orb--violet {
  background: radial-gradient(circle at 35% 35%, #cccccc, #707070 48%, transparent 68%);
}

.service-card__orb--amber {
  background: radial-gradient(circle at 35% 35%, #dfdfdf, #9f9f9f 48%, transparent 68%);
}

.service-card__number,
.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.service-card__number {
  display: block;
  margin-bottom: 24px;
  font-size: 13px;
  opacity: 0.55;
}

.service-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: var(--white);
}

.service-card h3 {
  max-width: 280px;
  margin-bottom: 10px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.service-card__ja {
  margin-bottom: 21px;
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.service-card__text {
  max-width: 320px;
  padding-right: 45px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.85;
}

.service-card > a {
  position: absolute;
  right: 27px;
  bottom: 27px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  place-items: center;
  transition: background 250ms ease, color 250ms ease;
}

.service-card > a:hover {
  background: var(--white);
  color: var(--ink);
}

.solutions {
  position: relative;
  overflow: hidden;
  padding: 128px 0 150px;
  background: #7a7a7a;
  color: var(--white);
}

.solutions::before,
.solutions::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(90px);
  opacity: 0.85;
}

.solutions::before {
  top: 8%;
  left: -15%;
  width: 75vw;
  height: 62vw;
  background: #9e9e9e;
}

.solutions::after {
  right: -22%;
  bottom: -4%;
  width: 78vw;
  height: 70vw;
  background: #7d7d7d;
}

.solutions__glow {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 26%;
  width: 68vw;
  height: 57vw;
  border-radius: 45%;
  background: radial-gradient(ellipse, rgba(195, 195, 195, 0.78), rgba(111, 111, 111, 0.72) 44%, rgba(122, 122, 122, 0.05) 72%);
  filter: blur(75px);
  animation: solution-glow 15s ease-in-out infinite alternate;
}

@keyframes solution-glow {
  to {
    transform: translate(-9vw, 11vw) scale(1.13);
  }
}

.solutions .section-heading {
  grid-template-columns: 1fr;
  gap: 18px;
}

.solutions .section-heading__index {
  padding-top: 0;
}

.solutions .section-heading p {
  font-size: 24px;
}

.solutions__copy {
  display: grid;
  margin: 86px 0 66px 0;
  grid-template-columns: 1fr;
  gap: 24px;
}

.solutions__copy > p {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.solutions__copy > span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 2;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 230px;
  padding: 28px;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.13);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(43, 43, 43, 0.2);
}

.product-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--ink);
}

.product-card__name h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.product-card__text {
  color: #626262;
  font-size: 14px;
  line-height: 1.75;
}

.product-card > a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  transition: transform 250ms ease, background 250ms ease;
}

.product-card > a:hover {
  transform: rotate(45deg);
  background: var(--ink);
}

.cases {
  overflow: hidden;
  padding: 135px 0 148px;
  background: #f6f6f6;
}

.cases .section-heading {
  grid-template-columns: 1fr;
  gap: 18px;
}

.cases .section-heading__index {
  padding-top: 0;
}

.cases .section-heading p {
  font-size: 24px;
}

.cases__title-row {
  display: flex;
  margin: 88px 0 70px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cases__title-row > p {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.case-track-wrap {
  width: 100%;
}

.case-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: case-marquee 38s linear infinite;
}

.case-track:hover {
  animation-play-state: paused;
}

@keyframes case-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.case-card {
  width: clamp(340px, 38vw, 590px);
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
}

.case-card__image {
  position: relative;
  height: clamp(250px, 27vw, 410px);
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card__image img {
  transform: scale(1.045);
}

.case-card__body {
  position: relative;
  min-height: 180px;
  padding: 27px 72px 30px 29px;
}

.case-card__body span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.case-card__body h3 {
  white-space: pre-line;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.case-card__body i {
  position: absolute;
  right: 26px;
  bottom: 27px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  font-style: normal;
}

.news {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 140px 0 165px;
  background: #f4f4f4;
}

.news__glow {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 215, 215, 0.55), rgba(189, 189, 189, 0.27) 44%, transparent 70%);
  filter: blur(65px);
}

.news .section-heading {
  grid-template-columns: 1fr;
  gap: 18px;
}

.news .section-heading__index {
  padding-top: 0;
}

.news .section-heading p {
  font-size: 24px;
}

.news__layout {
  display: grid;
  margin-top: 92px;
  margin-left: 0;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(65px, 10vw, 150px);
}

.news__lead > p {
  margin-bottom: 44px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

.news-item {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 25px 52px 25px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 145px 1fr;
  gap: 25px;
  align-items: center;
}

.news-item::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.news-item > * {
  position: relative;
  z-index: 1;
}

.news-item > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-item time {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.news-item > div span {
  width: max-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-item > p {
  font-size: 18px;
  line-height: 1.8;
}

.news-item > i {
  position: absolute;
  right: 14px;
  font-style: normal;
}

.join {
  position: relative;
  display: flex;
  min-height: 720px;
  overflow: hidden;
  padding: 110px var(--page-pad);
  align-items: center;
  background: #777777;
  color: var(--white);
}

.join::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 68% 50%, rgba(116, 116, 116, 0.95), transparent 34%),
    radial-gradient(circle at 86% 38%, rgba(191, 191, 191, 0.72), transparent 27%),
    radial-gradient(circle at 40% 110%, rgba(165, 165, 165, 0.8), transparent 42%);
  filter: saturate(0.88);
}

.join__noise {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

.join__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.join__content h2 {
  margin-bottom: 35px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(55px, 7.2vw, 112px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.join__content > p {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 2;
}

.join__rings {
  position: absolute;
  right: 4vw;
  bottom: -16vw;
  width: 54vw;
  height: 54vw;
  animation: rings-turn 30s linear infinite;
}

.join__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.join__rings i:nth-child(2) {
  inset: 12%;
}

.join__rings i:nth-child(3) {
  inset: 28%;
}

@keyframes rings-turn {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  margin: 18px;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a1a;
  color: var(--white);
}

.footer__cta {
  padding: clamp(60px, 7vw, 105px) clamp(30px, 7vw, 110px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__cta > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.footer__cta > a {
  display: flex;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  align-items: center;
  justify-content: space-between;
  font-size: clamp(42px, 7vw, 108px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 1;
}

.footer__cta > a i {
  font-size: clamp(30px, 4vw, 58px);
  font-style: normal;
  font-weight: 300;
  transition: transform 300ms ease;
}

.footer__cta > a:hover i {
  transform: translate(7px, -7px);
}

.footer__cta > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer__main {
  display: grid;
  min-height: 430px;
  padding: 78px clamp(30px, 7vw, 110px);
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer__brand > p {
  margin-top: 48px;
  font-size: 18px;
  font-weight: 600;
}

.footer__brand address {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__nav > div {
  display: flex;
  flex-direction: column;
}

.footer__nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 18px;
  font-style: italic;
}

.footer__nav a:hover {
  color: #bdbdbd;
}

.footer__bottom {
  display: flex;
  padding: 22px clamp(30px, 7vw, 110px) 36px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.footer__bottom > div {
  display: flex;
  gap: 28px;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  transform: translateY(34px);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 800ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

}

@media (max-width: 900px) {
  :root {
    --page-pad: 28px;
  }

  html {
    scroll-padding-top: 86px;
  }

  .site-header {
    position: absolute;
    height: 78px;
    padding: 0 23px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo__word {
    font-size: 18px;
  }

  .brand-logo__mark {
    width: 23px;
    height: 23px;
  }

  .brand-logo__mark i {
    width: 10px;
    height: 22px;
  }

  .brand-logo__mark i:last-child {
    height: 16px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 121;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 9px 4px;
    border: 0;
    flex-direction: column;
    justify-content: space-around;
    background: transparent;
  }

  .menu-button i {
    display: block;
    width: 31px;
    height: 1px;
    background: var(--ink);
    transition: transform 320ms ease, opacity 240ms ease, background 240ms ease;
  }

  .menu-button.is-open i {
    background: var(--white);
  }

  .menu-button.is-open i:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.is-open i:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open i:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: 680px;
    height: 100svh;
    max-height: 860px;
    padding: 104px 0 45px;
    justify-content: center;
  }

  .hero-grid {
    background-size: 72px 72px;
  }

  .hero__eyebrow {
    top: 100px;
    right: 24px;
    left: 24px;
    font-size: 11px;
  }

  .hero__eyebrow span:last-child {
    display: none;
  }

  .hero__title {
    display: block;
    margin-left: -0.055em;
    font-size: clamp(58px, 18vw, 105px);
    line-height: 0.98;
    white-space: normal;
  }

  .hero__title span {
    display: block;
  }

  .hero__title span:last-child {
    margin-top: 0.09em;
    margin-right: 0;
    padding-right: 18px;
    text-align: right;
    font-size: 0.82em;
  }

  .hero__bottom {
    right: 24px;
    bottom: 34px;
    left: 24px;
  }

  .hero__bottom > p {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .scroll-cue {
    font-size: 11px;
  }

  .signal-line {
    width: 220vw;
    left: 52%;
  }

  .signal-line--1 {
    transform: translate(-44%, -50%) rotate(36deg);
  }

  .signal-line--2 {
    transform: translate(-44%, -50%) rotate(-57deg);
  }

  .signal-line--3 {
    transform: translate(-45%, -50%) rotate(142deg);
  }

  .signal-line--4 {
    transform: translate(-45%, -50%) rotate(222deg);
  }

  .message {
    padding: 9px;
  }

  .message__card {
    min-height: 0;
    padding: 72px 26px 76px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .message__lead h2 {
    font-size: clamp(32px, 8.7vw, 46px);
    line-height: 1.5;
  }

  .message__body > p {
    font-size: 18px;
    line-height: 2.1;
  }

  .message__body .message__intro {
    font-size: 19px;
  }

  .desktop-only {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading__index {
    padding-top: 0;
  }

  .section-heading__index i {
    width: 120px;
  }

  .section-heading h2 {
    font-size: clamp(56px, 17vw, 90px);
  }

  .service {
    min-height: 0;
    padding: 92px 0 88px;
  }

  .service__intro {
    margin-top: 75px;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service__intro > p {
    font-size: clamp(38px, 11vw, 58px);
  }

  .service-list {
    margin-top: 72px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 390px;
    padding: 30px;
  }

  .service-card__number {
    margin-bottom: 105px;
  }

  .solutions {
    min-height: 0;
    padding: 92px 0 105px;
  }

  .solutions::before {
    width: 130vw;
    height: 130vw;
  }

  .solutions::after {
    width: 145vw;
    height: 145vw;
  }

  .solutions__glow {
    top: 36%;
    left: -35%;
    width: 180vw;
    height: 150vw;
  }

  .solutions__copy {
    margin: 64px 0 52px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solutions__copy > p {
    font-size: 29px;
  }

  .cases {
    padding: 92px 0 100px;
  }

  .cases__title-row {
    margin: 62px 0 54px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cases__title-row > p {
    font-size: clamp(33px, 9.5vw, 48px);
  }

  .case-card {
    width: 82vw;
  }

  .case-card__image {
    height: 58vw;
  }

  .case-card__body {
    min-height: 170px;
  }

  .news {
    min-height: 0;
    padding: 92px 0 105px;
  }

  .news__layout {
    margin-top: 62px;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .news__lead > p {
    font-size: 39px;
  }

  .news-item {
    min-height: 0;
    padding: 25px 36px 25px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-item > div {
    flex-direction: row;
    align-items: center;
  }

  .join {
    min-height: 680px;
    padding: 90px 28px;
  }

  .join::before {
    background: radial-gradient(circle at 75% 28%, rgba(116, 116, 116, 0.95), transparent 35%),
      radial-gradient(circle at 90% 47%, rgba(191, 191, 191, 0.68), transparent 28%),
      radial-gradient(circle at 38% 100%, rgba(165, 165, 165, 0.8), transparent 48%);
  }

  .join__content h2 {
    font-size: clamp(50px, 15vw, 82px);
  }

  .join__rings {
    right: -35vw;
    bottom: -20vw;
    width: 110vw;
    height: 110vw;
  }

  .footer {
    margin: 9px;
  }

  .footer__cta {
    padding: 65px 24px;
  }

  .footer__cta > a {
    padding-bottom: 22px;
    font-size: clamp(39px, 11vw, 64px);
    line-height: 1.08;
  }

  .footer__cta > p {
    font-size: 12px;
  }

  .footer__main {
    min-height: 0;
    padding: 65px 24px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .footer__nav a {
    font-size: 18px;
  }

  .footer__bottom {
    padding: 25px 24px 35px;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer__bottom > div {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .hero__title {
    font-size: 18.1vw;
  }

  .hero__eyebrow {
    top: 95px;
  }

  .message__card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .service-card {
    min-height: 410px;
  }

  .service-card__text {
    padding-right: 34px;
  }

  .product-card__name h3 {
    font-size: 19px;
  }
}

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

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

  .js .reveal,
  .hero-enter {
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* Multi-page detail layouts */
.site-header--dark {
  color: var(--white);
}

.site-header--dark .desktop-nav a::after {
  background: var(--white);
}

.site-header--dark .header-contact {
  border-color: rgba(255, 255, 255, 0.34);
}

.site-header--dark .menu-button i {
  background: var(--white);
}

.detail-page {
  background: #f4f4f4;
}

.detail-hero {
  position: relative;
  display: flex;
  min-height: 720px;
  height: 100svh;
  max-height: 940px;
  padding: 178px var(--page-pad) 86px;
  overflow: hidden;
  align-items: flex-end;
  background:
    radial-gradient(circle at 78% 24%, rgba(113, 113, 113, 0.32), transparent 28%),
    radial-gradient(circle at 23% 88%, rgba(152, 152, 152, 0.22), transparent 34%),
    #131313;
  color: var(--white);
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.detail-hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  margin-bottom: clamp(46px, 7vw, 94px);
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

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

.detail-hero__label {
  display: block;
  margin-bottom: 20px;
  color: #bfbfbf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.detail-hero h1 {
  max-width: 950px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(40px, 6.2vw, 94px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.detail-hero__bottom {
  display: grid;
  margin-top: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: end;
  gap: 40px;
}

.detail-hero__bottom h2 {
  font-size: clamp(24px, 3.1vw, 44px);
  font-weight: 520;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.detail-hero__bottom p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 2;
}

.detail-body {
  padding: clamp(90px, 12vw, 170px) var(--page-pad);
}

.detail-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.detail-intro {
  display: grid;
  margin-bottom: clamp(100px, 13vw, 180px);
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.detail-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.detail-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.detail-kicker--light {
  color: #c2c2c2;
}

.detail-section__title h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 470;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.detail-intro__copy h2 {
  margin-bottom: 28px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.detail-intro__copy > p {
  max-width: 720px;
  color: rgba(32, 32, 32, 0.72);
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.founder-message {
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.founder-message .founder-message__lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.founder-message .detail-intro__copy > p + p {
  margin-top: 22px;
}

.service-philosophy .service-philosophy__lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.service-philosophy .detail-intro__copy > p + p {
  margin-top: 22px;
}

.solutions-intro .solutions-intro__lead,
.custom-solution .custom-solution__lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.solutions-intro .detail-intro__copy > p + p,
.custom-solution .detail-intro__copy > p + p {
  margin-top: 22px;
}

.custom-solution .tag-list {
  margin-top: 28px;
}

.detail-section {
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.detail-section__title,
.detail-title-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 48px;
  align-items: start;
}

.detail-section__title {
  margin-bottom: 58px;
}

.detail-section__title > p {
  max-width: 590px;
  padding-top: 10px;
  color: rgba(32, 32, 32, 0.65);
  font-size: 18px;
  line-height: 2;
}

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

.detail-card {
  min-height: 320px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(32, 32, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.detail-card__number {
  display: block;
  margin-bottom: 72px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.detail-card h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 540;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.detail-card p {
  color: rgba(32, 32, 32, 0.64);
  font-size: 18px;
  line-height: 1.95;
}

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

.mvv-item {
  padding: clamp(64px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}

.mvv-item--split {
  display: grid;
  grid-template-columns: minmax(200px, 27%) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.mvv-item .section-heading {
  grid-template-columns: 1fr;
  gap: 14px;
}

.mvv-item .section-heading__index {
  padding-top: 0;
}

.mvv-item .section-heading h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.mvv-item__catch {
  margin-bottom: 20px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mvv-item__lead {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.mvv-item__text {
  max-width: 640px;
  color: rgba(32, 32, 32, 0.66);
  font-size: 16px;
  line-height: 2;
}

.mvv-value-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mvv-value-card {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 36px);
  border: 1px solid var(--blue);
}

.mvv-value-card__subtitle {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.mvv-value-card h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mvv-value-card p {
  color: rgba(32, 32, 32, 0.66);
  font-size: 15px;
  line-height: 1.9;
}

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

.service-detail,
.solution-detail {
  display: grid;
  padding: clamp(58px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px minmax(220px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
}

.service-detail__number,
.solution-detail__mark {
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.service-detail h2,
.solution-detail h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 490;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.service-detail h3,
.solution-detail h3 {
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 650;
}

.service-detail__copy > p,
.solution-detail__copy > p {
  margin-bottom: 28px;
  color: rgba(32, 32, 32, 0.68);
  font-size: 18px;
  line-height: 2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 7px 13px;
  border: 1px solid rgba(32, 32, 32, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.solution-nav {
  display: flex;
  margin-bottom: clamp(60px, 8vw, 100px);
  flex-wrap: wrap;
  gap: 10px;
}

.solution-nav__link {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: background 200ms ease, color 200ms ease;
}

.solution-nav__link span {
  color: rgba(32, 32, 32, 0.45);
  font-size: 11px;
}

.solution-nav__link:hover {
  background: var(--ink);
  color: var(--white);
}

.solution-nav__link:hover span {
  color: rgba(255, 255, 255, 0.6);
}

.solution-detail__price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.solution-detail__note {
  margin-top: 12px;
  color: rgba(32, 32, 32, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

.pricing-tiers {
  display: flex;
  margin: 20px 0 0;
  padding: 0;
  flex-direction: column;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-tiers li {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.pricing-tiers__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pricing-tiers__name small {
  color: rgba(32, 32, 32, 0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-tiers__price {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.pricing-tiers__price .regular {
  color: rgba(32, 32, 32, 0.4);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: line-through;
}

.solution-detail--support {
  padding: clamp(36px, 5vw, 56px) 0;
  background: rgba(32, 32, 32, 0.02);
}

.solution-detail--support h2 {
  font-size: 22px;
}

.solutions-notes {
  display: grid;
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.65fr 1.35fr;
  gap: 48px;
}

.solutions-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions-notes li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(32, 32, 32, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.solutions-notes li:first-child {
  padding-top: 0;
}

.service-detail--web,
.service-detail--ai,
.service-detail--dx {
  position: relative;
  overflow: hidden;
}

.service-detail__orb {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;
}

.service-detail--web .service-detail__orb {
  background: radial-gradient(circle at 35% 35%, #dedede, #898989 45%, transparent 68%);
}

.service-detail--ai .service-detail__orb {
  background: radial-gradient(circle at 35% 35%, #cccccc, #707070 48%, transparent 68%);
}

.service-detail--dx .service-detail__orb {
  background: radial-gradient(circle at 35% 35%, #dfdfdf, #9f9f9f 48%, transparent 68%);
}

.service-detail__icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue-deep);
}

.service-detail__value {
  margin-top: 8px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-detail__value h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-detail__value p {
  color: rgba(32, 32, 32, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.service-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: gap 240ms ease;
}

.service-detail__link:hover {
  gap: 14px;
}

.process-grid {
  display: grid;
  counter-reset: process;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-item {
  min-height: 230px;
  padding: 26px 22px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  counter-increment: process;
}

.process-item:first-child {
  border-left: 1px solid var(--line);
}

.process-item::before {
  display: block;
  margin-bottom: 40px;
  content: "0" counter(process);
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.4;
}

.process-item p {
  color: rgba(32, 32, 32, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px) 24px;
}

.work-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(40, 40, 40, 0.08);
}

.work-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e6e6e6;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card__image img {
  transform: scale(1.035);
}

.work-card__body {
  padding: clamp(28px, 4vw, 46px);
}

.work-card__meta {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.work-card h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 510;
  line-height: 1.36;
  letter-spacing: -0.045em;
}

.work-card__body > p {
  color: rgba(32, 32, 32, 0.64);
  font-size: 18px;
  line-height: 1.9;
}

.works-intro .works-intro__lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.works-intro .detail-intro__copy > p + p {
  margin-top: 22px;
}

.work-card__type {
  margin-bottom: 14px;
  color: rgba(32, 32, 32, 0.45);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-card__body .tag-list {
  margin: 22px 0 24px;
}

.featured-project {
  padding-bottom: clamp(60px, 8vw, 100px);
}

.featured-project__card {
  display: grid;
  overflow: hidden;
  margin-top: 40px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(40, 40, 40, 0.12);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.featured-project__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e6e6e6;
}

.featured-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-project__body {
  padding: clamp(32px, 4vw, 56px);
}

.featured-project__body h2 {
  margin-bottom: 28px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 510;
  line-height: 1.32;
  letter-spacing: -0.045em;
}

.featured-project__facts {
  display: grid;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.featured-project__facts dt {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-project__facts dd {
  margin: 0;
  color: rgba(32, 32, 32, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.featured-project__body h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-project__body > p {
  margin-bottom: 24px;
  color: rgba(32, 32, 32, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.featured-project__body .tag-list {
  margin: 8px 0 28px;
}

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

.detail-news-item {
  display: grid;
  padding: 35px 12px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 120px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 22px;
  transition: padding 300ms ease, background 300ms ease;
}

.detail-news-item:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.64);
}

.detail-news-item:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.detail-news-item time,
.detail-news-item > span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.detail-news-item > span {
  color: var(--blue);
}

.detail-news-item p {
  font-size: 18px;
  font-weight: 540;
}

.detail-news-item--featured p {
  font-size: 22px;
  font-weight: 640;
}

.detail-news-item i {
  font-style: normal;
  text-align: right;
}

.news-intro .news-intro__lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.news-intro .detail-intro__copy > p + p {
  margin-top: 22px;
}

.news-categories {
  display: flex;
  margin-bottom: 12px;
  gap: 18px;
  color: rgba(32, 32, 32, 0.4);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.news-categories .is-current {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.news-article-list {
  display: grid;
  gap: 0;
}

.news-article {
  display: grid;
  padding: clamp(36px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.news-article__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-article__meta time {
  color: rgba(32, 32, 32, 0.5);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.news-article__meta span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.news-article__body h3 {
  margin-bottom: 16px;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.news-article__body p {
  margin-bottom: 16px;
  color: rgba(32, 32, 32, 0.68);
  font-size: 16px;
  line-height: 1.9;
}

.partnership-philosophy .detail-intro__copy > p + p {
  margin-top: 22px;
}

.partnership-philosophy .partnership-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(32, 32, 32, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.who-we-work-with__other {
  margin-top: 32px;
  color: rgba(32, 32, 32, 0.55);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.collab-flow__note,
.contact-flow__note {
  margin-top: 32px;
  color: rgba(32, 32, 32, 0.5);
  font-size: 14px;
  line-height: 1.8;
}

.contact-intro .detail-intro__copy > p + p {
  margin-top: 22px;
}

.consultation-topics__more {
  display: flex;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 32px;
}

.faq-list {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.faq-list > h3 {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 650;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  margin-bottom: 8px;
  font-weight: 650;
}

.faq-item__a {
  color: rgba(32, 32, 32, 0.64);
  line-height: 1.8;
}

.privacy-notice > p {
  max-width: 720px;
  margin-bottom: 20px;
  color: rgba(32, 32, 32, 0.68);
  font-size: 16px;
  line-height: 1.9;
}

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

.company-table > div {
  display: grid;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
}

.company-table dt {
  color: rgba(32, 32, 32, 0.54);
  font-size: 14px;
  font-weight: 670;
}

.company-table dd {
  margin: 0;
  font-size: 18px;
}

.contact-panel {
  display: grid;
  padding: clamp(40px, 7vw, 92px);
  border-radius: 24px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  background: #181818;
  color: var(--white);
}

.contact-panel h2 {
  margin: 18px 0 24px;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 2;
}

.contact-options {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-option {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-option span {
  font-size: 14px;
  font-weight: 650;
}

.contact-option b {
  color: #c2c2c2;
  font-size: 18px;
  font-weight: 600;
}

.contact-form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.form-title {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

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

.form-group {
  display: flex;
  margin-bottom: 18px;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 620;
}

.form-group .req {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 18px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-group select:invalid {
  color: rgba(255, 255, 255, 0.32);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-checkbox {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--white);
}

.form-checkbox span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.form-checkbox a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.form-submit {
  margin-top: 8px;
  background: transparent;
}

.form-status {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.form-status:empty {
  display: none;
}

.form-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.8;
}

.form-note a {
  color: rgba(255, 255, 255, 0.55);
}

.form-thanks p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.9;
}

.detail-page-cta {
  padding: 0 var(--page-pad) clamp(100px, 13vw, 180px);
}

.detail-page-cta__inner {
  display: flex;
  width: min(1180px, 100%);
  min-height: 300px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px);
  border-radius: 24px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  background: linear-gradient(125deg, #4b4b4b, #4c4c4c 58%, #707070);
  color: var(--white);
}

.detail-page-cta__inner h2 {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 450;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.detail-page-cta__inner p {
  margin-top: 14px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .detail-hero {
    min-height: 620px;
    padding-top: 142px;
  }

  .detail-hero__bottom,
  .detail-intro,
  .detail-section__title,
  .detail-title-grid,
  .contact-panel,
  .mvv-item--split,
  .solutions-notes,
  .featured-project__card {
    grid-template-columns: 1fr;
  }

  .featured-project__media {
    aspect-ratio: 16 / 10;
  }

  .detail-hero__bottom {
    gap: 22px;
  }

  .detail-grid,
  .process-grid,
  .mvv-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail,
  .solution-detail {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-detail__copy,
  .solution-detail__copy {
    grid-column: 2;
  }

  .process-item:nth-child(3),
  .process-item:nth-child(5) {
    border-left: 1px solid var(--line);
  }

  .detail-news-item {
    grid-template-columns: 100px 90px minmax(0, 1fr) 20px;
  }

  .news-article {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .detail-hero {
    min-height: 570px;
    padding: 126px 24px 62px;
  }

  .breadcrumbs {
    margin-bottom: 58px;
  }

  .detail-hero h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .detail-hero__bottom p br,
  .detail-intro__copy p br {
    display: none;
  }

  .detail-body {
    padding-right: 24px;
    padding-left: 24px;
  }

  .detail-intro {
    margin-bottom: 90px;
    gap: 36px;
  }

  .detail-section,
  .founder-message {
    padding: 72px 0;
  }

  .detail-section__title,
  .detail-title-grid {
    gap: 18px;
  }

  .detail-section__title {
    margin-bottom: 38px;
  }

  .detail-grid,
  .works-grid,
  .process-grid,
  .mvv-value-grid,
  .form-row,
  .featured-project__facts,
  .collab-ways-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 280px;
  }

  .service-detail,
  .solution-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-detail__copy,
  .solution-detail__copy {
    grid-column: auto;
  }

  .process-item,
  .process-item:nth-child(3) {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .process-item::before {
    margin-bottom: 28px;
  }

  .detail-news-item {
    padding: 25px 0;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .detail-news-item > span {
    grid-column: 2;
    grid-row: 1;
  }

  .detail-news-item p {
    grid-column: 1 / -1;
  }

  .detail-news-item i {
    display: none;
  }

  .news-article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-article__meta {
    flex-direction: row;
    gap: 12px;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-page-cta {
    padding-right: 24px;
    padding-left: 24px;
  }

  .detail-page-cta__inner {
    min-height: 340px;
    align-items: flex-start;
    flex-direction: column;
  }
}
