:root {
  --text: #0d0d0f;
  --muted: #686b73;
  --line: #dfe3ea;
  --soft: #f7f8fa;
  --blue: #2385e8;
  --green: #20c778;
  --pink: #f0388b;
  --orange: #ffab18;
  --shadow: 0 18px 55px rgba(24, 31, 42, 0.08);
  --creative-gradient: linear-gradient(90deg, #2385e8, #22c7c4 33%, #f0388b 66%, #ffab18);
  --glass-bg: rgba(255, 255, 255, 0.58);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 18px 48px rgba(20, 28, 40, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1480px);
  margin: 22px auto 0;
  padding: 10px 10px 10px 24px;
  border: 1px solid rgba(223, 227, 234, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(24, 31, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: grid;
  gap: 2px;
  font-weight: 900;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  color: #5f646d;
  font-size: 10px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 28px rgba(24, 31, 42, 0.1);
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-toggle::before {
  position: absolute;
  inset: 2px 8px auto;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  content: "";
}

.nav-toggle:active {
  transform: scale(0.94);
  box-shadow: inset 0 5px 14px rgba(24, 31, 42, 0.12), 0 6px 18px rgba(24, 31, 42, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 900;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 clamp(13px, 1.35vw, 22px);
  border: 2px solid transparent;
  border-radius: 16px;
  color: #202226;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
  background: #f4f5f7;
  transform: translateY(-1px);
}

.nav a.is-current {
  border-color: #202226;
}

.nav a.is-current::after {
  display: none;
}

.nav a[href="#contact"] {
  min-width: 210px;
  justify-content: center;
  margin-left: 10px;
  padding: 0 26px;
  color: #fff;
  border-color: #202226;
  border-radius: 17px;
  background: #202020;
  box-shadow: 0 14px 30px rgba(17, 20, 24, 0.16);
}

.nav a[href="#contact"]:hover {
  background: #111;
  transform: translateY(-1px);
}

.nav a[href="#contact"]::after {
  position: absolute;
  right: 18px;
  top: 50%;
  display: block;
  width: auto;
  height: auto;
  background: none;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  content: "↗";
}

.nav a.nav-entry {
  color: #fff;
  border-color: #e60012;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 42%),
    #e60012;
  box-shadow: 0 16px 34px rgba(230, 0, 18, 0.22);
}

.nav a.nav-entry:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 42%),
    #d60011;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: end;
  width: min(100% - 96px, 1480px);
  min-height: 700px;
  margin: 0 auto;
  padding: 92px 0 108px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  z-index: 0;
  height: 1px;
  background: #111;
  opacity: 0.12;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  left: 0;
  bottom: 84px;
  z-index: 2;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: var(--creative-gradient);
  opacity: 1;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.kicker,
.section-label {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.04em;
}

.section-label::after {
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--creative-gradient);
  content: "";
}

.hero .kicker {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  letter-spacing: 0.06em;
  color: #222;
}

.hero .kicker::after {
  display: block;
  width: 42px;
  height: 1px;
  background: #111;
  content: "";
}

.hero h1 {
  margin: 0 0 38px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.22;
}

.lead {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.9;
}

.lead::after {
  display: none;
}

.hero-break {
  display: block;
}

.desktop-break {
  display: none;
}

.body-copy {
  max-width: 640px;
  margin: 0 0 48px;
  color: #222;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.mobile-hero-cta {
  display: none;
}

.button,
.mini-link,
.contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

.button {
  position: relative;
  min-height: 64px;
  padding: 0 36px;
  border-radius: 7px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button-primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 42%),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
}

.button-primary::before {
  position: absolute;
  inset: 1px auto auto 12px;
  width: 42%;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.button::after,
.contact::before {
  position: absolute;
  top: -45%;
  left: -65%;
  width: 44%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  opacity: 0;
  transform: rotate(22deg);
  transition: left 0.48s ease, opacity 0.28s ease;
  pointer-events: none;
}

.button:hover::after,
.contact:hover::before {
  left: 118%;
  opacity: 1;
}

.button:active,
.contact:active {
  transform: translateY(2px) scale(0.985);
  filter: saturate(1.08);
}

.button span,
.mini-link span,
.contact span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.button span::after,
.mini-link span::after,
.contact span::after {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
  content: "";
}

.button-ghost {
  padding: 0;
  color: #111;
}

.hero-type {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: end;
  gap: 18px;
}

.hero-type article {
  position: relative;
  min-height: 218px;
  padding: 24px 24px 28px;
  border-top: 1px solid #111;
  background: #fff;
}

.hero-type article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 24px;
  height: 1px;
  background: rgba(13, 13, 15, 0.16);
  content: "";
}

.hero-type span {
  display: block;
  margin-bottom: 54px;
  color: rgba(13, 13, 15, 0.48);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hero-type h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-type p {
  margin: 0;
  color: #4b5058;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.hero-visual-mobile {
  display: none;
}

.section {
  width: min(100% - 120px, 1320px);
  margin: 0 auto;
  padding: 38px 0;
}

.philosophy-section {
  position: relative;
  width: min(100% - 120px, 1320px);
  min-height: 520px;
  margin: 0 auto;
  padding: 92px 0 96px;
  overflow: hidden;
}

.philosophy-copy {
  position: relative;
  z-index: 1;
  width: min(880px, 74vw);
}

.philosophy-copy h2 {
  margin: 0 0 56px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.45;
}

.philosophy-copy p:not(.section-label) {
  margin: 0 0 26px;
  color: #191b20;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 2.15;
}

.philosophy-copy p span {
  display: inline;
}

.philosophy-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.philosophy-dots span {
  position: absolute;
  display: block;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--dot-color);
  opacity: 0.72;
  animation: floatDot var(--dot-speed) ease-in-out infinite alternate;
}

.philosophy-dots span:nth-child(1) {
  --dot-color: #ef321d;
  --dot-size: 38px;
  --dot-speed: 4.8s;
  top: 34px;
  left: 0;
}

.philosophy-dots span:nth-child(2) {
  --dot-color: #77d8cc;
  --dot-size: 34px;
  --dot-speed: 4.4s;
  top: 34px;
  left: 28px;
  animation-delay: -2s;
}

.philosophy-dots span:nth-child(3) {
  --dot-color: #f37528;
  --dot-size: 35px;
  --dot-speed: 5.2s;
  top: 78px;
  left: 84px;
  animation-delay: -4s;
}

.philosophy-dots span:nth-child(4) {
  --dot-color: #7a9ee8;
  --dot-size: 38px;
  --dot-speed: 4.9s;
  top: 174px;
  left: min(520px, 48%);
  animation-delay: -1.4s;
}

.philosophy-dots span:nth-child(5) {
  --dot-color: #51b548;
  --dot-size: 36px;
  --dot-speed: 5.8s;
  right: 19%;
  bottom: 88px;
  animation-delay: -3.5s;
}

.philosophy-dots span:nth-child(6) {
  --dot-color: #d36cf2;
  --dot-size: 26px;
  --dot-speed: 4.6s;
  top: 238px;
  left: 14%;
  animation-delay: -2.7s;
}

.philosophy-dots span:nth-child(7) {
  --dot-color: #ffcf24;
  --dot-size: 22px;
  --dot-speed: 5.4s;
  right: 10%;
  top: 104px;
  animation-delay: -1.9s;
}

.philosophy-dots span:nth-child(8) {
  --dot-color: #2299f2;
  --dot-size: 24px;
  --dot-speed: 4.2s;
  right: 33%;
  bottom: 42px;
  animation-delay: -3.1s;
}

@keyframes floatDot {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(34px, -24px, 0) scale(1.06);
  }
}

.service-section {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 62px;
}

.section-intro h2,
.works-head h2,
.company-info h2,
.contact-section h2 {
  margin: 0 0 20px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.4;
}

.section-intro h2 span {
  display: block;
  white-space: nowrap;
}

.section-intro p:not(.section-label),
.works-head p,
.contact-section p {
  margin: 0;
  color: #25272c;
  font-weight: 700;
}

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

.service-card {
  position: relative;
  min-height: 130px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(223, 227, 234, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px) saturate(1.28);
  -webkit-backdrop-filter: blur(14px) saturate(1.28);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--creative-gradient);
  content: "";
}

.service-card:nth-child(2n)::before {
  background: linear-gradient(90deg, #f0388b, #ffab18);
}

.service-card:nth-child(3n)::before {
  background: linear-gradient(90deg, #2385e8, #20c778);
}

.service-card:hover {
  border-color: rgba(13, 13, 15, 0.16);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card .icon {
  display: block;
  margin-bottom: 16px;
  color: #111;
}

.service-card .icon svg {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1.5px solid #111;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card .icon em {
  display: block;
  color: #565b64;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: #383b42;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.performance {
  display: grid;
  grid-template-columns: 150px repeat(5, 1fr);
  gap: 0;
  align-items: end;
  width: min(100% - 120px, 1320px);
  margin: 22px auto 44px;
  padding: 22px 0;
}

.performance .section-label {
  align-self: start;
  white-space: nowrap;
}

.performance-label {
  font-size: 12px;
  letter-spacing: 0;
}

.metric {
  min-height: 96px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.metric-visual {
  position: relative;
  display: block;
  width: 54px;
  height: 28px;
  margin: 0 auto 12px;
}

.metric-visual::before,
.metric-visual::after {
  position: absolute;
  content: "";
}

.metric-visual-people {
  background:
    radial-gradient(circle at 27px 8px, #111 0 4px, transparent 4.5px),
    radial-gradient(circle at 11px 11px, #111 0 2.6px, transparent 3px),
    radial-gradient(circle at 43px 11px, #111 0 2.6px, transparent 3px),
    radial-gradient(circle at 5px 18px, #111 0 2px, transparent 2.5px),
    radial-gradient(circle at 49px 18px, #111 0 2px, transparent 2.5px);
}

.metric-visual-people::before {
  left: 17px;
  top: 15px;
  width: 20px;
  height: 12px;
  border: 2px solid #111;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.metric-visual-people::after {
  left: 0;
  right: 0;
  bottom: 2px;
  height: 20px;
  border: 2px solid #111;
  border-top: 0;
  border-radius: 0 0 30px 30px;
  opacity: 0.36;
}

.metric-visual-views::before {
  left: 8px;
  bottom: 4px;
  width: 7px;
  height: 9px;
  background: #111;
  box-shadow:
    13px -6px 0 #111,
    26px -14px 0 #111;
}

.metric-visual-views::after {
  left: 10px;
  top: 5px;
  width: 31px;
  height: 18px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: skew(-18deg) rotate(-23deg);
}

.metric-visual-movie::before {
  left: 5px;
  top: 4px;
  width: 35px;
  height: 20px;
  border: 2px solid #111;
  border-radius: 4px;
  background: #fff;
  box-shadow:
    6px 4px 0 -2px #fff,
    6px 4px 0 0 #111,
    12px 8px 0 -2px #fff,
    12px 8px 0 0 #111;
}

.metric-visual-movie::after {
  top: 10px;
  left: 20px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #111;
}

.metric-visual-sales {
  background:
    linear-gradient(#111, #111) 33px 15px / 6px 9px no-repeat,
    linear-gradient(#111, #111) 43px 9px / 6px 15px no-repeat,
    linear-gradient(90deg, transparent 0 3px, #111 3px 6px, transparent 6px) 28px 24px / 28px 2px no-repeat;
}

.metric-visual-sales::before {
  left: 4px;
  top: 4px;
  width: 26px;
  height: 20px;
  border: 2px solid #111;
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.18);
}

.metric-visual-sales::after {
  left: 12px;
  top: 7px;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  content: "¥";
}

.metric-visual-home::before {
  left: 11px;
  top: 9px;
  width: 30px;
  height: 17px;
  border: 2px solid #111;
  border-top: 0;
}

.metric-visual-home::after {
  left: 10px;
  top: 3px;
  width: 30px;
  height: 30px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: rotate(45deg) scale(0.72);
}

.metric strong {
  display: block;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.metric strong span {
  font-size: 0.58em;
  margin-left: 0.06em;
}

.metric small {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.works-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.mini-link {
  min-width: max-content;
  font-size: 13px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.work-card {
  position: relative;
  margin: 0;
}

.work-card span {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 36px;
  height: 22px;
  padding: 0 7px;
  color: rgba(20, 24, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(10, 14, 20, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.work-card span::before {
  display: inline;
  margin: 0;
  color: rgba(20, 24, 32, 0.4);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  content: "#";
}

.work-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid #dfe3ea;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(24, 31, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.work-card:hover img {
  box-shadow: 0 18px 44px rgba(24, 31, 42, 0.14);
  transform: translateY(-3px);
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(-7px) scale(0.98);
  }

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

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .work-card img,
  .nav a,
  .philosophy-dots span,
  .contact-hero-track {
    animation: none;
    transition: none;
  }

  .service-card:hover,
  .work-card:hover img,
  .nav a {
    opacity: 1;
    transform: none;
  }
}

.work-card h3 {
  margin: 12px 0 4px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.work-card p {
  margin: 0;
  color: #343841;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.company-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.company-info dl {
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}

.company-info dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.company-info dt,
.company-info dd {
  margin: 0;
}

.company-card {
  display: grid;
  justify-items: center;
  min-height: 220px;
  padding: 0 36px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.company-card:not(.company-card-logo)::before {
  display: block;
  width: 118px;
  height: 118px;
  margin: 38px 0 18px;
  background: linear-gradient(135deg, #f1f1f1, #d8d8d8);
  content: "";
}

.company-logo {
  display: block;
  width: auto;
  height: 84px;
  margin: 38px auto 22px;
  object-fit: contain;
  object-position: center;
}

.company-logo-terasu {
  width: 96px;
  height: 84px;
}

.company-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}

.company-card p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.company-card ul {
  display: inline-grid;
  gap: 4px;
  justify-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
}

.company-card li::before {
  margin-right: 10px;
  content: "✓";
}

.recruit-entry-banner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 120px, 1320px);
  margin: 38px auto 0;
  padding: 34px 38px;
  border: 1px solid rgba(223, 227, 234, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 48%),
    #111;
  color: #fff;
  overflow: hidden;
}

.recruit-entry-banner .section-label,
.recruit-entry-banner p {
  color: #fff;
}

.recruit-entry-banner h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.recruit-entry-banner p:not(.section-label) {
  margin: 0;
  font-weight: 800;
}

.recruit-entry-banner .button-primary {
  flex: 0 0 auto;
  background: #fff;
  color: #111;
}

.recruit-section {
  position: relative;
  width: min(100% - 120px, 1320px);
  margin: 42px auto 0;
  padding: 74px 0 34px;
  overflow: hidden;
}

.recruit-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.recruit-hero {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
  min-height: 640px;
}

.recruit-hero-copy {
  position: relative;
  z-index: 2;
}

.recruit-hero h1,
.recruit-hero h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.22;
}

.recruit-hero p:not(.section-label),
.recruit-message p,
.recruit-entry p {
  margin: 0;
  color: #25272c;
  font-weight: 800;
  line-height: 2;
}

.recruit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 42px;
}

.recruit-visual {
  position: relative;
  min-height: 590px;
}

.recruit-visual::before,
.recruit-visual::after {
  position: absolute;
  z-index: 0;
  content: "";
}

.recruit-visual::before {
  right: 2%;
  bottom: 36px;
  width: 58%;
  height: 46%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(35, 133, 232, 0.18), rgba(240, 56, 139, 0.16));
}

.recruit-phrase {
  display: grid;
  align-content: center;
  min-height: 590px;
  padding: 42px 0 42px 28px;
}

.recruit-phrase::before {
  right: 0;
  bottom: 84px;
  width: 72%;
  height: 38%;
  background: linear-gradient(90deg, #2385e8, #22c7c4 32%, #f0388b 68%, #ffab18);
  opacity: 0.18;
  transform: skewY(-8deg);
}

.recruit-phrase::after {
  top: 74px;
  left: 18%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 171, 24, 0.22);
}

.recruit-visual::after {
  top: 62px;
  left: 5%;
  width: 40%;
  height: 32%;
  border-radius: 50%;
  background: rgba(255, 171, 24, 0.22);
  filter: blur(1px);
}

.recruit-phrase strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #111;
  font-size: clamp(58px, 8vw, 106px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.recruit-phrase em {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 4px solid #111;
  color: #111;
  font-size: clamp(11px, 1.2vw, 15px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.recruit-phrase .phrase-small {
  position: absolute;
  right: 8px;
  top: 56px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: #111;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.recruit-visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(480px, 78%);
  max-height: 560px;
  border: 1px solid rgba(223, 227, 234, 0.84);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 76px rgba(24, 31, 42, 0.16);
}

.recruit-visual span {
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 2;
  writing-mode: vertical-rl;
  color: #111;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.recruit-marquee {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  margin: -4px 0 74px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(13, 13, 15, 0.13);
  font-size: clamp(34px, 6vw, 82px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.recruit-block {
  width: min(920px, 100%);
  margin-bottom: 56px;
}

.recruit-message h3,
.recruit-jobs-head h3,
.recruit-entry h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 900;
  line-height: 1.45;
}

.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 80px;
}

.recruit-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 300px;
  padding: 24px 30px 28px 24px;
  border: 2px solid #111;
  border-radius: 20px;
  background:
    radial-gradient(circle at 17% 16%, rgba(255, 255, 255, 0.96) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    #f7f8fa;
  box-shadow: 8px 8px 0 #111;
  overflow: hidden;
}

.recruit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  background: linear-gradient(90deg, #2385e8, #22c7c4 34%, #f0388b 68%, #ffab18);
  content: "";
}

.recruit-card::after {
  position: absolute;
  right: 20px;
  top: 28px;
  color: rgba(13, 13, 15, 0.08);
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  content: attr(data-index);
  pointer-events: none;
}

.recruit-card-remote {
  background:
    radial-gradient(circle at 17% 16%, rgba(255, 255, 255, 0.96) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(239, 249, 255, 0.98), rgba(255, 255, 255, 0.82)),
    #eaf7ff;
}

.recruit-card-freedom {
  background:
    radial-gradient(circle at 17% 16%, rgba(255, 255, 255, 0.96) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(255, 249, 232, 0.98), rgba(255, 255, 255, 0.82)),
    #fff4d8;
}

.recruit-card-people {
  background:
    radial-gradient(circle at 17% 16%, rgba(255, 255, 255, 0.96) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(255, 240, 247, 0.98), rgba(255, 255, 255, 0.82)),
    #fff0f7;
}

.recruit-card-team {
  background:
    radial-gradient(circle at 17% 16%, rgba(255, 255, 255, 0.96) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(239, 255, 246, 0.98), rgba(255, 255, 255, 0.82)),
    #eafff2;
}

.recruit-card-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 218px;
  border: 2px solid #111;
  border-radius: 26px;
  background:
    linear-gradient(#111 0 0) top 16px center / 42px 4px no-repeat,
    linear-gradient(180deg, #fff 0 78%, rgba(35, 133, 232, 0.12) 78% 100%);
  box-shadow: inset 0 -14px 0 rgba(13, 13, 15, 0.05);
}

.recruit-card-visual::before,
.recruit-card-visual::after,
.recruit-card-visual i {
  position: absolute;
  display: block;
  content: "";
}

.recruit-card-visual::before {
  left: 18px;
  top: 46px;
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background: #111;
  opacity: 0.08;
}

.recruit-card-visual::after {
  right: 20px;
  bottom: 18px;
  width: 82px;
  height: 10px;
  border-radius: 999px;
  background: var(--creative-gradient);
}

.visual-phone {
  left: 50%;
  top: 58px;
  width: 76px;
  height: 106px;
  border: 3px solid #111;
  border-radius: 18px;
  background: #fff;
  transform: translateX(-50%) rotate(-5deg);
}

.visual-phone::before {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 18px;
  height: 10px;
  border-radius: 999px;
  background: #2385e8;
  content: "";
}

.visual-phone::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 22px;
  border-radius: 6px;
  background: #f0388b;
  content: "";
}

.visual-home {
  right: 28px;
  top: 74px;
  width: 58px;
  height: 46px;
  border: 3px solid #111;
  border-top: 0;
  background: #fff4d8;
  transform: rotate(5deg);
}

.visual-home::before {
  position: absolute;
  left: 5px;
  top: -23px;
  width: 34px;
  height: 34px;
  border-top: 3px solid #111;
  border-left: 3px solid #111;
  background: #fff4d8;
  content: "";
  transform: rotate(45deg);
}

.visual-dot {
  left: 34px;
  bottom: 54px;
  width: 34px;
  height: 34px;
  border: 3px solid #111;
  border-radius: 50%;
  background: #22c7c4;
}

.visual-clock {
  left: 50%;
  top: 58px;
  width: 104px;
  height: 104px;
  border: 4px solid #111;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.visual-clock::before {
  position: absolute;
  left: 48px;
  top: 22px;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: #111;
  content: "";
}

.visual-clock::after {
  position: absolute;
  left: 50px;
  top: 52px;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #111;
  content: "";
  transform: rotate(22deg);
  transform-origin: left center;
}

.visual-check {
  right: 26px;
  top: 80px;
  width: 54px;
  height: 34px;
  border-left: 8px solid #20c778;
  border-bottom: 8px solid #20c778;
  transform: rotate(-45deg);
}

.visual-line {
  left: 26px;
  bottom: 58px;
  width: 86px;
  height: 18px;
  border-radius: 999px;
  background: #ffab18;
  transform: rotate(-8deg);
}

.visual-face {
  width: 68px;
  height: 68px;
  border: 3px solid #111;
  border-radius: 50%;
  background: #fff;
}

.visual-face::before {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
  box-shadow: 24px 0 0 #111;
  content: "";
}

.visual-face::after {
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 22px;
  height: 10px;
  border-bottom: 3px solid #111;
  border-radius: 0 0 999px 999px;
  content: "";
}

.face-one {
  left: 28px;
  top: 70px;
  background: #dff4ff;
}

.face-two {
  left: 88px;
  top: 54px;
  background: #ffe2ef;
}

.face-three {
  right: 34px;
  top: 88px;
  background: #fff4c7;
}

.visual-play {
  left: 30px;
  top: 68px;
  width: 86px;
  height: 58px;
  border: 3px solid #111;
  border-radius: 14px;
  background: #fff;
}

.visual-play::before {
  position: absolute;
  left: 34px;
  top: 16px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #2385e8;
  content: "";
}

.visual-code {
  right: 28px;
  top: 64px;
  width: 80px;
  height: 68px;
  border: 3px solid #111;
  border-radius: 16px;
  background: #fff;
}

.visual-code::before {
  position: absolute;
  left: 12px;
  top: 22px;
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  content: "<>";
}

.visual-pen {
  left: 70px;
  bottom: 48px;
  width: 90px;
  height: 16px;
  border: 3px solid #111;
  border-radius: 999px;
  background: #f0388b;
  transform: rotate(-12deg);
}

.recruit-card span,
.job-row span,
.recruit-flow span {
  display: inline-block;
  margin-bottom: 18px;
  color: #686b73;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recruit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.42;
}

.recruit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #343841;
  font-size: 14px;
  font-weight: 800;
}

.recruit-jobs {
  margin-bottom: 72px;
}

.recruit-jobs-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.job-row {
  display: grid;
  grid-template-columns: 82px 1fr 1fr 34px;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.job-row:last-child {
  border-bottom: 1px solid var(--line);
}

.job-row::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.job-row span {
  margin: 0;
}

.job-row strong {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.4;
}

.job-row em {
  color: #565b64;
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}

.recruit-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.recruit-flow article {
  min-height: 152px;
  padding: 24px;
  border: 1px solid rgba(223, 227, 234, 0.9);
  border-radius: 8px;
  background: #fff;
}

.recruit-flow h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.recruit-entry {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 42%),
    #111;
}

.recruit-entry .section-label,
.recruit-entry p {
  color: #fff;
}

.recruit-entry .button-primary {
  flex: 0 0 auto;
  background: #fff;
  color: #111;
}

.contact-section {
  position: relative;
  width: min(100% - 120px, 1320px);
  margin: 0 auto;
  padding: 44px 0 70px;
  overflow: hidden;
}

.contact-hero {
  position: relative;
  width: min(760px, 100%);
  min-height: 0;
  margin: 0 auto 18px;
  padding: 0;
  color: #111;
  overflow: visible;
}

.contact-hero::before {
  position: absolute;
  top: 62px;
  right: -42px;
  z-index: 0;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(108, 196, 230, 0.24);
  content: "";
}

.contact-hero::after {
  position: absolute;
  top: 16px;
  left: -30px;
  z-index: 0;
  width: 72px;
  height: 72px;
  background: rgba(248, 212, 109, 0.45);
  clip-path: polygon(50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
  content: "";
}

.contact-hero-track {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  color: rgba(108, 196, 230, 0.13);
  font-size: clamp(78px, 9vw, 132px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  animation: contactSlide 18s linear infinite;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 38px 28px 24px;
  text-align: center;
}

.contact-hero .section-label {
  margin-bottom: 16px;
  color: #111;
}

.contact-hero .section-label::after {
  background: var(--creative-gradient);
}

.contact-hero h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.3;
}

@keyframes contactSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-68%);
  }
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(760px, 100%);
  margin: 0 auto 22px;
}

.contact-buttons-single {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}

.mail-form,
.mail-contact {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(223, 227, 234, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(24, 31, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.mail-contact {
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.mail-form::before,
.mail-contact::before {
  position: absolute;
  top: -34px;
  right: -42px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(108, 196, 230, 0.2);
  content: "";
}

.mail-form::after,
.mail-contact::after {
  position: absolute;
  right: 34px;
  top: 0;
  width: 118px;
  height: 4px;
  border-radius: 999px;
  background: var(--creative-gradient);
  content: "";
}

.mail-form h3,
.mail-contact h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.mail-contact h3 {
  grid-column: auto;
}

.form-guide {
  grid-column: 1 / -1;
  margin: -2px 0 6px;
  color: #686b73;
  font-size: 12px;
  font-weight: 800;
}

.mail-contact .form-guide {
  grid-column: auto;
  margin: 0 0 12px;
}

.mail-address {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  color: #111;
  border-bottom: 2px solid #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.mail-contact .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.mail-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
}

.dynamic-form label[data-step] {
  position: relative;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.dynamic-form label[data-step]:focus-within {
  opacity: 1;
  transform: translateY(-2px);
}

.dynamic-form label[data-step].is-complete span::after {
  margin-left: 6px;
  color: #20c778;
  content: "✓";
}

.mail-form input,
.mail-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.mail-form textarea {
  min-height: 160px;
  resize: vertical;
}

.mail-form .message-field,
.mail-form button,
.mail-form p {
  grid-column: 1 / -1;
}

.mail-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  justify-self: start;
  min-height: 54px;
  padding: 0 28px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: #050505;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.mail-form button:disabled {
  cursor: progress;
  opacity: 0.66;
}

.mail-form button span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.mail-form button span::after {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
  content: "";
}

.mail-form p {
  min-height: 1.5em;
  margin: 0;
  color: #555a63;
  font-size: 12px;
  font-weight: 800;
}

.contact {
  position: relative;
  justify-content: center;
  min-height: 78px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(24, 31, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.contact i {
  position: relative;
  z-index: 1;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
}

.contact i::before,
.contact i::after {
  display: block;
  content: "";
}

.line i::before {
  width: 25px;
  height: 21px;
  border-radius: 12px;
  background: #fff;
}

.line i::after {
  position: absolute;
  right: 4px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.instagram i::before {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.instagram i::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 7px -7px 0 -4px #fff;
}

.contact::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04) 46%),
    var(--contact-bg);
  content: "";
}

.contact:hover {
  box-shadow: 0 24px 58px rgba(24, 31, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  transform: translateY(-2px);
}

.line {
  --contact-bg: linear-gradient(135deg, rgba(32, 214, 108, 0.88), rgba(22, 188, 118, 0.78));
  background: rgba(32, 214, 108, 0.34);
}

.instagram {
  --contact-bg: linear-gradient(135deg, rgba(171, 63, 229, 0.86), rgba(255, 49, 94, 0.78));
  background: rgba(171, 63, 229, 0.28);
}

.mail {
  --contact-bg: linear-gradient(135deg, rgba(33, 126, 232, 0.86), rgba(36, 143, 255, 0.78));
  background: rgba(33, 126, 232, 0.28);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 38px;
  align-items: center;
  padding: 42px max(60px, calc((100vw - 1320px) / 2));
  background: var(--soft);
}

.footer strong {
  font-size: 20px;
  font-weight: 900;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 10vw, 184px);
  margin-bottom: 14px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer p,
.footer small,
.footer a {
  margin: 0;
  color: #535862;
  font-size: 12px;
  font-weight: 800;
}

.footer nav {
  display: flex;
  gap: 22px;
}

.policy-page {
  max-width: 920px;
  padding: 86px 0 96px;
}

.policy-page h1 {
  margin: 0 0 30px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
}

.policy-page h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.policy-page p,
.policy-page dl {
  margin: 0;
  color: #25272c;
  font-weight: 800;
}

.policy-page dl {
  border-top: 1px solid var(--line);
}

.policy-page dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.policy-page dt,
.policy-page dd {
  margin: 0;
}

.company-page-main {
  overflow: hidden;
}

.columns-page-main {
  overflow: hidden;
}

.company-page-hero,
.company-page-message,
.company-profile-section,
.company-domain-section,
.columns-hero,
.column-categories,
.column-list-section {
  width: min(100% - 96px, 1480px);
  margin: 0 auto;
}

.company-page-hero,
.columns-hero {
  min-height: 560px;
  padding: 102px 0 84px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
}

.columns-hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(420px, 0.75fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: end;
}

.company-page-hero h1,
.columns-hero h1 {
  max-width: 1080px;
  margin: 0 0 48px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.24;
}

.company-page-hero p:not(.section-label),
.columns-hero p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #24282f;
  font-size: 18px;
  font-weight: 800;
  line-height: 2.05;
}

.company-page-message {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 112px);
  padding: 76px 0;
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
}

.company-page-message h2,
.company-profile-head h2,
.company-domain-section h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.38;
}

.company-page-message p {
  margin: 0;
  color: #2b3038;
  font-size: 16px;
  font-weight: 800;
  line-height: 2.05;
}

.company-profile-section {
  padding: 76px 0 86px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
}

.company-profile-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

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

.company-profile-card {
  display: grid;
  min-height: 620px;
  padding: 34px;
  border: 1px solid rgba(13, 13, 15, 0.18);
  border-radius: 8px;
  background: #fff;
}

.company-profile-logo {
  display: grid;
  place-items: center;
  height: 150px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.14);
}

.company-profile-logo img {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.company-profile-logo-terasu img {
  height: 92px;
}

.company-profile-card h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
}

.company-profile-card > p {
  margin: 4px 0 30px;
  color: #6b7078;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-profile-card dl {
  margin: 0 0 28px;
  border-top: 1px solid rgba(13, 13, 15, 0.16);
}

.company-profile-card dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.company-profile-card dt,
.company-profile-card dd {
  margin: 0;
}

.company-profile-card dt {
  color: #70757e;
}

.company-profile-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: #2b3038;
  font-size: 14px;
  font-weight: 800;
}

.company-profile-card li {
  position: relative;
  padding-left: 18px;
}

.company-profile-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--creative-gradient);
  content: "";
}

.company-domain-section {
  padding: 78px 0 108px;
}

.company-domain-section h2 {
  max-width: 960px;
  margin-bottom: 40px;
}

.company-domain-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #111;
}

.company-domain-list article {
  min-height: 250px;
  padding: 24px 22px 28px;
  border-right: 1px solid rgba(13, 13, 15, 0.16);
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
}

.company-domain-list article:last-child {
  border-right: 0;
}

.company-domain-list span {
  display: block;
  margin-bottom: 62px;
  color: rgba(13, 13, 15, 0.48);
  font-size: 12px;
  font-weight: 900;
}

.company-domain-list h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.company-domain-list p {
  margin: 0;
  color: #4c525b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
}

.column-categories,
.column-list-section {
  padding: 76px 0 86px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
}

.column-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.column-section-head h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.28;
}

.column-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  border-top: 1px solid rgba(13, 13, 15, 0.16);
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
  overflow-x: auto;
}

.column-category-grid article {
  min-height: 280px;
  padding: 26px 22px;
  border-right: 1px solid rgba(13, 13, 15, 0.16);
}

.column-category-grid article:last-child {
  border-right: 0;
}

.column-category-grid span,
.column-card span {
  color: rgba(34, 34, 34, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.column-category-grid h3 {
  margin: 62px 0 18px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.34;
}

.column-category-grid p,
.column-card p {
  margin: 0;
  color: #333841;
  font-weight: 800;
  line-height: 1.82;
}

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

.column-card {
  display: grid;
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(13, 13, 15, 0.16);
  border-radius: 8px;
  background: #fff;
}

.column-card time {
  color: #222;
  font-size: 13px;
  font-weight: 900;
}

.column-card h3 {
  margin: 54px 0 20px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-header {
    width: min(100% - 32px, 1060px);
    padding-left: 18px;
  }

  .brand small {
    display: none;
  }

  .nav a {
    min-height: 50px;
    padding: 0 12px;
    font-size: 12px;
  }

  .nav a[href="#contact"] {
    min-width: 142px;
    padding: 0 22px;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.92fr) minmax(360px, 1.08fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-type {
    gap: 14px;
  }

  .hero-type article {
    min-height: 190px;
    padding: 20px 18px 22px;
  }

  .lead {
    font-size: 16px;
  }

  .company-page-hero h1 {
    font-size: 56px;
  }

  .company-page-message {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .company-page-message h2,
  .company-profile-head h2,
  .company-domain-section h2 {
    font-size: 38px;
  }

  .company-profile-card {
    padding: 26px;
  }

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

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

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .performance {
    grid-template-columns: 120px repeat(5, minmax(0, 1fr));
  }

  .metric {
    padding: 0 10px;
  }

  .metric strong {
    font-size: 26px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .philosophy-section,
  .section,
  .recruit-entry-banner,
  .recruit-section,
  .performance,
  .contact-section {
    width: min(100% - 44px, 900px);
  }

  .site-header {
    position: static;
    gap: 22px;
    width: 100%;
    padding: 24px 22px 18px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav {
    gap: 22px;
    padding-top: 7px;
    overflow-x: auto;
    font-size: 12px;
  }

  .nav a {
    display: inline-block;
    min-height: 0;
    padding: 0 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav a:hover {
    background: transparent;
    transform: none;
  }

  .nav a.is-current::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 2px;
    background: #111;
    content: "";
  }

  .nav a[href="#contact"] {
    display: block;
    min-height: auto;
    width: auto;
    min-width: 0;
    justify-content: flex-start;
    margin-left: 0;
    padding: 12px 14px;
    color: rgba(18, 22, 28, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
      rgba(247, 248, 250, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 8px 20px rgba(24, 31, 42, 0.05);
  }

  .nav a[href="#contact"]::after {
    display: none;
  }

  .nav a.nav-entry {
    color: #fff;
    border-color: #e60012;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 42%),
      #e60012;
    box-shadow: 0 12px 26px rgba(230, 0, 18, 0.2);
  }

  .hero {
    position: relative;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .hero::before {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    top: 44px;
    bottom: auto;
    z-index: 0;
    width: 100%;
    height: 1px;
    background: #111;
    opacity: 0.12;
    content: "";
    pointer-events: none;
  }

  .hero-type {
    margin-top: 42px;
  }

  .hero-type article {
    min-height: 172px;
  }

  .service-section,
  .philosophy-section,
  .recruit-hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .company-page-hero,
  .company-page-message,
  .company-profile-section,
  .company-domain-section {
    width: min(100% - 44px, 900px);
  }

  .company-page-hero {
    min-height: 0;
    padding: 66px 0 58px;
  }

  .company-page-hero h1 {
    font-size: 46px;
  }

  .company-page-message {
    grid-template-columns: 1fr;
    padding: 54px 0;
  }

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

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

  .recruit-section {
    padding-top: 54px;
  }

  .recruit-hero {
    min-height: 0;
  }

  .recruit-visual {
    min-height: 460px;
  }

  .recruit-cards {
    grid-template-columns: 1fr;
  }

  .job-row {
    grid-template-columns: 64px 1fr 28px;
  }

  .job-row em {
    grid-column: 2;
  }

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

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

  .performance {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .performance .section-label {
    grid-column: 1 / -1;
  }

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

  .contact-buttons,
  .company-section {
    grid-template-columns: 1fr 1fr;
  }

  .recruit-entry-banner {
    align-items: flex-start;
  }

  .mail-form,
  .mail-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    width: 100%;
    margin: 0;
    padding: 18px 22px 16px;
    border-bottom: 1px solid #e8ebef;
    background: rgba(250, 251, 252, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 28px rgba(24, 31, 42, 0.05);
    backdrop-filter: blur(14px) saturate(1.18);
    -webkit-backdrop-filter: blur(14px) saturate(1.18);
    overflow: hidden;
    transition: background 0.24s ease, box-shadow 0.24s ease;
  }

  .site-header.is-menu-open {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 16px 42px rgba(24, 31, 42, 0.1);
  }

  .site-header::after {
    position: absolute;
    right: 22px;
    bottom: 0;
    width: 76px;
    height: 2px;
    background: linear-gradient(90deg, #2385e8, #f0388b);
    content: "";
    transition: width 0.26s ease, right 0.26s ease;
  }

  .site-header.is-menu-open::after {
    right: 22px;
    width: calc(100% - 44px);
  }

  .brand {
    position: relative;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .brand span {
    width: max-content;
    color: #171a20;
    background: none;
  }

  .brand small {
    color: rgba(38, 43, 52, 0.68);
    font-size: 10px;
    font-weight: 800;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 0 4px;
    overflow: visible;
    border-top: 1px solid rgba(223, 227, 234, 0.75);
    border-bottom: 0;
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    position: relative;
    padding: 12px 14px;
    color: rgba(18, 22, 28, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
      rgba(247, 248, 250, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 8px 20px rgba(24, 31, 42, 0.05);
    font-size: 13px;
    letter-spacing: 0.02em;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-7px) scale(0.98);
    animation: menuItemIn 0.36s ease forwards;
  }

  .nav a::before {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--creative-gradient);
    content: "";
    transform: translateY(-50%);
    opacity: 0.6;
  }

  .nav a.nav-entry {
    color: #fff;
    border-color: #e60012;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 44%),
      #e60012;
    box-shadow: 0 12px 28px rgba(230, 0, 18, 0.22);
  }

  .nav a.nav-entry::before {
    background: #fff;
    opacity: 0.78;
  }

  .nav a:nth-child(2) {
    animation-delay: 0.04s;
  }

  .nav a:nth-child(3) {
    animation-delay: 0.08s;
  }

  .nav a:nth-child(4) {
    animation-delay: 0.12s;
  }

  .nav a:nth-child(5) {
    animation-delay: 0.16s;
  }

  .nav a:nth-child(6) {
    animation-delay: 0.2s;
  }

  .nav a.is-current::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 54px;
    align-items: stretch;
  }

  .hero::before {
    top: 28px;
    bottom: auto;
    width: 100%;
    height: 1px;
    background: #111;
    opacity: 0.12;
  }

  .hero::after {
    right: auto;
    bottom: 34px;
    left: 92px;
    width: 104px;
    height: 4px;
    opacity: 0.9;
  }

  .hero .kicker {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero-copy {
    display: block;
    min-height: 0;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 22px;
    line-height: 1.36;
  }

  .lead {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 0;
    padding-bottom: 30px;
  }

  .body-copy {
    display: none;
  }

  .hero-break {
    display: block;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .button-ghost {
    justify-content: flex-start;
    min-height: auto;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .hero-type {
    grid-template-columns: 1fr;
    margin-top: 34px;
    gap: 0;
    border-bottom: 1px solid rgba(13, 13, 15, 0.16);
  }

  .hero-type article {
    min-height: 0;
    padding: 18px 0 20px;
  }

  .hero-type article::after {
    left: 0;
  }

  .hero-type span {
    margin-bottom: 16px;
  }

  .hero-type h2 {
    font-size: 18px;
  }

  .hero-type p {
    font-size: 12px;
  }

  .philosophy-section {
    width: min(100% - 44px, 900px);
    min-height: 0;
    padding: 54px 0 74px;
  }

  .philosophy-copy {
    z-index: 1;
    width: 100%;
  }

  .philosophy-copy h2 {
    margin-bottom: 28px;
    font-size: 30px;
    line-height: 1.42;
  }

  .philosophy-copy p:not(.section-label) {
    font-size: 14px;
    line-height: 2;
  }

  .philosophy-dots span:nth-child(1) {
    --dot-size: 26px;
    top: 18px;
    left: -8px;
  }

  .philosophy-dots span:nth-child(2) {
    --dot-size: 24px;
    top: 20px;
    left: 12px;
  }

  .philosophy-dots span:nth-child(3) {
    --dot-size: 24px;
    top: 52px;
    left: 56px;
  }

  .philosophy-dots span:nth-child(4) {
    --dot-size: 18px;
    top: 118px;
    right: auto;
    left: auto;
    right: -4px;
  }

  .philosophy-dots span:nth-child(5) {
    --dot-size: 26px;
    right: 42px;
    bottom: 30px;
  }

  .philosophy-dots span:nth-child(6) {
    --dot-size: 14px;
    top: auto;
    bottom: 28px;
    left: -4px;
  }

  .philosophy-dots span:nth-child(7) {
    --dot-size: 16px;
    right: 4%;
    top: 70px;
  }

  .philosophy-dots span:nth-child(8) {
    --dot-size: 18px;
    right: 24%;
    bottom: -2px;
  }

  .works-grid,
  .recruit-cards,
  .recruit-flow,
  .contact-buttons,
  .footer {
    grid-template-columns: 1fr;
  }

  .recruit-section {
    margin-top: 20px;
    padding: 48px 0 24px;
  }

  .recruit-entry-banner {
    display: grid;
    gap: 22px;
    margin-top: 28px;
    padding: 26px 18px;
  }

  .recruit-hero {
    gap: 22px;
  }

  .recruit-hero h1,
  .recruit-hero h2 {
    font-size: clamp(36px, 11vw, 44px);
  }

  .recruit-hero p:not(.section-label),
  .recruit-message p,
  .recruit-entry p {
    font-size: 13px;
    line-height: 1.9;
  }

  .recruit-actions {
    gap: 16px;
    margin-top: 28px;
  }

  .recruit-visual {
    min-height: 330px;
  }

  .recruit-visual img {
    width: min(280px, 72%);
    max-height: 320px;
  }

  .recruit-visual span {
    top: 22px;
    font-size: 48px;
  }

  .recruit-marquee {
    margin: 18px 0 46px;
    font-size: 38px;
  }

  .recruit-message h3,
  .recruit-jobs-head h3,
  .recruit-entry h3 {
    font-size: 28px;
  }

  .recruit-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px 18px 24px;
    gap: 18px;
    box-shadow: 6px 6px 0 #111;
  }

  .recruit-card-visual {
    min-height: 178px;
  }

  .recruit-jobs-head {
    display: block;
  }

  .job-row {
    grid-template-columns: 46px 1fr 18px;
    gap: 12px;
    min-height: 116px;
  }

  .job-row strong {
    font-size: 17px;
  }

  .job-row em {
    font-size: 11px;
  }

  .recruit-flow article {
    min-height: 112px;
    padding: 18px;
  }

  .recruit-entry {
    display: grid;
    gap: 22px;
    padding: 26px 18px;
  }

  .contact-section {
    padding: 34px 0 54px;
  }

  .contact-hero {
    margin-bottom: 12px;
  }

  .contact-hero::before {
    top: 60px;
    right: -32px;
    left: auto;
    width: 84px;
    height: 84px;
  }

  .contact-hero::after {
    top: 22px;
    right: auto;
    left: -18px;
    width: 42px;
    height: 42px;
  }

  .contact-hero-track {
    top: 48px;
    gap: 44px;
    font-size: 58px;
  }

  .contact-hero-copy {
    min-height: auto;
    padding: 30px 18px 20px;
  }

  .contact-hero h2 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(26px, 8vw, 30px);
    line-height: 1.25;
    white-space: nowrap;
  }

  .mail-form,
  .mail-contact {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .mail-contact {
    gap: 20px;
  }

  .mail-address {
    font-size: 15px;
  }

  .form-guide {
    font-size: 11px;
  }

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

  .service-card {
    min-height: 0;
    padding: 18px 14px 16px;
  }

  .service-card .icon {
    width: auto;
    height: auto;
    margin-bottom: 12px;
  }

  .service-card .icon svg {
    top: 16px;
    right: 14px;
    width: 30px;
    height: 30px;
    padding: 5px;
  }

  .service-card .icon em {
    font-size: 10px;
  }

  .service-card h3 {
    font-size: 14px;
    line-height: 1.45;
  }

  .service-card p {
    font-size: 11px;
    line-height: 1.65;
  }

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

  .company-info {
    grid-column: 1 / -1;
  }

  .works-head {
    display: block;
  }

  .works-head .mini-link {
    margin-top: 18px;
  }

  .performance {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
    padding: 8px 0 20px;
  }

  .performance .section-label {
    grid-column: 1;
    margin-bottom: 8px;
  }

  .metric,
  .metric:last-child {
    grid-column: 1;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.54)),
      rgba(247, 248, 250, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 10px 24px rgba(24, 31, 42, 0.06);
    backdrop-filter: blur(12px) saturate(1.22);
    -webkit-backdrop-filter: blur(12px) saturate(1.22);
    text-align: left;
  }

  .metric:nth-of-type(even) {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64)),
      rgba(255, 255, 255, 0.72);
  }

  .metric strong,
  .metric:last-child strong {
    order: 3;
    flex: 0 0 auto;
    font-size: 28px;
  }

  .metric-visual {
    display: none;
  }

  .metric small,
  .metric:last-child small {
    order: 1;
    margin-top: 0;
    color: #3c4048;
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
  }

  .company-card {
    min-height: 0;
    padding: 16px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
      rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 12px 28px rgba(24, 31, 42, 0.06);
    backdrop-filter: blur(12px) saturate(1.18);
    -webkit-backdrop-filter: blur(12px) saturate(1.18);
    text-align: center;
  }

  .company-logo {
    max-width: 100%;
    height: 38px;
    margin: 0 auto 12px;
    object-position: center;
  }

  .company-logo-terasu {
    width: 46px;
    height: 38px;
  }

  .company-card h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .company-card p {
    margin-bottom: 14px;
    font-size: 10px;
    color: #686b73;
  }

  .company-card ul {
    display: grid;
    gap: 7px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 10px;
    line-height: 1.55;
  }

  .company-card li::before {
    display: none;
  }

  .footer {
    padding: 34px 22px;
    text-align: center;
    justify-items: center;
  }

  .policy-page {
    padding: 52px 0 64px;
  }

  .policy-page dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-page-hero,
  .company-page-message,
  .company-profile-section,
  .company-domain-section {
    width: min(100% - 44px, 900px);
  }

  .company-page-hero {
    min-height: 0;
    padding: 50px 0 44px;
  }

  .company-page-hero h1 {
    margin-bottom: 28px;
    font-size: 34px;
    line-height: 1.34;
  }

  .company-page-hero p:not(.section-label),
  .company-page-message p {
    font-size: 14px;
    line-height: 1.95;
  }

  .company-page-message,
  .company-profile-section,
  .company-domain-section {
    padding: 48px 0;
  }

  .company-page-message {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .company-page-message h2,
  .company-profile-head h2,
  .company-domain-section h2 {
    font-size: 30px;
  }

  .company-profile-head {
    display: block;
  }

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

  .company-profile-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .company-profile-card h3 {
    font-size: 28px;
  }

  .company-profile-card dl div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    font-size: 13px;
  }

  .company-domain-list article {
    min-height: 0;
    padding: 22px 0 24px;
    border-right: 0;
  }

  .company-domain-list span {
    margin-bottom: 22px;
  }

  .footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 30px;
  }

  .lead {
    font-size: 13px;
  }

  .hero::before {
    right: 0;
    top: 28px;
    bottom: auto;
    width: 100%;
    height: 1px;
  }

  .hero .kicker {
    display: none;
  }

  .hero-type h2 {
    font-size: 17px;
  }
}

@media (max-width: 680px) {
  .hero .hero-actions {
    display: none !important;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-copy {
    display: block;
  }

  .mobile-hero-cta {
    display: block;
    width: min(100% - 44px, 900px);
    margin: 0 auto 18px;
    position: relative;
    z-index: 5;
  }
}

/* NewsPicks Brand Design inspired editorial tone system */
:root {
  --np-text: #222;
  --np-muted: #565b63;
  --np-line: rgba(34, 34, 34, 0.16);
  --np-soft: #f2f2f2;
  --np-blue: #176fff;
}

body {
  color: var(--np-text);
  background: #fff;
  font-family: "Yu Gothic Pr6N D", "Yu Gothic Pr6N", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  main > section,
  main > .mobile-hero-cta,
  .footer {
    scroll-margin-top: 118px;
  }
}

.site-header {
  top: 22px;
  width: min(100% - 96px, 1480px);
  min-height: 74px;
  margin-top: 24px;
  padding: 8px 16px 8px 26px;
  border-color: rgba(34, 34, 34, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.brand {
  font-size: 25px;
  font-weight: 900;
}

.brand small {
  color: var(--np-muted);
  font-size: 10px;
}

.nav {
  gap: 10px;
  font-size: 13px;
}

.nav a {
  min-height: 48px;
  padding: 0 15px;
  border-width: 1px;
  border-radius: 14px;
  color: var(--np-text);
}

.nav a:hover {
  background: var(--np-soft);
}

.nav a[href="#contact"],
.nav a[href="index.html#contact"],
.nav a.nav-entry {
  min-width: 148px;
  border-color: #1f1f1f;
  border-radius: 6px;
  color: #fff;
  background: #1f1f1f;
  box-shadow: none;
}

.nav a.nav-entry {
  border-color: #e60012;
  background: #e60012;
}

.section-label,
.kicker {
  color: var(--np-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-label::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--np-blue);
  content: "";
}

.section-label::after {
  width: 28px;
  height: 2px;
  background: #ff6b4a;
}

.hero {
  grid-template-columns: minmax(540px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(60px, 8vw, 136px);
  min-height: 720px;
  padding: 108px 0 96px;
}

.hero h1 {
  font-size: 56px;
}

.button-primary,
.contact::after {
  background: #1f1f1f;
}

.button-primary {
  border-color: #1f1f1f;
}

.button-primary::before,
.button::after,
.contact::before {
  display: none;
}

.hero-type {
  gap: 14px;
}

.hero-type article {
  min-height: 230px;
  border-top: 1px solid #222;
}

.philosophy-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1fr);
  gap: clamp(56px, 8vw, 128px);
  min-height: 0;
  padding: 106px 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.philosophy-dots {
  position: relative;
  inset: auto;
  display: block;
  min-height: 420px;
  border: 1px solid var(--np-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.08), rgba(34, 34, 34, 0.02)),
    var(--np-soft);
  overflow: hidden;
}

.philosophy-dots::before {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 72%;
  color: rgba(34, 34, 34, 0.88);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  white-space: pre;
  content: "Brand\\AStory";
}

.philosophy-dots::after {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 138px;
  height: 174px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: repeating-linear-gradient(90deg, #222 0 6px, transparent 6px 14px);
  opacity: 0.26;
  content: "";
}

.philosophy-dots span {
  display: none;
}

.philosophy-copy {
  width: 100%;
}

.philosophy-copy p:not(.section-label),
.section-intro p,
.works-head p,
.company-info p,
.company-info dl,
.recruit-entry-banner p,
.contact-section p,
.company-page-message p {
  color: var(--np-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(56px, 8vw, 120px);
  padding: 108px 0;
  border-bottom: 1px solid var(--np-line);
}

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

.service-card {
  min-height: 230px;
  padding: 26px;
  background: var(--np-soft);
}

.service-card::after {
  display: none;
}

.service-card .icon {
  width: auto;
  height: auto;
  margin-bottom: 52px;
  background: transparent;
}

.service-card .icon svg {
  display: none;
}

.service-card .icon em {
  position: static;
  display: block;
  color: rgba(34, 34, 34, 0.55);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  transform: none;
}

.service-card h3 {
  font-size: 25px;
  line-height: 1.35;
}

.performance {
  grid-template-columns: 190px repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--np-line);
  border-bottom: 1px solid var(--np-line);
}

.performance .section-label {
  align-self: stretch;
  padding: 32px 24px;
  border-right: 1px solid var(--np-line);
}

.metric {
  min-height: 250px;
  padding: 32px 22px;
  border: 0;
  border-right: 1px solid var(--np-line);
  border-radius: 0;
  text-align: left;
}

.metric:last-child {
  border-right: 0;
}

.metric-visual {
  opacity: 0.75;
  transform: scale(0.8);
  transform-origin: left top;
}

.metric strong {
  margin-top: 30px;
  font-size: 42px;
  line-height: 1;
}

.metric strong span {
  font-size: 15px;
}

.metric small {
  margin-top: 18px;
  color: var(--np-muted);
  font-size: 12px;
  font-weight: 900;
}

.works-section {
  padding: 108px 0;
  border-bottom: 1px solid var(--np-line);
}

.works-head {
  margin-bottom: 42px;
}

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

.work-card {
  padding: 0;
  overflow: hidden;
}

.work-card span {
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.work-card img {
  aspect-ratio: 4 / 3;
  border-radius: 8px 8px 0 0;
  filter: saturate(0.82) contrast(1.04);
}

.work-card h3,
.work-card p {
  padding-inline: 16px;
}

.work-card p {
  padding-bottom: 18px;
}

.company-section {
  grid-template-columns: minmax(360px, 0.8fr) repeat(2, minmax(0, 1fr));
  padding: 108px 0;
  border-bottom: 1px solid var(--np-line);
}

.company-card {
  border-left: 1px solid var(--np-line);
}

.recruit-entry-banner {
  margin-top: 0;
  padding: 62px 48px;
  border-radius: 0;
  background: #1f1f1f;
  box-shadow: none;
}

.recruit-entry-banner::after {
  opacity: 0.18;
}

.contact-section {
  padding: 108px 0;
}

.contact-hero {
  min-height: 360px;
  border: 1px solid var(--np-line);
  border-radius: 8px;
  background: var(--np-soft);
  box-shadow: none;
}

.contact-hero-track {
  color: rgba(34, 34, 34, 0.08);
}

.contact-buttons {
  gap: 18px;
}

.mail-contact {
  border-radius: 8px;
  background: var(--np-soft);
}

.footer {
  background: var(--np-soft);
}

.recruit-card {
  border-width: 1px;
  background: var(--np-soft);
  box-shadow: none;
}

.recruit-card::before {
  height: 1px;
  background: #222;
}

.recruit-card-visual {
  border-color: var(--np-line);
  box-shadow: none;
}

.job-row {
  border-color: var(--np-line);
}

@media (max-width: 1100px) {
  .site-header {
    width: min(100% - 32px, 1060px);
  }

  .hero,
  .service-section,
  .philosophy-section,
  .company-section,
  .company-page-message {
    grid-template-columns: 1fr;
  }

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

  .performance .section-label {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--np-line);
  }

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

@media (max-width: 680px) {
  .site-header {
    width: 100%;
    min-height: 78px;
    margin: 0;
    padding: 18px 22px 16px;
    border-radius: 0;
  }

  .brand {
    font-size: 24px;
  }

  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    min-width: 0;
    border-radius: 999px;
  }

  .hero,
  .service-section,
  .philosophy-section,
  .works-section,
  .company-section,
  .contact-section {
    padding-block: 64px;
  }

  .philosophy-dots {
    min-height: 250px;
  }

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

  .metric,
  .performance .section-label {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--np-line);
  }

  .metric strong {
    font-size: 38px;
  }

  .works-grid {
    gap: 16px;
  }

  .recruit-entry-banner {
    padding: 34px 22px;
  }
}

/* Stable Japanese global header */
.site-header {
  top: 22px;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: center;
  width: min(100% - 96px, 1480px);
  min-height: 74px;
  margin: 24px auto 0;
  padding: 8px 16px 8px 26px;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.brand {
  width: 100%;
  min-width: 0;
  font-size: 25px;
  font-weight: 900;
}

.brand span,
.brand small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  color: var(--np-muted);
  font-size: 10px;
}

.nav {
  justify-content: end;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
}

.nav a {
  justify-content: center;
  width: 86px;
  min-height: 48px;
  padding: 0 10px;
  border-width: 1px;
  border-radius: 14px;
  color: var(--np-text);
  letter-spacing: 0;
}

.nav a.is-current {
  border-color: #202226;
  background: #fff;
}

.nav a:hover {
  background: var(--np-soft);
}

.nav a[href="#contact"],
.nav a[href="index.html#contact"],
.nav a.nav-entry {
  width: 150px;
  min-width: 150px;
  margin-left: 8px;
  padding: 0 18px;
  border-color: #1f1f1f;
  border-radius: 6px;
  color: #fff;
  background: #1f1f1f;
  box-shadow: none;
}

.nav a[href="#contact"]::after,
.nav a[href="index.html#contact"]::after {
  display: none;
}

.nav a.nav-entry {
  border-color: #e60012;
  background: #e60012;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    width: min(100% - 48px, 1120px);
  }

  .brand {
    font-size: 22px;
  }

  .nav {
    gap: 5px;
    font-size: 12px;
  }

  .nav a {
    width: 66px;
    padding-inline: 8px;
  }

  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    width: 112px;
    min-width: 112px;
  }

  .columns-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .column-category-grid {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100%;
    min-height: 78px;
    margin: 0;
    padding: 18px 22px 16px;
    border-radius: 0;
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    justify-content: stretch;
    gap: 8px;
  }

  .nav a,
  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    border-radius: 999px;
  }

  .columns-hero,
  .column-categories,
  .column-list-section {
    width: min(100% - 44px, 900px);
  }

  .columns-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 64px 0;
  }

  .column-categories,
  .column-list-section {
    padding: 56px 0;
  }

  .column-section-head {
    display: grid;
    gap: 18px;
  }

  .column-category-grid,
  .column-list {
    grid-template-columns: 1fr;
  }

  .column-category-grid article,
  .column-card {
    min-height: 0;
  }

  .column-card h3 {
    margin-top: 34px;
    font-size: 24px;
  }
}

/* NewsPicks Premium inspired works cards */
.works-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 108px max(48px, calc((100vw - 1480px) / 2));
  border-bottom: 0;
  background: #f2f2f2;
  box-sizing: border-box;
}

.works-head {
  margin-bottom: 42px;
}

.works-head h2 {
  max-width: 760px;
}

.works-grid {
  counter-reset: works-card;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.work-card {
  counter-increment: works-card;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 510px;
  padding: 10px 10px 30px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.work-card span {
  left: 24px;
  top: 24px;
  z-index: 2;
  min-width: 0;
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #222;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  font-size: 0;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.work-card span::before {
  color: #222;
  font-size: 11px;
  letter-spacing: 0;
  content: "CASE " counter(works-card, decimal-leading-zero);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: none;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.work-card:hover img {
  box-shadow: none;
  filter: saturate(1) contrast(1.05);
  transform: scale(1.015);
}

.work-card h3 {
  margin: 34px 30px 20px;
  padding: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.42;
}

.work-card p {
  position: relative;
  width: fit-content;
  margin: 0 30px 34px;
  padding: 9px 12px;
  border-radius: 7px;
  color: #4d535c;
  background: #efefef;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.55;
}

.work-card::after {
  align-self: end;
  justify-self: start;
  display: grid;
  place-items: center;
  width: 44px;
  height: 18px;
  margin-left: 30px;
  border-radius: 999px;
  color: #fff;
  background: #222;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  content: "↗";
}

@media (max-width: 1100px) {
  .works-section {
    padding-inline: 24px;
  }

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

@media (max-width: 680px) {
  .works-section {
    padding: 64px 22px;
  }

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

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

  .work-card h3 {
    margin: 26px 18px 16px;
    font-size: 23px;
  }

  .work-card p {
    margin-inline: 18px;
  }

  .work-card::after {
    margin-left: 18px;
  }
}

/* Brand Design close layout pass */
:root {
  --bd-page: min(100% - 96px, 1480px);
  --bd-line: rgba(16, 18, 22, 0.16);
  --bd-soft: #f3f3f3;
  --bd-ink: #202124;
}

body {
  color: var(--bd-ink);
  background: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
}

main > section,
main > .mobile-hero-cta {
  position: relative;
}

.company-page-hero .section-label {
  grid-column: 1;
  align-self: end;
}

.company-page-hero h1 {
  grid-column: 1;
  align-self: end;
}

.company-page-hero > p:not(.section-label) {
  grid-column: 2;
  align-self: end;
  margin-bottom: 10px;
}

.hero-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--bd-line);
  border-left: 1px solid var(--bd-line);
}

.hero-type article {
  min-height: 260px;
  padding: 34px 30px;
  border: 0;
  border-right: 1px solid var(--bd-line);
  border-bottom: 1px solid var(--bd-line);
  border-radius: 0;
  background: #fff;
}

.hero-type h2,
.service-card h3,
.company-domain-list h3,
.column-category-grid h3 {
  margin-top: 58px;
}

.philosophy-section,
.service-section,
.company-page-message {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1fr);
  gap: clamp(56px, 8vw, 128px);
  padding: 116px 0;
  border-bottom: 1px solid var(--bd-line);
}

.philosophy-dots,
.contact-hero {
  border-radius: 0;
  background: var(--bd-soft);
}

.philosophy-dots {
  min-height: 520px;
}

.philosophy-dots::before {
  left: 38px;
  bottom: 38px;
  font-size: clamp(58px, 7vw, 116px);
  line-height: 0.88;
  content: "Brand\AStory";
}

.service-grid,
.company-domain-list,
.column-category-grid,
.case-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--bd-line);
  border-left: 1px solid var(--bd-line);
}

.service-card,
.company-domain-list article,
.column-category-grid article,
.case-category-grid article {
  min-height: 310px;
  padding: 30px 28px;
  border: 0;
  border-right: 1px solid var(--bd-line);
  border-bottom: 1px solid var(--bd-line);
  border-radius: 0;
  background: #fff;
}

.service-card:nth-child(odd),
.company-domain-list article:nth-child(odd),
.column-category-grid article:nth-child(odd),
.case-category-grid article:nth-child(odd) {
  background: var(--bd-soft);
}

.performance {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(48px, calc((100vw - 1480px) / 2));
  border-top: 1px solid var(--bd-line);
  border-bottom: 1px solid var(--bd-line);
  background: #fff;
  box-sizing: border-box;
}

.metric {
  background: #fff;
}

.works-section {
  padding-top: 118px;
  padding-bottom: 118px;
  border-top: 1px solid var(--bd-line);
}

.works-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: end;
}

.works-head h2 {
  max-width: none;
}

.works-grid {
  margin-top: 54px;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 116px 0;
  border-bottom: 1px solid var(--bd-line);
}

.company-card {
  border-left: 1px solid var(--bd-line);
  background: #fff;
}

.recruit-entry-banner {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  padding: 86px 0;
  border-radius: 0;
  color: var(--bd-ink);
  background: #fff;
}

.recruit-entry-banner h2,
.recruit-entry-banner p {
  color: var(--bd-ink);
}

.recruit-entry-banner .button-primary {
  background: #222;
}

.contact-section {
  padding: 116px 0;
}

.contact-hero {
  min-height: 520px;
  border: 1px solid var(--bd-line);
}

.cases-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 118px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cases-hero > p {
  max-width: 580px;
  margin: 0;
  color: rgba(32, 33, 36, 0.76);
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 800;
  line-height: 1.9;
}

.case-category-grid span,
.case-meta,
.case-url {
  color: rgba(32, 33, 36, 0.55);
  font-size: 13px;
  letter-spacing: 0;
}

.case-category-grid h3 {
  margin-top: 58px;
}

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

.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

.case-thumb {
  position: relative;
  min-height: 300px;
  margin: 0;
  border-bottom: 1px solid var(--bd-line);
  background: #f4f4f4;
  overflow: hidden;
}

.case-thumb::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(32, 33, 36, 0.18);
  content: "";
}

.case-thumb::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  color: rgba(32, 33, 36, 0.08);
  font-size: clamp(74px, 8vw, 138px);
  font-weight: 900;
  line-height: 0.78;
  content: "WORKS";
}

.case-thumb span {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 1;
  max-width: calc(100% - 60px);
  padding: 7px 12px;
  color: #fff;
  background: #202124;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.case-thumb-web {
  background: linear-gradient(135deg, #f6f7fb 0%, #ffffff 46%, #e8edf8 100%);
}

.case-thumb-tbb {
  display: grid;
  place-items: center;
  background: #fff;
}

.case-thumb-tbb::after {
  content: none;
}

.case-thumb-tbb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  filter: none;
}

.case-thumb-lp {
  background: linear-gradient(135deg, #f3f3f3 0%, #ffffff 44%, #ffe4d2 100%);
}

.case-thumb-story {
  background: linear-gradient(135deg, #f1f5f2 0%, #ffffff 48%, #dce8dd 100%);
}

.case-thumb-voice {
  background: linear-gradient(135deg, #f6f3f7 0%, #ffffff 44%, #e7ddf4 100%);
}

.case-thumb-banner {
  background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 43%, #dce8ff 100%);
}

.case-thumb-flyer {
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 46%, #f3dfc8 100%);
}

.case-thumb-pop {
  background: linear-gradient(135deg, #fff3f4 0%, #ffffff 44%, #ffd8df 100%);
}

.case-thumb-catalog {
  background: linear-gradient(135deg, #f7f7f2 0%, #ffffff 46%, #e8e2cf 100%);
}

.case-card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-weight: 800;
}

.case-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.case-card p {
  margin: 0;
  color: rgba(32, 33, 36, 0.78);
  font-weight: 800;
  line-height: 1.9;
}

.case-budget {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2px;
  padding: 13px 0;
  border-top: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
}

.case-budget span {
  color: #6a7078;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.case-budget strong {
  color: #202124;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.case-url {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 14px;
  border: 1px solid rgba(32, 33, 36, 0.14);
  border-radius: 999px;
  color: #202124;
  background: #fff;
  font-weight: 900;
}

@media (max-width: 680px) {
  :root {
    --bd-page: min(100% - 44px, 900px);
  }

  .performance {
    padding-inline: 22px;
  }

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

  .case-thumb {
    min-height: 220px;
  }

  .case-card-body {
    padding: 24px 22px 28px;
  }
}

@media (max-width: 900px) and (min-width: 681px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: min(100% - 44px, 820px);
    min-height: 78px;
    padding: 18px 22px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(32, 33, 36, 0.12);
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a,
  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    margin-left: 0;
    border-radius: 999px;
  }
}

/* Homepage visual editorial pass inspired by NewsPicks-like presentation */
@media (min-width: 1101px) {
  .hero {
    grid-template-columns: minmax(500px, 0.86fr) minmax(520px, 0.9fr);
    align-items: center;
    gap: clamp(48px, 7vw, 112px);
  }

  .hero-type {
    position: relative;
    display: block;
    min-height: 640px;
    border: 0;
  }

  .hero-type::before {
    position: absolute;
    top: 74px;
    right: 8%;
    width: min(380px, 58%);
    height: 430px;
    border: 1px solid rgba(32, 33, 36, 0.14);
    border-radius: 36px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12)),
      radial-gradient(circle at 26% 24%, rgba(35, 133, 232, 0.26), transparent 28%),
      radial-gradient(circle at 82% 68%, rgba(240, 56, 139, 0.22), transparent 34%),
      linear-gradient(135deg, #f4f6f8, #fff 56%, #e9edf3);
    box-shadow: 0 30px 70px rgba(24, 31, 42, 0.12);
    content: "";
  }

  .hero-type::after {
    position: absolute;
    top: 176px;
    right: 31%;
    width: 182px;
    height: 298px;
    padding: 22px 18px;
    border: 8px solid #202124;
    border-radius: 30px;
    color: #fff;
    background:
      linear-gradient(180deg, #141518 0 34%, #202124 34% 100%);
    box-shadow: 0 24px 48px rgba(24, 31, 42, 0.2);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.55;
    white-space: pre-line;
    content: "YouTube Growth\A52.5万人\A\A再生数 1億4520万\A契約 810棟";
  }

  .hero-type article {
    position: absolute;
    z-index: 1;
    display: grid;
    gap: 14px;
    width: min(280px, 46%);
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(32, 33, 36, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 60px rgba(24, 31, 42, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .hero-type article::before {
    display: block;
    width: 100%;
    height: 92px;
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(32, 33, 36, 0.16) 1px, transparent 1px) 0 0 / 22px 22px,
      linear-gradient(180deg, #f7f8fa, #fff);
    content: "";
  }

  .hero-type article::after {
    display: none;
  }

  .hero-type article:nth-child(1) {
    top: 22px;
    left: 4%;
  }

  .hero-type article:nth-child(1)::before {
    background:
      linear-gradient(135deg, transparent 0 56%, rgba(35, 133, 232, 0.22) 56% 100%),
      linear-gradient(90deg, #202124 0 24%, transparent 24% 100%),
      linear-gradient(180deg, #f6f7fb, #fff);
  }

  .hero-type article:nth-child(2) {
    top: 88px;
    right: 0;
  }

  .hero-type article:nth-child(2)::before {
    background:
      radial-gradient(circle at 28% 48%, #202124 0 12px, transparent 13px),
      radial-gradient(circle at 49% 48%, rgba(35, 133, 232, 0.8) 0 12px, transparent 13px),
      radial-gradient(circle at 70% 48%, rgba(240, 56, 139, 0.8) 0 12px, transparent 13px),
      linear-gradient(180deg, #f7f8fa, #fff);
  }

  .hero-type article:nth-child(3) {
    left: 0;
    bottom: 66px;
  }

  .hero-type article:nth-child(3)::before {
    background:
      linear-gradient(135deg, rgba(32, 33, 36, 0.88) 0 42%, transparent 42%),
      linear-gradient(135deg, transparent 0 58%, rgba(255, 171, 24, 0.52) 58% 100%),
      linear-gradient(180deg, #f7f8fa, #fff);
  }

  .hero-type article:nth-child(4) {
    right: 11%;
    bottom: 0;
  }

  .hero-type article:nth-child(4)::before {
    background:
      linear-gradient(180deg, transparent 0 64%, rgba(32, 33, 36, 0.9) 64% 74%, transparent 74%),
      linear-gradient(90deg, rgba(35, 133, 232, 0.75) 0 22%, transparent 22% 34%, rgba(32, 33, 36, 0.18) 34% 100%),
      linear-gradient(180deg, #f7f8fa, #fff);
  }

  .hero-type span {
    order: -1;
    color: rgba(32, 33, 36, 0.42);
    font-size: 12px;
    font-weight: 900;
  }

  .hero-type h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.12;
  }

  .hero-type p {
    margin: 0;
    color: rgba(32, 33, 36, 0.68);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.65;
  }

  .service-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr;
    overflow: hidden;
  }

  .service-card::after {
    position: absolute;
    right: 24px;
    bottom: 22px;
    width: 118px;
    height: 74px;
    border: 1px solid rgba(32, 33, 36, 0.1);
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(32, 33, 36, 0.12) 1px, transparent 1px) 0 0 / 16px 16px,
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 243, 243, 0.92));
    content: "";
  }

  .service-card h3,
  .service-card p {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 94px);
  }
}

@media (max-width: 1100px) {
  .hero-type article {
    overflow: hidden;
  }

  .hero-type article::before {
    display: block;
    width: 100%;
    height: 78px;
    margin-bottom: 22px;
    border-radius: 16px;
    background:
      linear-gradient(90deg, rgba(32, 33, 36, 0.12) 1px, transparent 1px) 0 0 / 18px 18px,
      linear-gradient(180deg, #f7f8fa, #fff);
    content: "";
  }

  .hero-type article:nth-child(1)::before {
    background:
      linear-gradient(135deg, transparent 0 56%, rgba(35, 133, 232, 0.22) 56% 100%),
      linear-gradient(90deg, #202124 0 24%, transparent 24% 100%),
      linear-gradient(180deg, #f6f7fb, #fff);
  }

  .hero-type article:nth-child(2)::before {
    background:
      radial-gradient(circle at 28% 48%, #202124 0 10px, transparent 11px),
      radial-gradient(circle at 49% 48%, rgba(35, 133, 232, 0.8) 0 10px, transparent 11px),
      radial-gradient(circle at 70% 48%, rgba(240, 56, 139, 0.8) 0 10px, transparent 11px),
      linear-gradient(180deg, #f7f8fa, #fff);
  }

  .hero-type article:nth-child(3)::before {
    background:
      linear-gradient(135deg, rgba(32, 33, 36, 0.88) 0 42%, transparent 42%),
      linear-gradient(135deg, transparent 0 58%, rgba(255, 171, 24, 0.52) 58% 100%),
      linear-gradient(180deg, #f7f8fa, #fff);
  }

  .hero-type article:nth-child(4)::before {
    background:
      linear-gradient(180deg, transparent 0 64%, rgba(32, 33, 36, 0.9) 64% 74%, transparent 74%),
      linear-gradient(90deg, rgba(35, 133, 232, 0.75) 0 22%, transparent 22% 34%, rgba(32, 33, 36, 0.18) 34% 100%),
      linear-gradient(180deg, #f7f8fa, #fff);
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  .contact-hero h2 {
    max-width: 100%;
    font-size: clamp(34px, 12vw, 46px);
    overflow-wrap: anywhere;
  }

  .contact-hero-track {
    max-width: 100%;
  }
}

/* Homepage layout calibration: layout first, visual assets later */
.hero {
  width: min(100% - 144px, 1640px);
  grid-template-columns: minmax(520px, 0.92fr) minmax(500px, 0.86fr);
  gap: clamp(64px, 7.5vw, 132px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(118px, 15vh, 178px) 0 clamp(92px, 12vh, 132px);
}

.hero-copy {
  max-width: 720px;
}

.hero .kicker {
  margin-bottom: clamp(42px, 5.4vh, 62px);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 clamp(42px, 5vh, 64px);
  font-size: clamp(62px, 5vw, 90px);
  line-height: 1.2;
  letter-spacing: 0;
}

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

.hero .lead {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 2;
}

.hero .body-copy {
  max-width: 650px;
  margin-bottom: clamp(48px, 5vh, 70px);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2.05;
}

.hero-actions {
  gap: 0;
}

.hero-actions .button {
  min-height: 72px;
  border-radius: 4px;
}

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

.hero-actions .button-ghost {
  margin-left: 36px;
}

.hero-type {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(560px, 55vw, 690px);
  border: 0;
}

.hero-type::before,
.hero-type::after {
  position: absolute;
  border-radius: 8px;
  content: "";
}

.hero-type::before {
  top: 20%;
  right: 10%;
  width: min(420px, 62%);
  height: 56%;
  border: 1px dashed rgba(32, 33, 36, 0.22);
  background: #eef2f7;
}

.hero-type::after {
  left: 12%;
  bottom: 13%;
  width: min(360px, 54%);
  height: 42%;
  border: 1px dashed rgba(32, 33, 36, 0.18);
  background: #f5e5eb;
}

.hero-type article {
  position: absolute;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 0;
  padding: 28px;
  border: 1px dashed rgba(32, 33, 36, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.hero-type article::before {
  display: none;
}

.hero-type article::after {
  display: none;
}

.hero-type article:nth-child(1) {
  top: 9%;
  left: 8%;
  width: min(320px, 46%);
  height: 27%;
  background: #f7f7f7;
}

.hero-type article:nth-child(2) {
  top: 23%;
  right: 0;
  width: min(420px, 62%);
  height: 42%;
  background: #dfeafa;
}

.hero-type article:nth-child(3) {
  left: 0;
  bottom: 15%;
  width: min(400px, 59%);
  height: 37%;
  background: #f7dce6;
}

.hero-type article:nth-child(4) {
  right: 9%;
  bottom: 0;
  width: min(390px, 58%);
  height: 35%;
  background: #d7f0e4;
}

.hero-type span {
  margin: 0 0 18px;
  color: rgba(32, 33, 36, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.hero-type h2 {
  margin: 0;
  color: #202124;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-type p {
  max-width: 220px;
  margin: 18px 0 0 auto;
  color: rgba(32, 33, 36, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.65;
  text-align: right;
}

@media (max-width: 1180px) {
  .hero {
    width: min(100% - 72px, 1080px);
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 86px);
    line-height: 1.18;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-type {
    width: 100%;
    max-width: 760px;
    min-height: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .hero {
    width: min(100% - 44px, 900px);
    gap: 58px;
    min-height: 0;
    padding: 80px 0 76px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 28px;
    font-size: clamp(42px, 11.2vw, 54px);
    line-height: 1.16;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero .lead,
  .hero .body-copy {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero .body-copy {
    display: none;
  }

  .hero-type {
    min-height: 860px;
  }

  .hero-type::before {
    top: 13%;
    right: 0;
    width: 74%;
    height: 240px;
  }

  .hero-type::after {
    left: 0;
    bottom: 21%;
    width: 76%;
    height: 230px;
  }

  .hero-type article {
    padding: 24px;
    border-radius: 8px;
  }

  .hero-type article:nth-child(1),
  .hero-type article:nth-child(2),
  .hero-type article:nth-child(3),
  .hero-type article:nth-child(4) {
    width: 88%;
    height: 210px;
  }

  .hero-type article:nth-child(1) {
    top: 0;
    left: 0;
  }

  .hero-type article:nth-child(2) {
    top: 185px;
    right: 0;
  }

  .hero-type article:nth-child(3) {
    top: 370px;
    left: 0;
    bottom: auto;
  }

  .hero-type article:nth-child(4) {
    right: 0;
    bottom: 0;
  }

  .hero-type h2 {
    font-size: 30px;
  }

  .hero-type p {
    max-width: 200px;
    font-size: 12px;
  }
}

/* NewsPicks Brand Design layout reproduction pass */
@media (min-width: 901px) {
  .site-header {
    position: sticky;
    top: 8px;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    width: min(100% - 144px, 1780px);
    min-height: 96px;
    margin-top: 26px;
    padding: 0 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: width 0.22s ease, min-height 0.22s ease, margin-top 0.22s ease, padding 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    width: min(100% - 64px, 1900px);
    min-height: 88px;
    margin-top: 8px;
    padding: 0 24px;
    border-color: rgba(32, 33, 36, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 52px rgba(24, 31, 42, 0.08);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
  }

  .brand {
    font-size: 30px;
    line-height: 0.98;
  }

  .brand small {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1;
  }

  .nav {
    gap: clamp(18px, 2vw, 34px);
    font-size: 15px;
  }

  .nav a {
    width: auto;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav a.is-current {
    padding: 0 18px;
    border: 1px solid #202226;
    border-radius: 8px;
  }

  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    width: 176px;
    min-width: 176px;
    min-height: 56px;
    margin-left: clamp(10px, 1.5vw, 26px);
    border-radius: 4px;
  }

  .hero {
    width: min(100% - 288px, 1648px);
    grid-template-columns: minmax(760px, 0.92fr) minmax(420px, 0.82fr);
    gap: clamp(72px, 7vw, 136px);
    align-items: center;
    min-height: calc(100vh - 132px);
    padding: clamp(118px, 15vh, 164px) 0 96px;
    border-top: 0;
    overflow: visible;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: 880px;
  }

  .hero .kicker {
    margin-bottom: clamp(56px, 6vh, 78px);
    font-size: 13px;
    letter-spacing: 0;
  }

  .hero .kicker::after {
    width: 50px;
  }

  .hero h1 {
    max-width: 900px;
    margin-bottom: clamp(58px, 6vh, 82px);
    font-size: clamp(84px, 5.8vw, 118px);
    line-height: 1.18;
    font-weight: 900;
  }

  .hero .lead {
    max-width: 690px;
    margin-bottom: 18px;
    font-size: clamp(18px, 1.15vw, 22px);
    line-height: 2.05;
  }

  .hero .body-copy {
    max-width: 720px;
    margin-bottom: clamp(58px, 6vh, 82px);
    font-size: clamp(17px, 1vw, 20px);
    line-height: 2.05;
  }

  .hero-actions .button {
    min-height: 72px;
    font-size: 16px;
  }

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

  .hero-actions .button-ghost {
    margin-left: 44px;
  }

  .hero-type {
    display: block;
    width: 100%;
    min-height: 580px;
    border: 0;
    background: transparent;
    visibility: hidden;
  }

  .hero-type::before,
  .hero-type::after,
  .hero-type article {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .site-header {
    width: min(100% - 96px, 1180px);
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    width: min(100% - 48px, 1180px);
  }

  .hero {
    width: min(100% - 96px, 1180px);
    grid-template-columns: minmax(620px, 0.9fr) minmax(280px, 0.7fr);
  }

  .hero h1 {
    font-size: clamp(72px, 6.3vw, 90px);
  }
}

@media (max-width: 900px) {
  .hero-type {
    display: none;
  }
}

/* Sitewide layout-first pass: typography and spacing before visual assets */
:root {
  --layout-page: min(100% - 288px, 1648px);
  --layout-page-mid: min(100% - 96px, 1180px);
  --layout-page-mobile: min(100% - 44px, 900px);
  --layout-line: rgba(32, 33, 36, 0.13);
}

@media (min-width: 901px) {

  .philosophy-section,
  .service-section,
  .company-page-message,
  .works-head,
  .company-section {
    grid-template-columns: minmax(560px, 0.9fr) minmax(420px, 0.86fr);
    gap: clamp(72px, 7vw, 136px);
    padding: 148px 0;
  }

  .philosophy-dots {
    min-height: 520px;
    border: 1px dashed var(--layout-line);
    background: transparent;
    visibility: hidden;
  }

  .section-label,
  .kicker {
    margin-bottom: 34px;
    color: #202124;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .section-label::before {
    width: 6px;
    height: 6px;
  }

  .section-label::after,
  .kicker::after {
    width: 50px;
    height: 1px;
    background: #202124;
    opacity: 0.6;
  }

  .service-card .icon {
    width: auto;
    height: auto;
    margin-bottom: 70px;
    background: transparent;
  }

  .performance {
    width: var(--layout-page);
    margin-inline: auto;
    padding: 78px 0;
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
  }

  .metric {
    border-color: var(--layout-line);
  }

  .works-section {
    padding: 148px 0;
  }

  .works-grid {
    margin-top: 72px;
  }

  .work-card {
    border-radius: 0;
    background: #fff;
  }

  .work-card img {
    border-radius: 0;
  }

  .recruit-entry-banner {
    grid-template-columns: minmax(720px, 0.9fr) minmax(260px, 0.35fr);
    padding: 116px 0;
    border-radius: 0;
  }

  .contact-hero {
    min-height: 440px;
    border: 1px solid var(--layout-line);
    border-radius: 0;
    background: #fff;
  }

  .contact-hero-track {
    display: none;
  }
}

@media (max-width: 900px) {

  .philosophy-dots,
  .recruit-visual,
  .recruit-marquee,
  .recruit-card-visual,
  .contact-hero-track {
    display: none !important;
  }
}

/* The Builder Brand logo identity */
.brand.brand-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  line-height: 0;
}

.brand.brand-logo img {
  display: block;
  width: auto;
  max-width: 252px;
  height: 72px;
}

@media (min-width: 901px) {
  .brand.brand-logo {
    align-self: center;
  }

  .site-header.is-scrolled .brand.brand-logo img,
  .site-header.is-menu-open .brand.brand-logo img {
    height: 62px;
  }
}

@media (max-width: 900px) {
  .brand.brand-logo img {
    max-width: calc(100vw - 104px);
    height: 54px;
  }
}

@media (max-width: 390px) {
  .brand.brand-logo img {
    max-width: calc(100vw - 92px);
    height: 50px;
  }
}

/* Performance metrics: keep long figures from colliding across columns */
@media (min-width: 901px) {
  .performance {
    grid-template-columns: minmax(210px, 0.72fr) repeat(5, minmax(0, 1fr));
    align-items: stretch;
    overflow: hidden;
  }

  .metric {
    min-width: 0;
    padding-inline: clamp(22px, 1.45vw, 34px);
  }

  .metric strong {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(34px, 2.15vw, 44px);
    letter-spacing: 0;
  }

  .metric:nth-of-type(2) strong,
  .metric:nth-of-type(4) strong {
    font-size: clamp(30px, 1.8vw, 38px);
  }

  .metric strong span {
    margin-left: 0.04em;
    font-size: 0.46em;
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .performance {
    grid-template-columns: minmax(170px, 0.55fr) repeat(5, minmax(0, 1fr));
  }

  .performance .section-label {
    padding-inline: 18px;
  }

  .metric {
    padding-inline: 18px;
  }

  .metric strong {
    font-size: clamp(28px, 2vw, 36px);
  }

  .metric:nth-of-type(2) strong,
  .metric:nth-of-type(4) strong {
    font-size: clamp(25px, 1.75vw, 32px);
  }
}

/* Works section should stay dense; avoid inheriting large two-column headline spacing */
@media (min-width: 901px) {
  .works-section {
    padding-top: clamp(74px, 6vw, 104px);
    padding-bottom: clamp(88px, 7vw, 120px);
  }

  .works-head {
    display: block;
    padding: 0;
    margin-bottom: 56px;
  }

  .works-head h2 {
    max-width: 980px;
    margin-bottom: 24px;
  }

  .works-grid {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .works-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .works-head {
    padding: 0;
    margin-bottom: 34px;
  }
}

/* Works cards: rebalance image, title, and stats so the white area does not dominate */
.works-grid {
  align-items: start;
}

.work-card {
  grid-template-rows: auto auto auto;
  min-height: 0;
  padding: 10px 10px 28px;
}

.work-card h3 {
  margin: 28px 26px 18px;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.32;
}

.work-card p {
  margin: 0 26px;
  padding: 8px 12px;
}

.work-card::after {
  display: none;
}

@media (min-width: 901px) {
  .works-grid {
    gap: clamp(22px, 2.4vw, 34px);
  }
}

@media (max-width: 900px) {
  .work-card {
    padding-bottom: 24px;
  }

  .work-card h3 {
    margin: 24px 22px 16px;
  }

  .work-card p {
    margin-inline: 22px;
  }
}

/* Company section: keep profile and the two company cards in a stable two-column layout */
@media (min-width: 901px) {
  .company-section {
    grid-template-columns: minmax(500px, 0.92fr) minmax(440px, 0.78fr);
    gap: clamp(56px, 6vw, 96px);
    align-items: start;
    padding-top: clamp(84px, 7vw, 118px);
    padding-bottom: clamp(84px, 7vw, 118px);
  }

  .company-info {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .company-card {
    grid-column: 2;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    column-gap: 34px;
    row-gap: 6px;
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 34px 0 34px 40px;
    border-left: 1px solid var(--layout-line);
    text-align: left;
  }

  .company-card + .company-card {
    margin-top: 24px;
    border-top: 1px solid var(--layout-line);
  }

  .company-logo {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 116px;
    max-width: 116px;
    height: 74px;
    margin: 0;
    object-fit: contain;
  }

  .company-logo-terasu {
    width: 82px;
    max-width: 82px;
    height: 74px;
    justify-self: center;
  }

  .company-card h3,
  .company-card p,
  .company-card ul {
    grid-column: 2;
  }

  .company-card h3 {
    font-size: clamp(24px, 1.7vw, 32px);
    line-height: 1.25;
  }

  .company-card p {
    margin-bottom: 8px;
  }

  .company-card ul {
    justify-self: start;
    gap: 3px;
    font-size: 13px;
  }
}

/* Recruit banner: keep the main CTA headline on one line on desktop */
@media (min-width: 901px) {
  .recruit-entry-banner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.3fr);
    gap: clamp(30px, 3.6vw, 64px);
  }

  .recruit-entry-banner h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(48px, 3.45vw, 64px);
    line-height: 1.08;
  }

  .recruit-banner-side {
    padding: clamp(28px, 2.4vw, 40px);
  }

  .recruit-banner-side strong {
    font-size: clamp(22px, 1.7vw, 30px);
  }
}

/* Contact block: remove nested boxes and make LINE the single clear action */
.contact-section .contact-buttons {
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-section .contact-topic-list {
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid var(--layout-line);
  background: transparent;
}

.contact-section .contact-topic-list span {
  margin-bottom: 16px;
  color: #6a7078;
}

.contact-section .contact-topic-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.contact-section .contact-topic-list li {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #202124;
  font-size: 13px;
  line-height: 1.5;
}

.contact-section .contact-topic-list li::before {
  color: #06c755;
  content: "#";
}

.contact-section .contact.line {
  min-height: 76px;
  border-color: #06c755;
  background: #06c755;
  color: #fff;
  box-shadow: 0 18px 48px rgba(6, 199, 85, 0.18);
}

@media (min-width: 901px) and (max-width: 1280px) {
  .company-section {
    grid-template-columns: 1fr;
  }

  .company-info,
  .company-card {
    grid-column: 1;
    grid-row: auto;
  }

  .company-card {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--layout-line);
  }
}

/* Recruit CTA: compact, readable banner instead of a large empty framed area */
.recruit-entry-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  width: var(--layout-page);
  margin-inline: auto;
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid var(--layout-line);
  border-right: 0;
  border-bottom: 1px solid var(--layout-line);
  border-left: 0;
  border-radius: 0;
  color: #202124;
  background: #fff;
  overflow: visible;
}

.recruit-entry-banner .section-label {
  margin-bottom: 24px;
  color: #202124;
}

.recruit-entry-banner h2 {
  display: block;
  max-width: 980px;
  margin: 0 0 22px;
  padding: 0;
  color: #202124;
  background: transparent;
  font-size: clamp(42px, 4.1vw, 76px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.recruit-entry-banner p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #202124;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 800;
  line-height: 1.9;
}

.recruit-entry-banner .button-primary {
  min-width: 260px;
  min-height: 64px;
  justify-content: center;
  color: #fff;
  border-color: #202020;
  background: #202020;
}

.recruit-entry-banner .button-primary span {
  border-color: currentColor;
}

@media (min-width: 901px) and (max-width: 1280px) {
  .recruit-entry-banner {
    width: var(--layout-page-mid);
    grid-template-columns: 1fr;
  }

  .recruit-entry-banner .button-primary {
    width: fit-content;
  }
}

@media (max-width: 900px) {
  .recruit-entry-banner {
    width: var(--layout-page-mobile);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px 0;
  }

  .recruit-entry-banner h2 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .recruit-entry-banner .button-primary {
    width: 100%;
  }
}

/* Contact CTA: remove the oversized framed card and align with the editorial layout */
.contact-hero::before,
.contact-hero::after {
  display: none;
}

/* Creative works page: restore a stable page container and archive layout */
.cases-page-main {
  width: var(--layout-page);
  margin: 0 auto;
  overflow: hidden;
}

.cases-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.34fr);
  gap: clamp(48px, 6vw, 104px);
  align-items: end;
  min-height: auto;
  padding: clamp(84px, 8vw, 132px) 0 clamp(72px, 7vw, 112px);
  border-top: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
}

.cases-hero h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(52px, 5.1vw, 92px);
  line-height: 1.12;
  letter-spacing: 0;
}

.cases-hero > p:not(.section-label) {
  max-width: 520px;
  margin: 0;
  padding-bottom: 8px;
  color: #333941;
  font-size: clamp(15px, 0.98vw, 18px);
  font-weight: 800;
  line-height: 1.95;
}

.case-list-section {
  padding: clamp(70px, 7vw, 112px) 0 clamp(96px, 8vw, 132px);
}

.case-section-head {
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.case-section-head h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 74px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.case-section-head h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 74px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(28px, 3vw, 46px);
}

.case-tabs button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--layout-line);
  background: #fff;
  color: #202124;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
  padding: 0;
  border: 0;
  background: transparent;
}

.case-card {
  min-height: 0;
  border: 1px solid var(--layout-line);
  background: #fff;
}

.case-thumb {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.case-card-body {
  min-height: 250px;
  padding: clamp(24px, 2vw, 32px);
}

.case-card h3 {
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.36;
}

.case-card p {
  font-size: 14px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .cases-page-main {
    width: var(--layout-page-mobile);
  }

  .cases-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 0 60px;
  }

  .cases-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.22;
  }

  .cases-hero > p:not(.section-label) {
    max-width: none;
    padding-bottom: 0;
    font-size: 15px;
  }

  .case-section-head {
    display: grid;
    gap: 18px;
    align-items: start;
  }

  .case-section-head h1,
  .case-section-head h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .case-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .case-tabs button {
    flex: 0 0 auto;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-card-body {
    min-height: 0;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: clamp(48px, 6vw, 108px);
  align-items: end;
  width: var(--layout-page);
  margin-inline: auto;
  padding: clamp(88px, 8vw, 136px) 0;
  border-top: 1px solid var(--layout-line);
  overflow: visible;
}

.contact-hero {
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-hero-copy {
  display: block;
  padding: 0;
  text-align: left;
}

.contact-hero h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 5vw, 92px);
  line-height: 1.16;
  letter-spacing: 0;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  margin: 0;
}

.contact {
  min-height: 66px;
  border-radius: 4px;
}

.mail-contact {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 28px;
  border-radius: 0;
  box-shadow: none;
}

.mail-contact::before,
.mail-contact::after {
  display: none;
}

.contact-section .mail-contact {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  width: 100%;
  margin-top: clamp(34px, 4vw, 58px);
  padding: clamp(28px, 3vw, 42px) 0 0;
  border: 0;
  border-top: 1px solid var(--layout-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.contact-section .mail-contact::before {
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 146px;
  height: 3px;
  border-radius: 999px;
  background: var(--creative-gradient);
  content: "";
}

.contact-section .mail-contact::after {
  display: none;
}

.contact-section .mail-contact h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 900;
  line-height: 1.18;
}

.contact-section .mail-contact .form-guide {
  max-width: 760px;
  margin: 0;
  color: #4b515a;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 800;
  line-height: 1.85;
}

.contact-section .mail-contact .button {
  min-width: 280px;
  min-height: 66px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .contact-section {
    width: var(--layout-page-mobile);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 72px 0;
  }

  .contact-hero h2 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .contact-section .mail-contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-section .mail-contact .button {
    width: 100%;
  }
}

/* Company page hero: readable editorial intro instead of oversized split text */
@media (min-width: 901px) {
  .company-page-hero {
    display: grid;
    grid-template-columns: minmax(700px, 0.9fr) minmax(320px, 0.42fr);
    column-gap: clamp(56px, 5vw, 80px);
    row-gap: 46px;
    align-items: end;
    width: var(--layout-page);
    min-height: auto;
    margin-inline: auto;
    padding: clamp(82px, 8vw, 126px) 0 clamp(92px, 8vw, 132px);
    border-top: 1px solid var(--layout-line);
  }

  .company-page-hero .section-label {
    grid-column: 1 / -1;
    margin-bottom: clamp(48px, 5vw, 82px);
  }

  .company-page-hero h1 {
    max-width: 820px;
    font-size: clamp(56px, 4.45vw, 82px);
    line-height: 1.2;
  }

  .company-page-hero > p:not(.section-label) {
    max-width: 380px;
    margin: 0 0 10px;
    font-size: clamp(16px, 1vw, 19px);
    line-height: 2;
  }
}

@media (max-width: 900px) {
  .company-page-hero {
    width: var(--layout-page-mobile);
    min-height: auto;
    padding: 64px 0 72px;
  }

  .company-page-hero h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.22;
  }
}

/* Company page hero: keep the headline line clean and give the lead enough measure */
@media (min-width: 901px) {
  .company-page-hero {
    grid-template-columns: minmax(820px, 0.9fr) minmax(500px, 0.5fr);
    column-gap: clamp(54px, 5vw, 88px);
    align-items: end;
  }

  .company-page-hero h1 {
    max-width: 1120px;
    white-space: normal;
    font-size: clamp(56px, 4.2vw, 78px);
    line-height: 1.16;
  }

  .company-page-hero > p:not(.section-label) {
    max-width: 560px;
    margin-bottom: 4px;
    color: #2f343b;
    font-size: clamp(17px, 1.02vw, 20px);
    line-height: 1.9;
    letter-spacing: 0;
  }
}

/* Company message: reduce oversized headline mass and tighten reading distance */
@media (min-width: 901px) {
  .company-page-message {
    grid-template-columns: minmax(520px, 0.84fr) minmax(420px, 0.62fr);
    gap: clamp(52px, 5vw, 84px);
    align-items: start;
    padding: clamp(76px, 7vw, 108px) 0;
  }

  .company-page-message h2 {
    max-width: 720px;
    font-size: clamp(46px, 3.7vw, 68px);
    line-height: 1.24;
  }

  .company-page-message p {
    max-width: 520px;
    padding-top: 52px;
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 2;
  }
}

/* Company page: align headline breaks, lead height, and section rules */
@media (min-width: 901px) {
  .company-page-hero,
  .company-page-message {
    grid-template-columns: minmax(900px, 1fr) minmax(420px, 520px);
    column-gap: clamp(78px, 7vw, 128px);
    row-gap: clamp(38px, 4vw, 58px);
    align-items: start;
    width: var(--layout-page);
  }

  .company-page-hero {
    min-height: 0;
    padding: clamp(92px, 8vw, 132px) 0 clamp(88px, 7vw, 116px);
  }

  .company-page-hero .section-label,
  .company-page-message .section-label {
    grid-column: 1 / -1;
    margin: 0;
  }

  .company-page-hero h1,
  .company-page-message h2 {
    grid-column: 1;
    max-width: 1080px;
    margin: 0;
    line-height: 1.12;
  }

  .company-page-hero h1 {
    font-size: clamp(60px, 4.3vw, 82px);
  }

  .company-page-message h2 {
    font-size: clamp(56px, 3.75vw, 72px);
  }

  .company-page-hero > p:not(.section-label),
  .company-page-message > p {
    grid-column: 2;
    align-self: start;
    max-width: 520px;
    margin: 0;
    padding-top: 10px;
    color: #2f343b;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.95;
  }

  .company-page-message {
    padding: clamp(78px, 7vw, 108px) 0;
  }
}

/* Company profile: logo-free cards */
.company-profile-card {
  min-height: auto;
  align-content: start;
}

.company-profile-card h3 {
  padding-top: clamp(16px, 2vw, 28px);
}

.company-profile-card dl {
  margin-top: 0;
}

@media (max-width: 900px) {
  .company-page-message {
    width: var(--layout-page-mobile);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 0;
  }

  .company-page-message h2 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.25;
  }

  .company-page-message p {
    padding-top: 0;
  }
}

/* Company domain: intentional line breaks and calmer scale for readability */
@media (min-width: 901px) {
  .company-domain-section {
    padding: clamp(76px, 7vw, 112px) 0;
  }

  .company-domain-section h2 {
    max-width: 980px;
    margin: 0 0 56px;
    font-size: clamp(48px, 4vw, 72px);
    line-height: 1.25;
  }

  .company-domain-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--layout-line);
    border-left: 1px solid var(--layout-line);
  }

  .company-domain-list article {
    display: grid;
    align-content: start;
    min-height: 260px;
    padding: clamp(34px, 3vw, 48px);
    border-right: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
    background: #fff;
  }

  .company-domain-list span {
    margin-bottom: clamp(48px, 5vw, 72px);
    color: rgba(32, 33, 36, 0.48);
    font-size: 13px;
    font-weight: 900;
  }

  .company-domain-list h3 {
    max-width: 520px;
    margin: 0 0 20px;
    font-size: clamp(30px, 2.45vw, 44px);
    line-height: 1.18;
    letter-spacing: 0;
  }

  .company-domain-list p {
    max-width: 540px;
    color: #4c525b;
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.9;
  }
}

/* Company about: merge ABOUT and MESSAGE into one readable content flow */
.company-page-about {
  border-bottom: 1px solid rgba(13, 13, 15, 0.16);
}

.company-page-about-copy {
  color: #2f343b;
}

.company-page-about-copy h2 {
  margin: clamp(30px, 3vw, 44px) 0 18px;
  color: #202124;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}

.company-page-about-copy p {
  margin: 0;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 2;
}

.company-page-about-copy p + p {
  margin-top: 16px;
}

.company-page-about-copy .company-about-lead {
  color: #20242b;
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 2.05;
}

.company-service-orbits {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 29vw, 480px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 96px 100%,
    #202020;
  color: #fff;
}

.company-service-orbits::before {
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 58%);
  filter: blur(22px);
  opacity: 0.7;
  content: "";
}

.company-service-orbits-title {
  position: absolute;
  top: clamp(20px, 2.2vw, 32px);
  left: clamp(22px, 2.8vw, 38px);
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.company-service-orbits-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(150px, 10vw, 190px);
  height: clamp(38px, 3vw, 50px);
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #202020;
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 950;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.company-service-orbits ul {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-service-orbits .orbit-item {
  position: absolute;
  display: grid;
  width: clamp(142px, 12.4vw, 198px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  transition:
    border-color 0.45s ease,
    background-color 0.45s ease,
    color 0.45s ease,
    transform 0.45s ease;
  animation: companyOrbitBreath 7s ease-in-out infinite alternate;
}

.company-service-orbits .orbit-item span {
  display: block;
  max-width: 11em;
  padding: 0 0.7em;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 950;
  line-height: 1.28;
  white-space: nowrap;
}

.company-service-orbits .orbit-brand {
  top: 46%;
  left: 20%;
}

.company-service-orbits .orbit-copy {
  top: 40%;
  left: 34%;
  animation-delay: -1.4s;
}

.company-service-orbits .orbit-design {
  top: 43%;
  left: 49%;
  animation-delay: -2.6s;
}

.company-service-orbits .orbit-web {
  top: 41%;
  left: 64%;
  animation-delay: -3.2s;
}

.company-service-orbits .orbit-dev {
  top: 49%;
  left: 80%;
  animation-delay: -4.1s;
}

.company-service-orbits .orbit-sns {
  top: 64%;
  left: 40%;
  animation-delay: -2s;
}

.company-service-orbits .orbit-movie {
  top: 66%;
  left: 59%;
  animation-delay: -4.7s;
}

.company-service-orbits .orbit-item:hover {
  z-index: 4;
  border-color: rgba(47, 109, 246, 0.92);
  background: #2f6df6;
  transform: translate(-50%, -50%) scale(1.04);
  animation-play-state: paused;
}

@keyframes companyOrbitBreath {
  from {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  to {
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow: 0 0 42px rgba(255, 255, 255, 0.06);
  }
}

@media (min-width: 901px) {
  .company-page-about {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.58fr);
    column-gap: clamp(56px, 5.6vw, 86px);
    row-gap: clamp(34px, 4vw, 56px);
    align-items: start;
    width: var(--layout-page);
    min-height: 0;
    padding: clamp(92px, 8vw, 132px) 0 clamp(92px, 8vw, 128px);
  }

  .company-page-about .section-label {
    grid-column: 1 / -1;
    margin: 0;
  }

  .company-page-about h1 {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 860px;
    margin: 0;
    font-size: clamp(52px, 3.9vw, 72px);
    line-height: 1.18;
  }

  .company-page-about-copy {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: start;
    max-width: 620px;
    padding-top: 8px;
  }

  .company-service-orbits {
    grid-column: 1;
    grid-row: 3;
    margin-top: clamp(34px, 4vw, 58px);
  }

  .company-about-lead .desktop-break {
    display: block;
  }
}

@media (max-width: 900px) {
  .company-page-about {
    width: var(--layout-page-mobile);
    min-height: 0;
    padding: 54px 0 58px;
  }

  .company-page-about h1 {
    margin: 0 0 30px;
    font-size: clamp(34px, 10vw, 54px);
    line-height: 1.25;
  }

  .company-page-about-copy h2 {
    margin-top: 28px;
    font-size: clamp(24px, 7vw, 34px);
  }

  .company-page-about-copy p {
    font-size: 14px;
    line-height: 1.95;
  }

  .company-service-orbits {
    min-height: 620px;
    margin: 34px 0 38px;
    border-color: rgba(32, 33, 36, 0.12);
  }

  .company-service-orbits .orbit-item {
    width: clamp(138px, 43vw, 190px);
  }

  .company-service-orbits .orbit-item span {
    font-size: clamp(14px, 4.2vw, 18px);
  }

  .company-service-orbits .orbit-brand {
    top: 26%;
    left: 34%;
  }

  .company-service-orbits .orbit-copy {
    top: 26%;
    left: 66%;
  }

  .company-service-orbits .orbit-design {
    top: 44%;
    left: 34%;
  }

  .company-service-orbits .orbit-web {
    top: 44%;
    left: 66%;
  }

  .company-service-orbits .orbit-dev {
    top: 62%;
    left: 34%;
  }

  .company-service-orbits .orbit-sns {
    top: 62%;
    left: 66%;
  }

  .company-service-orbits .orbit-movie {
    top: 80%;
    left: 50%;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .company-domain-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .company-domain-section {
    width: var(--layout-page-mobile);
    padding: 64px 0;
  }

  .company-domain-section h2 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.28;
  }

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

  .company-domain-list article {
    min-height: 0;
    padding: 30px 24px;
  }

  .company-domain-list span {
    margin-bottom: 34px;
  }
}

/* Service overview: all six items should be visible as one complete set on desktop */
@media (min-width: 901px) {
  .service-section {
    grid-template-columns: minmax(360px, 0.58fr) minmax(720px, 1fr);
    gap: clamp(44px, 4vw, 64px);
    align-items: start;
    padding: clamp(72px, 6vw, 96px) 0;
  }

  .section-intro h2 {
    font-size: clamp(56px, 4.6vw, 82px);
    line-height: 1.16;
  }

  .section-intro p:not(.section-label) {
    max-width: 640px;
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 1.9;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--layout-line);
    border-left: 1px solid var(--layout-line);
  }

  .service-card {
    min-height: 236px;
    padding: 22px 22px 20px;
    border: 0;
    border-right: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
  }

  .service-card .icon {
    margin-bottom: 38px;
  }

  .service-card h3 {
    margin-bottom: 14px;
    font-size: clamp(23px, 1.65vw, 30px);
    line-height: 1.12;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.65;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .service-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-card {
    min-height: 0;
  }
}

/* Recruit hero: keep the catchphrase readable instead of narrow vertical breaks */
@media (min-width: 901px) {
  .recruit-section {
    width: var(--layout-page);
    margin-top: 0;
    padding: clamp(72px, 7vw, 112px) 0 56px;
  }

  .recruit-hero {
    grid-template-columns: minmax(720px, 0.9fr) minmax(260px, 0.35fr);
    gap: clamp(48px, 5vw, 80px);
    align-items: center;
    min-height: auto;
  }

  .recruit-hero h1,
  .recruit-hero h2 {
    max-width: 840px;
    margin-bottom: 34px;
    font-size: clamp(58px, 4.7vw, 88px);
    line-height: 1.22;
  }

  .recruit-hero p:not(.section-label) {
    max-width: 720px;
    font-size: clamp(16px, 1vw, 19px);
    line-height: 2;
  }

  .recruit-actions {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .recruit-section {
    width: var(--layout-page-mobile);
  }

  .recruit-hero h1,
  .recruit-hero h2 {
    font-size: clamp(40px, 11vw, 58px);
    line-height: 1.22;
  }
}

/* Recruit page sections: readable message and entry layouts */
@media (min-width: 901px) {
  .recruit-message {
    display: grid;
    grid-template-columns: minmax(620px, 0.86fr) minmax(420px, 0.58fr);
    gap: clamp(52px, 5vw, 86px);
    align-items: start;
    width: 100%;
    margin: 0 0 78px;
    padding: 78px 0 84px;
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
  }

  .recruit-message .section-label {
    grid-column: 1 / -1;
    margin-bottom: 34px;
  }

  .recruit-message h3 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(46px, 3.8vw, 68px);
    line-height: 1.24;
  }

  .recruit-message p {
    max-width: 520px;
    padding-top: 10px;
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 2;
  }

  .recruit-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
    padding: 48px 56px;
    border-radius: 6px;
    background: #191919;
  }

  .recruit-entry h3 {
    max-width: 820px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1.24;
  }

  .recruit-entry .section-label,
  .recruit-entry p {
    color: #fff;
  }

  .recruit-entry .button-primary {
    min-width: 250px;
    color: #111;
    background: #fff;
  }

  .recruit-entry .recruit-line-entry {
    min-width: 360px;
  }

  .recruit-contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(42px, 5vw, 88px);
    align-items: center;
    width: var(--layout-page);
    padding: 86px 0 104px;
    border-top: 1px solid var(--layout-line);
  }

  .recruit-contact-section .contact-hero {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .recruit-contact-section .contact-hero-copy {
    display: block;
    padding: 0;
    text-align: left;
  }

  .recruit-contact-section .contact-hero h2 {
    margin: 0;
    font-size: clamp(50px, 4.2vw, 78px);
    line-height: 1.18;
  }

  .recruit-contact-section .contact-buttons {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .recruit-message {
    width: 100%;
    margin-bottom: 54px;
    padding: 58px 0;
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
  }

  .recruit-message h3 {
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1.28;
  }

  .recruit-entry h3 {
    color: #fff;
  }

  .recruit-contact-section {
    width: var(--layout-page-mobile);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 0 76px;
  }

  .recruit-contact-section .contact-hero {
    min-height: 0;
    border: 0;
    background: transparent;
  }

  .recruit-contact-section .contact-hero-copy {
    padding: 0;
    text-align: left;
  }
}

.recruit-entry .recruit-line-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.recruit-line-entry i {
  flex: 0 0 auto;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 900px) {
  .recruit-entry .recruit-line-entry {
    width: 100%;
  }
}

/* YouTube performance: make the numbers a designed proof block, not a thin stat row */
.performance.performance-youtube {
  width: var(--layout-page);
  max-width: none;
  margin: clamp(54px, 6vw, 92px) auto clamp(58px, 6vw, 96px);
  padding: 0;
  overflow: visible;
}

.performance-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.performance-copy p:not(.section-label) {
  margin: 0;
  color: #4b515a;
  font-weight: 800;
}

.performance-metrics {
  display: grid;
  border-top: 1px solid var(--layout-line);
  border-left: 1px solid var(--layout-line);
}

.performance-metrics .metric {
  position: relative;
  min-height: 0;
  border-left: 0;
  border-right: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
  background: #fff;
  text-align: left;
}

.performance-metrics .metric::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 1px);
  height: 4px;
  background: linear-gradient(90deg, #3478f6 0%, #6fd0d6 30%, #e9499a 62%, #ffb33d 100%);
  content: "";
}

.performance-metrics .metric strong {
  display: block;
  width: 100%;
  max-width: 100%;
  color: #1f2024;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.performance-metrics .metric strong span {
  margin-left: 0.04em;
  font-size: 0.42em;
}

.performance-metrics .metric small {
  display: block;
  margin-top: 16px;
  color: #565d66;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

@media (min-width: 901px) {
  .performance.performance-youtube {
    display: grid;
    grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
    gap: clamp(46px, 4.8vw, 78px);
    align-items: stretch;
    padding-top: clamp(18px, 2vw, 34px);
    padding-bottom: clamp(18px, 2vw, 34px);
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
  }

  .performance-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 330px;
    padding-right: clamp(28px, 3vw, 48px);
  }

  .performance-copy .section-label {
    margin-bottom: 38px;
  }

  .performance-copy h2 {
    max-width: 520px;
    margin-bottom: 28px;
    font-size: clamp(42px, 3.15vw, 60px);
    line-height: 1.18;
  }

  .performance-copy p:not(.section-label) {
    max-width: 520px;
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.95;
  }

  .performance-metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .performance-metrics .metric {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 245px;
    padding: clamp(30px, 2.3vw, 42px) clamp(18px, 1.5vw, 28px);
  }

  .performance-metrics .metric:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .performance-metrics .metric:nth-child(n + 4) {
    grid-column: span 3;
  }

  .performance-metrics .metric-visual {
    display: block !important;
    width: 58px;
    height: 34px;
    margin: 0 0 clamp(54px, 4.6vw, 72px);
    opacity: 0.9;
    transform: none;
  }

  .performance-metrics .metric strong {
    margin-top: auto;
    font-size: clamp(36px, 2.8vw, 54px);
    line-height: 1;
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(32px, 2.45vw, 46px);
  }

  .works-section {
    padding-top: clamp(44px, 5vw, 74px);
  }

  .works-head {
    width: 100%;
    margin-bottom: 42px;
    padding: clamp(34px, 4vw, 58px) clamp(34px, 4vw, 58px);
    border: 1px solid var(--layout-line);
    background: #f6f6f6;
  }

  .works-head h2 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(48px, 4vw, 76px);
    line-height: 1.1;
  }

  .works-head p:not(.section-label) {
    max-width: 520px;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.8;
  }

  .company-domain-section h2 {
    max-width: 860px;
  }

  .company-domain-list h3 {
    max-width: 620px;
  }
}

@media (min-width: 901px) {
  .company-domain-section {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .company-domain-section .section-label {
    grid-column: 1 / -1;
  }

  .company-domain-section h2 {
    grid-column: 1;
    max-width: none;
    margin-bottom: 42px;
    font-size: clamp(52px, 4.15vw, 78px);
    line-height: 1.18;
  }

  .company-domain-list {
    grid-column: 1 / -1;
    position: relative;
    border: 1px solid var(--layout-line);
    background: #fff;
  }

  .company-domain-list article {
    position: relative;
    border-right: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
    background: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .company-domain-list article::before {
    display: none;
  }

  .company-domain-list article::after {
    content: none;
  }

  .company-domain-list article:hover {
    background: #fff;
    transform: translateY(-2px);
  }

  .company-domain-list span {
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    margin-bottom: clamp(44px, 4.4vw, 64px);
    padding: 0;
    border: 0;
    background: transparent;
    color: #5a6069;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 901px) and (max-width: 1380px) {
  .performance.performance-youtube {
    grid-template-columns: 1fr;
  }

  .performance-copy {
    min-height: 0;
    padding-right: 0;
  }

  .performance-copy h2 {
    max-width: 860px;
  }

  .performance-metrics .metric {
    min-height: 230px;
  }
}

@media (max-width: 900px) {
  .performance.performance-youtube {
    display: block;
    width: var(--layout-page-mobile);
    margin: 48px auto 58px;
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
    padding: 48px 0;
  }

  .performance-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.18;
  }

  .performance-copy p:not(.section-label) {
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 1.9;
  }

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

  .performance-metrics .metric {
    padding: 26px 20px;
  }

  .performance-metrics .metric strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(24px, 7vw, 32px);
  }

  .performance-metrics .metric:last-child {
    grid-column: 1 / -1;
  }

  .works-head {
    margin-bottom: 28px;
    padding: 34px 24px;
    border: 1px solid var(--layout-line);
    background: #f6f6f6;
  }
}

/* Top company cards: remove mismatched legacy logos and show both companies as equal text cards */
.company-card-tag {
  display: block;
  margin-bottom: clamp(38px, 4vw, 58px);
  color: rgba(32, 33, 36, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

@media (min-width: 901px) {
  .company-section .company-card-logo {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 0;
    padding: clamp(34px, 3vw, 48px);
  }

  .company-section .company-card-logo h3,
  .company-section .company-card-logo p,
  .company-section .company-card-logo ul {
    grid-column: auto;
  }

  .company-section .company-card-logo h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .company-card-tag {
    margin-bottom: 32px;
  }
}

/* YouTube works headline: replace the large empty gray slab with an intentional proof header */
.works-proof {
  position: relative;
  display: grid;
  align-content: end;
  box-sizing: border-box;
  min-width: 0;
  min-height: 100%;
  color: #fff;
  background: #1d1d1f;
  overflow: hidden;
}

.works-proof::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3478f6 0%, #6fd0d6 30%, #e9499a 62%, #ffb33d 100%);
  content: "";
}

.works-proof span {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.works-proof strong {
  display: block;
  max-width: 100%;
  margin: 18px 0 12px;
  font-size: clamp(72px, 7vw, 118px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.works-proof p {
  max-width: min(320px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

@media (min-width: 901px) {
  .works-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.32fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: clamp(30px, 3.5vw, 52px);
    padding: 0;
    border: 1px solid var(--layout-line);
    background: #fff;
  }

  .works-head > div:first-child {
    padding: clamp(38px, 4.3vw, 68px);
    background:
      linear-gradient(90deg, rgba(247, 247, 247, 0.96) 0%, rgba(247, 247, 247, 0.74) 64%, #fff 100%);
  }

  .works-head h2 {
    max-width: 900px;
    margin: 0 0 22px;
    font-size: clamp(54px, 4.7vw, 86px);
    line-height: 1.05;
  }

  .works-head p:not(.section-label) {
    max-width: 620px;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.9;
  }

  .works-proof {
    padding: clamp(34px, 3vw, 46px);
  }
}

@media (max-width: 900px) {
  .works-head {
    display: grid;
    gap: 0;
    padding: 0;
    background: #fff;
  }

  .works-head > div:first-child {
    padding: 34px 24px;
    background: #f6f6f6;
  }

  .works-head h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .works-proof {
    min-height: 190px;
    padding: 28px 24px;
  }
}

/* Final tightening for the YouTube archive area */
@media (min-width: 901px) {
  .works-section {
    padding-top: clamp(44px, 4.2vw, 72px);
    padding-bottom: clamp(78px, 6vw, 108px);
    background: #fff;
  }

  .works-head {
    margin-bottom: clamp(26px, 3vw, 42px);
  }

  .works-grid {
    padding: clamp(18px, 2vw, 28px);
    background: #f2f2f2;
  }

  .works-head > div:first-child {
    padding: clamp(44px, 4vw, 64px) clamp(42px, 4.8vw, 72px);
  }

  .works-head h2 {
    max-width: 1060px;
    font-size: clamp(62px, 5.4vw, 102px);
    line-height: 1;
  }

  .works-proof {
    padding: clamp(38px, 3.3vw, 52px);
  }
}

@media (max-width: 900px) {
  .works-section {
    padding-top: 44px;
    background: #fff;
  }

  .works-head h2 {
    line-height: 1.06;
  }

  .works-grid {
    padding: 16px;
    background: #f2f2f2;
  }
}

/* Editorial CTA blocks: give recruit/contact a reason to be read */
.recruit-banner-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.recruit-banner-roles span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--layout-line);
  background: #fff;
  color: #202124;
  font-size: 12px;
  font-weight: 900;
}

.recruit-banner-side {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 258px;
  padding: clamp(30px, 3vw, 44px);
  background: #1d1d1f;
  color: #fff;
  overflow: hidden;
}

.recruit-banner-side::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3478f6 0%, #6fd0d6 30%, #e9499a 62%, #ffb33d 100%);
  content: "";
}

.recruit-banner-side > span {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recruit-banner-side strong {
  display: block;
  max-width: 360px;
  margin-bottom: 28px;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0;
}

.contact-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #4b515a;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.95;
}

.contact-topic-list {
  padding: 26px;
  border: 1px solid var(--layout-line);
  background: #f6f6f6;
}

.contact-topic-list span {
  display: block;
  margin-bottom: 18px;
  color: #6a7078;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-topic-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-topic-list li {
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid var(--layout-line);
  background: #fff;
  color: #202124;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

@media (min-width: 901px) {
  .recruit-entry-banner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.36fr);
    gap: clamp(44px, 5vw, 82px);
    align-items: stretch;
    margin-bottom: clamp(64px, 7vw, 112px);
    padding: 0;
    border: 1px solid var(--layout-line);
    background: #f7f7f7;
  }

  .recruit-entry-banner > div:first-child {
    padding: clamp(42px, 4.2vw, 68px);
  }

  .recruit-entry-banner h2 {
    max-width: 1060px;
    font-size: clamp(48px, 4.05vw, 74px);
    line-height: 1.06;
  }

  .recruit-entry-banner p:not(.section-label) {
    max-width: 720px;
  }

  .recruit-entry-banner .button-primary {
    width: 100%;
    min-width: 0;
    color: #202124;
    border-color: #fff;
    background: #fff;
  }

  .contact-section {
    align-items: stretch;
    padding: clamp(76px, 7vw, 112px) 0;
  }

  .contact-hero h2 {
    max-width: 820px;
    font-size: clamp(48px, 4.2vw, 76px);
    line-height: 1.2;
  }

  .contact-buttons {
    align-content: center;
    padding: clamp(24px, 2.4vw, 34px);
    border: 1px solid var(--layout-line);
    background: #f6f6f6;
  }
}

@media (max-width: 900px) {
  .recruit-entry-banner {
    margin-bottom: 64px;
    padding: 0;
    border: 1px solid var(--layout-line);
    background: #f7f7f7;
  }

  .recruit-entry-banner > div:first-child {
    padding: 34px 24px;
  }

  .recruit-banner-side {
    min-height: 220px;
  }

  .contact-topic-list ul {
    grid-template-columns: 1fr;
  }
}

/* Column archive: remove bulky category block and use tag filtering + clickable article cards */
.column-tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.column-tag-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--layout-line);
  border-radius: 0;
  background: #fff;
  color: #202124;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.column-tag-filter button.is-active {
  border-color: #202124;
  background: #202124;
  color: #fff;
}

.column-card {
  color: inherit;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.column-card::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-height: 28px;
  margin-top: 42px;
  border-radius: 999px;
  background: #202124;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  content: "↗";
}

.column-card:hover {
  background: #f7f7f7;
  transform: translateY(-2px);
}

.column-card[hidden] {
  display: none !important;
}

.column-article-main {
  width: var(--layout-page);
  margin: 0 auto;
}

.column-article-hero {
  display: grid;
  gap: 34px;
  padding: clamp(74px, 8vw, 124px) 0 clamp(56px, 6vw, 92px);
  border-top: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
}

.column-article-hero time,
.column-article-tag {
  color: #69707a;
  font-size: 13px;
  font-weight: 900;
}

.column-article-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 96px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.column-article-hero p {
  max-width: 740px;
  margin: 0;
  color: #424850;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 800;
  line-height: 2;
}

.column-article-body {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.34fr);
  gap: clamp(56px, 6vw, 110px);
  padding: clamp(64px, 7vw, 108px) 0;
}

.column-article-content {
  display: grid;
  gap: 42px;
}

.column-article-content section {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--layout-line);
}

.column-article-content h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 2.3vw, 44px);
  font-weight: 900;
  line-height: 1.3;
}

.column-article-content p {
  margin: 0;
  color: #333941;
  font-size: 16px;
  font-weight: 800;
  line-height: 2.05;
}

.column-article-side {
  align-self: start;
  position: sticky;
  top: 130px;
  padding: 28px;
  border: 1px solid var(--layout-line);
  background: #f6f6f6;
}

.column-article-side h2 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 900;
}

.column-article-side a {
  color: inherit;
  font-weight: 900;
}

@media (max-width: 900px) {
  .column-article-main {
    width: var(--layout-page-mobile);
  }

  .column-article-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .column-article-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .column-article-side {
    position: static;
  }
}

/* Cases hero: reduce oversized line breaks so the page title is actually readable */
@media (min-width: 901px) {
  .cases-hero {
    grid-template-columns: minmax(720px, 0.86fr) minmax(360px, 0.42fr);
    gap: clamp(54px, 6vw, 96px);
    align-items: end;
    min-height: auto;
    padding: clamp(74px, 8vw, 118px) 0 clamp(74px, 7vw, 108px);
  }

  .cases-hero h1 {
    max-width: 980px;
    font-size: clamp(50px, 4.15vw, 78px);
    line-height: 1.18;
  }

  .cases-hero p:not(.section-label) {
    max-width: 480px;
    padding-bottom: 10px;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.95;
  }
}

@media (max-width: 900px) {
  .cases-hero {
    min-height: auto;
    padding: 58px 0 64px;
  }

  .cases-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.24;
  }
}

/* Creative cases archive: category tabs and compact gallery cards */
.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(30px, 3vw, 46px);
}

.case-tabs button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--layout-line);
  border-radius: 0;
  background: #fff;
  color: #202124;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.case-tabs button span {
  color: rgba(32, 33, 36, 0.5);
}

.case-tabs button.is-active {
  border-color: #202124;
  background: #202124;
  color: #fff;
}

.case-tabs button.is-active span {
  color: rgba(255, 255, 255, 0.62);
}

.case-card[hidden] {
  display: none !important;
}

.case-thumb-recruit {
  background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 44%, #d8e2f8 100%);
}

.case-thumb-proposal {
  background: linear-gradient(135deg, #f4f2ef 0%, #ffffff 44%, #ded8cc 100%);
}

.case-thumb-youtube {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 44%, #dbe6f6 100%);
}

.case-thumb-logo {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 44%, #e0e0e0 100%);
}

.case-thumb-system {
  background:
    linear-gradient(135deg, rgba(64, 132, 255, 0.16), rgba(255, 255, 255, 0.86) 44%, rgba(40, 210, 148, 0.16)),
    #f7f9fb;
}

.case-thumb-system::after {
  content: "SYSTEM";
}

@media (min-width: 901px) {
  .case-list-section {
    padding-top: clamp(72px, 7vw, 108px);
  }

  .case-section-head {
    display: block;
    margin-bottom: clamp(34px, 4vw, 56px);
  }

  .case-section-head h1,
  .case-section-head h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(54px, 4.4vw, 82px);
    line-height: 1.08;
  }

  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2vw, 34px);
    border: 0;
    background: transparent;
    padding: 0;
  }

  .case-card {
    min-height: 0;
    border: 1px solid var(--layout-line);
    background: #fff;
  }

  .case-thumb {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .case-card-body {
    min-height: 260px;
    padding: 30px 30px 28px;
  }

  .case-card h3 {
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.36;
  }

  .case-card p {
    font-size: 14px;
    line-height: 1.85;
  }
}

@media (max-width: 900px) {
  .case-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .case-tabs button {
    flex: 0 0 auto;
  }

  .case-grid {
    gap: 18px;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .case-card {
    border: 1px solid var(--layout-line);
  }
}

/* Service section: keep the headline readable without colliding with the cards */
@media (min-width: 901px) {
  .service-section {
    grid-template-columns: minmax(520px, 0.68fr) minmax(760px, 1fr);
    gap: clamp(72px, 6vw, 112px);
    align-items: start;
    overflow: hidden;
  }

  .service-section .section-intro {
    min-width: 0;
    max-width: 620px;
  }

  .service-section .section-intro h2 {
    max-width: 620px;
    font-size: clamp(48px, 3.35vw, 68px);
    line-height: 1.16;
    letter-spacing: 0;
  }

  .service-section .section-intro h2 span {
    display: block;
    white-space: nowrap;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 560px;
    font-size: clamp(15px, 0.92vw, 17px);
    line-height: 1.95;
  }

  .service-section .service-grid {
    min-width: 0;
    align-self: start;
  }

  .service-section .service-card {
    min-height: 244px;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .service-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-section .section-intro,
  .service-section .section-intro h2,
  .service-section .section-intro p:not(.section-label) {
    max-width: 980px;
  }

  .service-section .section-intro h2 {
    font-size: clamp(48px, 5vw, 72px);
  }
}

/* Columns hero: make the archive purpose readable instead of oversized */
@media (min-width: 901px) {
  .columns-hero {
    grid-template-columns: minmax(620px, 0.82fr) minmax(440px, 0.58fr);
    gap: clamp(72px, 8vw, 140px);
    align-items: center;
    min-height: auto;
    padding: clamp(112px, 12vh, 154px) 0 clamp(100px, 10vh, 136px);
  }

  .columns-hero h1 {
    max-width: 820px;
    font-size: clamp(54px, 4.4vw, 82px);
    line-height: 1.16;
  }

  .columns-hero p:not(.section-label) {
    max-width: 560px;
    font-size: clamp(15px, 0.95vw, 17px);
    line-height: 2;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .columns-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .columns-hero h1,
  .columns-hero p:not(.section-label) {
    max-width: 920px;
  }
}

/* Column reading system: note-like archive and markdown-friendly article typography */
.column-list-section {
  padding-bottom: clamp(72px, 8vw, 120px);
}

.column-section-head {
  align-items: end;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.column-tag-filter {
  gap: 8px;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.column-tag-filter button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
}

.column-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--layout-line);
}

.column-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.18fr) minmax(0, 1fr) 44px;
  column-gap: clamp(24px, 3vw, 48px);
  align-items: start;
  min-height: 176px;
  padding: clamp(28px, 3vw, 42px) 0;
  border-right: 0;
  border-bottom: 1px solid var(--layout-line);
  border-left: 0;
  background: transparent;
}

.column-card time,
.column-card span {
  grid-column: 1;
  color: #6a7078;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.column-card span {
  margin-top: 28px;
}

.column-card h3,
.column-card p {
  grid-column: 2;
}

.column-card h3 {
  max-width: 860px;
  margin: 0 0 14px;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.38;
}

.column-card p {
  max-width: 760px;
  color: #4f5660;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 700;
  line-height: 1.9;
}

.column-card::after {
  grid-column: 3;
  align-self: center;
  width: 38px;
  min-height: 38px;
  margin: 0;
  border: 1px solid var(--layout-line);
  background: #fff;
  color: #202124;
}

.column-card:hover {
  background: #fafafa;
  transform: none;
}

.column-article-main {
  width: min(100% - 288px, 1320px);
}

.column-article-hero {
  gap: 24px;
  padding: clamp(72px, 7vw, 112px) 0 clamp(48px, 5vw, 76px);
}

.column-article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.22;
}

.column-article-hero p {
  max-width: 760px;
  color: #4f5660;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.column-article-eyecatch {
  margin: 0 0 clamp(42px, 5vw, 70px);
}

.column-article-eyecatch img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--layout-line);
}

.column-article-body {
  grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
  justify-content: center;
  gap: clamp(54px, 6vw, 96px);
}

.column-article-content {
  display: block;
}

.column-article-content section {
  padding: 0 0 clamp(42px, 5vw, 70px);
  border-bottom: 0;
}

.column-article-content section + section {
  padding-top: clamp(12px, 2vw, 28px);
}

.column-article-content h2 {
  position: relative;
  margin: 0 0 22px;
  padding-top: 6px;
  font-size: clamp(28px, 2.1vw, 38px);
  line-height: 1.42;
}

.column-article-content h2::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #3478f6, #6fd0d6, #e9499a, #ffb33d);
  content: "";
}

.column-article-content h3 {
  margin: 34px 0 14px;
  padding-left: 14px;
  border-left: 4px solid #202124;
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 900;
  line-height: 1.5;
}

.column-article-content h4 {
  margin: 28px 0 10px;
  color: #3b4149;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 900;
  line-height: 1.6;
}

.column-article-content p,
.column-article-content li {
  color: #2f343b;
  font-size: clamp(16px, 1.02vw, 18px);
  font-weight: 600;
  line-height: 2.05;
}

.column-article-content p + p {
  margin-top: 1.25em;
}

.column-article-content ul,
.column-article-content ol {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 1.4em;
}

.column-article-content blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 4px solid #3478f6;
  background: #f6f8fb;
  color: #303741;
  font-weight: 700;
  line-height: 1.95;
}

.column-article-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 clamp(42px, 5vw, 70px);
}

.column-article-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--layout-line);
}

.column-article-side {
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
  background: transparent;
}

.column-article-side h2 {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.column-article-side p {
  color: #5b626c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .column-card {
    grid-template-columns: 1fr 34px;
    min-height: 0;
  }

  .column-card time,
  .column-card span,
  .column-card h3,
  .column-card p {
    grid-column: 1;
  }

  .column-card span {
    margin: 4px 0 18px;
  }

  .column-card::after {
    grid-column: 2;
    grid-row: 1 / span 4;
    width: 34px;
    min-height: 34px;
  }

  .column-article-main {
    width: var(--layout-page-mobile);
  }

  .column-article-photo-grid {
    grid-template-columns: 1fr;
  }
}

/* YouTube works: direct channel links with a sharper proof-card treatment */
.works-grid .work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0 0 28px;
  border: 1px solid var(--layout-line);
  border-radius: 0;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.works-grid .work-card:hover {
  border-color: #202124;
  box-shadow: 0 24px 60px rgba(20, 24, 32, 0.12);
  transform: translateY(-4px);
}

.works-grid .work-card > span {
  display: none;
}

.works-grid .work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 0.24s ease, transform 0.24s ease;
}

.works-grid .work-card:hover img {
  filter: saturate(1.03) contrast(1.05);
  transform: scale(1.018);
}

.works-grid .work-card h3 {
  margin: 26px 28px 18px;
  color: #202124;
  font-size: clamp(24px, 1.7vw, 34px);
  font-weight: 900;
  line-height: 1.24;
}

.works-grid .work-card .work-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  width: auto;
  margin: 0 28px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--layout-line);
  border-radius: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
}

.works-grid .work-card .work-stats span {
  position: static;
  display: block;
  min-width: 116px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-family: inherit;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.works-grid .work-card .work-stats span::before {
  content: none;
}

.works-grid .work-card .work-stats small {
  display: block;
  margin-bottom: 6px;
  color: rgba(32, 33, 36, 0.46);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.works-grid .work-card .work-stats strong {
  display: block;
  color: #202124;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: nowrap;
}

.works-grid .work-card::after {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 34px;
  margin: 22px 28px 0;
  padding: 0 14px;
  border-radius: 999px;
  background: #202124;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  content: "YouTube Channel  ↗";
}

@media (max-width: 900px) {
  .works-grid .work-card {
    padding-bottom: 24px;
  }

  .works-grid .work-card h3,
  .works-grid .work-card .work-stats {
    margin-inline: 22px;
  }

  .works-grid .work-card .work-stats strong {
    font-size: 18px;
  }

  .works-grid .work-card::after {
    margin-inline: 22px;
  }
}

/* Footer: unify sizing across top and lower pages */
.footer {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
  width: 100%;
  min-height: 190px;
  padding: 44px max(72px, calc((100vw - 1480px) / 2));
  background: var(--np-soft);
}

.footer > div {
  min-width: 0;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer p,
.footer small,
.footer a {
  font-size: 12px;
  line-height: 1.6;
}

.footer nav {
  align-items: center;
}

@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    padding: 38px 24px;
    text-align: center;
  }

  .footer-logo {
    width: 148px;
  }

  .footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* YouTube performance: remove temporary icon illustrations */
.performance-metrics .metric-visual {
  display: none !important;
}

/* YouTube performance: calm monochrome proof block and fixed reading rhythm */
.performance-metrics .metric::before {
  display: none;
}

.performance-metrics {
  border-top-color: rgba(32, 33, 36, 0.16);
  border-left-color: rgba(32, 33, 36, 0.16);
}

.performance-metrics .metric {
  border-right-color: rgba(32, 33, 36, 0.16);
  border-bottom-color: rgba(32, 33, 36, 0.16);
}

@media (min-width: 901px) {
  .performance.performance-youtube {
    grid-template-columns: minmax(560px, 0.54fr) minmax(0, 1fr);
    gap: clamp(42px, 4vw, 64px);
    align-items: center;
  }

  .performance-copy {
    min-height: 360px;
    justify-content: center;
    padding-right: 0;
  }

  .performance-copy .section-label {
    margin-bottom: clamp(42px, 4vw, 58px);
  }

  .performance-copy h2 {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: clamp(48px, 3.15vw, 60px);
    line-height: 1.16;
  }

  .performance-copy p:not(.section-label) {
    max-width: 640px;
    color: #4b515a;
    font-size: clamp(14px, 0.9vw, 16px);
    line-height: 1.9;
  }

  .performance-metrics .metric {
    justify-content: flex-end;
    min-height: 236px;
    padding: clamp(34px, 2.5vw, 48px) clamp(20px, 1.6vw, 30px);
  }

  .performance-metrics .metric strong {
    margin-top: 0;
  }
}

@media (min-width: 901px) and (max-width: 1380px) {
  .performance-copy h2 {
    max-width: 620px;
  }

  .performance-copy p:not(.section-label) br {
    display: none;
  }
}

/* Top company: keep both company summaries visible as one compact block */
@media (min-width: 901px) {
  .company-section {
    grid-template-columns: 1fr;
    gap: clamp(30px, 3vw, 44px);
    align-items: start;
    padding-top: clamp(64px, 5vw, 82px);
    padding-bottom: clamp(64px, 5vw, 82px);
  }

  .company-section .company-info {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }

  .company-section .company-info p {
    max-width: 760px;
    margin-bottom: clamp(24px, 2vw, 32px);
  }

  .company-section .company-info dl div {
    padding-block: 18px;
  }

  .company-section .company-card-stack {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) repeat(2, minmax(260px, 1fr));
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 24px 0 0;
    border-top: 1px solid var(--layout-line);
  }

  .company-section .company-card-stack-label {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    color: #6a7078;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .company-section .company-card-logo {
    grid-column: auto;
    grid-row: 1 / span 2;
    min-height: 0;
    padding: 0 clamp(26px, 3vw, 48px);
    border-left: 1px solid var(--layout-line);
    row-gap: 0;
  }

  .company-section .company-card-logo:first-of-type {
    grid-column: 2;
  }

  .company-section .company-card-logo:last-of-type {
    grid-column: 3;
  }

  .company-section .company-card-logo + .company-card-logo {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .company-section .company-card-logo .company-card-tag {
    margin-bottom: 14px;
    color: #8b9097;
    font-size: 11px;
    text-transform: uppercase;
  }

  .company-section .company-card-logo h3 {
    margin: 0 0 6px;
    font-size: clamp(24px, 1.45vw, 28px);
    line-height: 1.22;
  }

  .company-section .company-card-logo p {
    margin: 0 0 14px;
  }

  .company-section .company-card-logo ul {
    gap: 2px;
    font-size: 12.5px;
    line-height: 1.52;
  }

  .company-stack-note {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    max-width: 230px;
    margin: 36px 28px 0 0;
    padding-top: 0;
    border-top: 0;
    color: #4d535b;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.8;
  }
}

.office-list {
  display: grid;
  gap: 8px;
}

.office-list span {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
}

.office-list strong {
  color: #6a7078;
  font-size: 12px;
  font-weight: 900;
}

/* Top philosophy: keep the headline break intentional, not browser accidental */
.philosophy-copy h2 span {
  display: block;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .philosophy-copy h2 {
    max-width: 760px;
    font-size: clamp(54px, 4.6vw, 82px);
    line-height: 1.14;
  }
}

@media (max-width: 520px) {
  .philosophy-copy h2 span {
    white-space: normal;
  }
}

/* Local concept: animated brand-making playground for the philosophy whitespace */
@media (min-width: 901px) {
  .philosophy-dots {
    min-height: 520px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    mix-blend-mode: normal;
  }

  .philosophy-dots::before,
  .philosophy-dots::after {
    content: none;
  }

  .philosophy-playground {
    position: relative;
    width: min(100%, 560px);
    height: 520px;
    margin: 0 auto;
    color: #1d1d1f;
  }

  .philosophy-playground::before {
    position: absolute;
    inset: 78px 52px 70px;
    border: 1px solid rgba(29, 29, 31, 0.1);
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 50%, rgba(52, 120, 246, 0.14), transparent 26%),
      radial-gradient(circle at 18% 28%, rgba(255, 179, 61, 0.22), transparent 20%),
      radial-gradient(circle at 82% 72%, rgba(233, 73, 154, 0.18), transparent 18%);
    content: "";
    animation: philosophyGlow 8s ease-in-out infinite alternate;
  }

  .philosophy-playground::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.22), transparent);
    content: "";
    transform: translate(-50%, -50%) rotate(-24deg);
  }

  .playground-orbit {
    position: absolute;
    inset: 42px 36px;
    border: 1px dashed rgba(29, 29, 31, 0.18);
    border-radius: 999px;
    animation: philosophyOrbit 18s linear infinite;
  }

  .playground-orbit::before,
  .playground-orbit::after {
    position: absolute;
    inset: 54px 68px;
    border: 1px dashed rgba(29, 29, 31, 0.13);
    border-radius: 999px;
    content: "";
  }

  .playground-orbit::after {
    inset: 110px 138px;
    border-color: rgba(52, 120, 246, 0.24);
  }

  .playground-orbit i {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3478f6;
    box-shadow: 0 0 0 10px rgba(52, 120, 246, 0.1);
  }

  .playground-orbit i:nth-child(1) {
    left: 48%;
    top: -6px;
  }

  .playground-orbit i:nth-child(2) {
    right: 16%;
    bottom: 18px;
    background: #e9499a;
    box-shadow: 0 0 0 10px rgba(233, 73, 154, 0.1);
  }

  .playground-orbit i:nth-child(3) {
    left: 10%;
    bottom: 86px;
    background: #ffb33d;
    box-shadow: 0 0 0 10px rgba(255, 179, 61, 0.12);
  }

  .playground-card,
  .playground-core {
    position: absolute;
    z-index: 2;
    box-sizing: border-box;
    border: 1px solid rgba(29, 29, 31, 0.13);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 60px rgba(29, 29, 31, 0.08);
    backdrop-filter: blur(14px);
  }

  .playground-card {
    display: grid;
    gap: 8px;
    min-width: 172px;
    padding: 18px 20px;
    border-radius: 8px;
    animation: philosophyFloat 5.8s ease-in-out infinite alternate;
  }

  .playground-card em,
  .playground-core em {
    color: #6d737c;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .playground-card strong {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.25;
  }

  .playground-card-photo {
    left: 16px;
    top: 82px;
  }

  .playground-card-copy {
    right: 0;
    top: 156px;
    animation-delay: -2.2s;
  }

  .playground-card-movie {
    left: 78px;
    bottom: 82px;
    animation-delay: -4.1s;
  }

  .playground-core {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    animation: philosophyCore 6.5s ease-in-out infinite alternate;
  }

  .playground-core strong {
    display: block;
    margin-top: -34px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .playground-ticker {
    position: absolute;
    right: 22px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .playground-ticker b {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(29, 29, 31, 0.13);
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    font-weight: 900;
    animation: philosophyChip 3.8s ease-in-out infinite alternate;
  }

  .playground-ticker b:nth-child(2) {
    animation-delay: -0.8s;
  }

  .playground-ticker b:nth-child(3) {
    animation-delay: -1.6s;
  }

  .playground-ticker b:nth-child(4) {
    animation-delay: -2.4s;
  }
}

@keyframes philosophyOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes philosophyFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(14px, -18px, 0);
  }
}

@keyframes philosophyCore {
  from {
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    transform: translate(-50%, -50%) scale(1.045);
  }
}

@keyframes philosophyChip {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

@keyframes philosophyGlow {
  from {
    filter: saturate(0.9);
    opacity: 0.86;
  }

  to {
    filter: saturate(1.25);
    opacity: 1;
  }
}

@media (min-width: 901px) {
  .philosophy-section .philosophy-dots,
  .philosophy-section .philosophy-playground,
  .philosophy-section .playground-card,
  .philosophy-section .playground-core,
  .philosophy-section .playground-ticker {
    visibility: visible;
  }
}

/* Local concept: golden-ratio sketch drawn on scroll */
@media (min-width: 901px) {
  .philosophy-section .philosophy-dots {
    display: grid;
    place-items: center;
    min-height: 520px;
    border: 0;
    background: transparent;
    visibility: visible;
    overflow: visible;
    mix-blend-mode: normal;
  }

  .philosophy-section .philosophy-dots::before,
  .philosophy-section .philosophy-dots::after {
    content: none;
  }

  .golden-sketch {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 640 / 520;
    color: #202124;
  }

  .golden-sketch::before {
    position: absolute;
    inset: 12% 7% 8%;
    border-radius: 50%;
    background:
      radial-gradient(circle at 63% 24%, rgba(52, 120, 246, 0.12), transparent 24%),
      radial-gradient(circle at 26% 58%, rgba(255, 179, 61, 0.18), transparent 26%),
      radial-gradient(circle at 58% 74%, rgba(233, 73, 154, 0.12), transparent 24%);
    filter: blur(10px);
    opacity: 0;
    content: "";
    transition: opacity 0.7s ease 0.35s;
  }

  .golden-sketch.is-drawn::before {
    opacity: 1;
  }

  .golden-sketch-canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: drop-shadow(0 18px 34px rgba(32, 33, 36, 0.08));
    transition: opacity 0.28s ease;
  }

  .golden-sketch.is-drawing .golden-sketch-canvas,
  .golden-sketch.is-drawn .golden-sketch-canvas {
    opacity: 1;
  }

  .golden-sketch-svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .sketch-line {
    --dash-start: 1800;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    opacity: 0;
    vector-effect: non-scaling-stroke;
  }

  .sketch-line-frame {
    stroke-width: 2.2;
    opacity: 0.72;
  }

  .sketch-line-grid {
    stroke-width: 1.35;
    opacity: 0.28;
  }

  .sketch-line-spiral {
    --dash-start: 2400;
    stroke-width: 4;
    opacity: 0.92;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
  }

  .sketch-line-mark {
    stroke-width: 1.8;
    opacity: 0.24;
  }

  .golden-sketch.is-drawn .sketch-line {
    animation: drawSketchLine 1.25s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }

  .golden-sketch.is-drawn .sketch-line-frame {
    animation-duration: 1.4s;
  }

  .golden-sketch.is-drawn .sketch-line-grid {
    animation-duration: 0.9s;
    animation-delay: 0.48s;
  }

  .golden-sketch.is-drawn .sketch-line-spiral {
    animation-duration: 2.55s;
    animation-delay: 1.1s;
  }

  .golden-sketch.is-drawn .sketch-line-mark {
    animation-duration: 0.95s;
    animation-delay: 2.8s;
  }

  .sketch-dot {
    fill: #3478f6;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
  }

  .sketch-dot-two {
    fill: #ffb33d;
  }

  .sketch-dot-three {
    fill: #e9499a;
  }

  .golden-sketch.is-drawn .sketch-dot {
    animation: sketchDotIn 0.5s ease forwards;
  }

  .golden-sketch.is-drawn .sketch-dot-one {
    animation-delay: 1.1s;
  }

  .golden-sketch.is-drawn .sketch-dot-two {
    animation-delay: 2.15s;
  }

  .golden-sketch.is-drawn .sketch-dot-three {
    animation-delay: 3.25s;
  }
}

@keyframes drawSketchLine {
  from {
    stroke-dashoffset: var(--dash-start, 1800);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes sketchDotIn {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .golden-sketch::before,
  .sketch-line,
  .sketch-dot {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* Adopted golden-ratio pen animation: quiet SVG sketch, triggered on scroll */
@media (min-width: 901px) {
  .philosophy-section {
    overflow: visible;
  }

  .philosophy-copy {
    position: relative;
    z-index: 2;
  }

  .philosophy-section .philosophy-dots {
    z-index: 0;
  }

  .golden-sketch {
    width: min(100%, 660px);
    aspect-ratio: 680 / 420;
    transform: translateX(-18px) scale(1.04);
    transform-origin: center;
  }

  .golden-sketch::before {
    content: none;
  }

  .golden-sketch-svg {
    width: 100%;
    height: auto;
    overflow: visible;
    color: #202124;
    filter: drop-shadow(0 18px 34px rgba(32, 33, 36, 0.04));
  }

  .golden-square {
    fill: none;
    stroke: rgba(20, 20, 20, 0.16);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.56;
    transition:
      opacity 900ms ease,
      stroke 900ms ease,
      filter 900ms ease;
    vector-effect: non-scaling-stroke;
  }

  .golden-square.is-lit {
    stroke: rgba(204, 120, 92, 0.34);
    opacity: 0.78;
    filter: drop-shadow(0 0 9px rgba(204, 120, 92, 0.18));
  }

  .golden-guide {
    fill: none;
    stroke: rgba(20, 20, 20, 0.12);
    stroke-width: 0.95;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    vector-effect: non-scaling-stroke;
  }

  .golden-spiral {
    fill: none;
    stroke: rgba(204, 120, 92, 0.58);
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .golden-pen-tip {
    fill: rgba(204, 120, 92, 0.86);
  }

  .golden-spiral-light {
    fill: none;
    stroke: url("#golden-sketch-light");
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    opacity: 0;
    filter: blur(7px);
    vector-effect: non-scaling-stroke;
  }

  .golden-sketch.is-drawn .golden-guide {
    animation: drawGoldenGuide 3.8s ease forwards;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(1) {
    animation-delay: 0.35s;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(2) {
    animation-delay: 1.1s;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(3) {
    animation-delay: 1.85s;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(4) {
    animation-delay: 2.6s;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(5) {
    animation-delay: 3.35s;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(6) {
    animation-delay: 4.1s;
  }

  .golden-sketch.is-drawn .golden-guide:nth-of-type(7) {
    animation-delay: 4.85s;
  }

  .golden-sketch.is-drawn .golden-spiral {
    animation: none;
  }

  .golden-sketch.is-drawn .golden-spiral-light {
    animation:
      drawGoldenSpiralLight 14.5s cubic-bezier(0.58, 0.02, 0.15, 1) 4.6s forwards,
      goldenLightPulse 5.8s ease-in-out 5s infinite alternate;
  }
}

@keyframes drawGoldenGuide {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawGoldenSpiral {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawGoldenSpiralLight {
  0% {
    opacity: 0;
    stroke-dashoffset: 2400;
  }

  8% {
    opacity: 0.18;
  }

  100% {
    opacity: 0.28;
    stroke-dashoffset: 0;
  }
}

@keyframes goldenLightPulse {
  from {
    opacity: 0.18;
  }

  to {
    opacity: 0.34;
  }
}

@media (prefers-reduced-motion: reduce) {
  .golden-square,
  .golden-guide,
  .golden-spiral,
  .golden-spiral-light {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }

  .golden-spiral-light {
    opacity: 0.22 !important;
  }
}

/* Top philosophy: full-field golden-ratio draft line */
@media (min-width: 901px) {
  .philosophy-section {
    isolation: isolate;
    overflow: hidden;
  }

  .philosophy-section .philosophy-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    min-height: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
  }

  .philosophy-copy {
    grid-column: 2;
    position: relative;
    z-index: 2;
  }

  .philosophy-copy::before {
    position: absolute;
    inset: -58px -80px -54px -64px;
    z-index: -1;
    background:
      radial-gradient(ellipse at 58% 44%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.62) 61%, rgba(255, 255, 255, 0) 82%);
    filter: blur(5px);
    content: "";
    pointer-events: none;
  }

  .golden-sketch {
    position: absolute;
    inset: -2px;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    transform: none;
    transform-origin: center;
  }

  .golden-sketch-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter:
      drop-shadow(0 18px 42px rgba(32, 33, 36, 0.045))
      drop-shadow(0 0 24px rgba(204, 120, 92, 0.035));
  }

  .golden-square {
    fill-opacity: 0;
    stroke: rgba(32, 33, 36, 0.16);
    stroke-width: 0.58;
    opacity: 0.62;
  }

  .golden-square.is-lit {
    stroke: rgba(32, 33, 36, 0.22);
    opacity: 0.72;
    filter: drop-shadow(0 0 12px rgba(32, 33, 36, 0.08));
  }

  .golden-spiral {
    stroke: rgba(32, 33, 36, 0.38);
    stroke-width: 1.45;
    opacity: 0.86;
  }

  .golden-pen-tip {
    fill: rgba(32, 33, 36, 0.78);
    filter: drop-shadow(0 0 12px rgba(32, 33, 36, 0.22));
  }

  .golden-fill-y {
    fill: #f1c40f;
  }

  .golden-fill-r {
    fill: #d33b36;
  }

  .golden-fill-b {
    fill: #2c5c8e;
  }

  .golden-fill-k {
    fill: #202124;
  }
}

/* Top service: dice-net unfolding motion */
@media (min-width: 901px) {
  .service-dice-net {
    perspective: 1600px;
    transform-style: preserve-3d;
  }

  .service-dice-net .service-card {
    border-radius: 0;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    transition:
      transform 1.05s cubic-bezier(0.18, 0.9, 0.22, 1),
      opacity 0.62s ease,
      filter 0.9s ease,
      box-shadow 0.9s ease,
      background-color 0.9s ease;
  }

  .service-dice-net:not(.is-unfolded) .service-card {
    opacity: 0.58;
    filter: saturate(0.82) contrast(0.96);
    box-shadow: 0 36px 70px rgba(32, 33, 36, 0.06);
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(1) {
    transform: translate3d(58%, 36%, -82px) rotateY(-72deg);
    transform-origin: right center;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(2) {
    transform: translate3d(0, 36%, 28px) rotateX(0deg);
    transform-origin: center bottom;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(3) {
    transform: translate3d(-58%, 36%, -82px) rotateY(72deg);
    transform-origin: left center;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(4) {
    transform: translate3d(58%, -38%, -92px) rotateX(68deg);
    transform-origin: center top;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(5) {
    transform: translate3d(0, -38%, -56px) rotateX(76deg);
    transform-origin: center top;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(6) {
    transform: translate3d(-58%, -38%, -92px) rotateX(68deg);
    transform-origin: center top;
  }

  .service-dice-net.is-unfolded .service-card {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }

  .service-dice-net.is-unfolded .service-card:nth-child(1) {
    transition-delay: 0ms;
  }

  .service-dice-net.is-unfolded .service-card:nth-child(2) {
    transition-delay: 90ms;
  }

  .service-dice-net.is-unfolded .service-card:nth-child(3) {
    transition-delay: 180ms;
  }

  .service-dice-net.is-unfolded .service-card:nth-child(4) {
    transition-delay: 270ms;
  }

  .service-dice-net.is-unfolded .service-card:nth-child(5) {
    transition-delay: 360ms;
  }

  .service-dice-net.is-unfolded .service-card:nth-child(6) {
    transition-delay: 450ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-dice-net .service-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Top service: BHB-inspired kinetic mosaic */
@media (min-width: 901px) {
  .service-section {
    display: block;
  }

  .service-section .section-intro {
    max-width: 780px;
    margin-bottom: clamp(44px, 4vw, 72px);
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 820px;
  }

  .service-dice-net {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(118px, 9.4vw, 176px);
    gap: 4px;
    width: 100%;
    border: 1px solid rgba(32, 33, 36, 0.13);
    background: rgba(32, 33, 36, 0.12);
    overflow: hidden;
    perspective: 1800px;
  }

  .service-dice-net .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    padding: clamp(24px, 2.7vw, 44px);
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    transform-origin: center;
    transition:
      transform 1.05s cubic-bezier(0.18, 0.9, 0.22, 1),
      opacity 0.65s ease,
      filter 0.8s ease,
      background-color 0.75s ease;
  }

  .service-dice-net .service-card::before {
    position: absolute;
    top: 18px;
    right: 18px;
    left: auto;
    width: 18px;
    height: 18px;
    border-top: 3px solid rgba(32, 33, 36, 0.12);
    border-right: 3px solid rgba(32, 33, 36, 0.12);
    background: transparent;
    content: "";
  }

  .service-dice-net .service-card::after {
    position: absolute;
    top: 18px;
    left: 18px;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(32, 33, 36, 0.08);
    border-radius: 3px;
    background:
      linear-gradient(rgba(32, 33, 36, 0.1), rgba(32, 33, 36, 0.1)) 4px 5px / 8px 1px no-repeat,
      linear-gradient(rgba(32, 33, 36, 0.1), rgba(32, 33, 36, 0.1)) 4px 9px / 8px 1px no-repeat;
    content: "";
    opacity: 0.8;
  }

  .service-dice-net .icon {
    margin: 0;
  }

  .service-dice-net .icon em {
    color: rgba(32, 33, 36, 0.5);
    font-size: clamp(18px, 1.5vw, 26px);
    letter-spacing: 0.08em;
  }

  .service-dice-net h3 {
    margin: auto 0 18px;
    font-size: clamp(42px, 4.3vw, 82px);
    line-height: 0.94;
    letter-spacing: 0;
  }

  .service-dice-net p {
    max-width: 92%;
    color: #343941;
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.62;
  }

  .service-dice-net .service-card:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 4;
    background: #fff;
  }

  .service-dice-net .service-card:nth-child(2) {
    grid-column: 4 / 8;
    grid-row: 1 / 2;
    background: #f7f7f8;
  }

  .service-dice-net .service-card:nth-child(3) {
    grid-column: 8 / 10;
    grid-row: 1 / 3;
    background: #f2f2f3;
  }

  .service-dice-net .service-card:nth-child(4) {
    grid-column: 4 / 7;
    grid-row: 2 / 4;
    background: #fff;
  }

  .service-dice-net .service-card:nth-child(5) {
    grid-column: 7 / 10;
    grid-row: 3 / 4;
    background: #fff;
  }

  .service-dice-net .service-card:nth-child(6) {
    grid-column: 10 / 13;
    grid-row: 1 / 4;
    background: #f8f8f9;
  }

  .service-dice-net .service-card:nth-child(2) h3,
  .service-dice-net .service-card:nth-child(5) h3 {
    font-size: clamp(34px, 3vw, 58px);
  }

  .service-dice-net .service-card:nth-child(3) h3,
  .service-dice-net .service-card:nth-child(6) h3 {
    align-self: center;
    margin: auto 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(44px, 4.5vw, 86px);
    line-height: 1;
  }

  .service-dice-net .service-card:nth-child(3) p,
  .service-dice-net .service-card:nth-child(6) p {
    align-self: flex-start;
    max-width: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1.55;
  }

  .service-dice-net .service-card:nth-child(2) p,
  .service-dice-net .service-card:nth-child(5) p {
    display: inline;
    max-width: max-content;
    padding: 0.08em 0.18em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: linear-gradient(transparent 40%, rgba(221, 73, 132, 0.22) 40%);
  }

  .service-dice-net:not(.is-unfolded) .service-card {
    opacity: 0;
    filter: blur(3px) saturate(0.82);
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(1) {
    transform: translate3d(40%, 12%, -140px) rotateY(-74deg) rotateZ(-1deg);
    transform-origin: right center;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(2) {
    transform: translate3d(-10%, 72%, -70px) rotateX(72deg);
    transform-origin: center bottom;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(3) {
    transform: translate3d(-60%, 22%, -120px) rotateY(78deg);
    transform-origin: left center;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(4) {
    transform: translate3d(26%, -52%, -110px) rotateX(-74deg);
    transform-origin: center top;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(5) {
    transform: translate3d(-18%, -86%, -90px) rotateX(-76deg);
    transform-origin: center top;
  }

  .service-dice-net:not(.is-unfolded) .service-card:nth-child(6) {
    transform: translate3d(-44%, 0, -150px) rotateY(76deg) rotateZ(1deg);
    transform-origin: left center;
  }

  .service-dice-net.is-unfolded .service-card {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .service-dice-net.is-unfolded .service-card:hover {
    z-index: 2;
    background: #fff;
    transform: translateY(-8px) scale(1.012);
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .service-dice-net {
    grid-auto-rows: clamp(118px, 12vw, 160px);
  }

  .service-dice-net h3 {
    font-size: clamp(36px, 4.8vw, 66px);
  }
}

/* Top company: separate profile information from business fields */
@media (min-width: 901px) {
  .company-section {
    gap: clamp(42px, 4vw, 64px);
  }

  .company-section .company-info p {
    max-width: 720px;
  }

  .company-section .company-info dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--layout-line);
  }

  .company-section .company-info dl div {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 18px;
    min-height: 78px;
    padding: 20px 28px 20px 0;
    border-bottom: 1px solid var(--layout-line);
  }

  .company-section .company-info dl div:nth-child(odd) {
    border-right: 1px solid var(--layout-line);
  }

  .company-section .company-info dl div:nth-child(even) {
    padding-left: 28px;
  }

  .company-section .company-info dl div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .company-section .company-card-stack {
    grid-template-columns: minmax(360px, 0.82fr) repeat(2, minmax(280px, 1fr));
    min-height: 0;
    padding: 0;
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
    background: #fff;
  }

  .company-card-stack-intro {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    padding: clamp(28px, 3vw, 48px) clamp(28px, 3.4vw, 56px) clamp(28px, 3vw, 48px) 0;
  }

  .company-section .company-card-stack-label {
    margin: 0 0 26px;
    color: #6a7078;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
  }

  .company-card-stack-intro h3 {
    margin: 0;
    max-width: 420px;
    font-size: clamp(30px, 2.2vw, 42px);
    line-height: 1.22;
    letter-spacing: 0;
  }

  .company-card-stack-intro p:not(.company-card-stack-label) {
    max-width: 420px;
    margin: 22px 0 0;
    color: #4e5661;
    font-size: clamp(13px, 0.92vw, 15px);
    font-weight: 800;
    line-height: 1.9;
  }

  .company-section .company-card-logo {
    min-height: 280px;
    padding: clamp(30px, 3.1vw, 52px);
    border-left: 1px solid var(--layout-line);
  }

  .company-section .company-card-logo:first-of-type,
  .company-section .company-card-logo:last-of-type {
    grid-row: 1;
  }

  .company-section .company-card-logo:first-of-type {
    grid-column: 2;
  }

  .company-section .company-card-logo:last-of-type {
    grid-column: 3;
  }

  .company-section .company-card-logo .company-card-tag {
    margin-bottom: 26px;
  }

  .company-section .company-card-logo h3 {
    margin-bottom: 10px;
    font-size: clamp(26px, 1.75vw, 34px);
  }

  .company-section .company-card-logo p {
    margin-bottom: 26px;
  }

  .company-section .company-card-logo ul {
    gap: 7px;
    font-size: 13.5px;
    line-height: 1.55;
  }
}

@media (max-width: 900px) {
  .company-card-stack-intro {
    padding: 0 0 24px;
    border-bottom: 1px solid var(--layout-line);
  }

  .company-card-stack-intro h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.28;
  }

  .company-card-stack-intro p:not(.company-card-stack-label) {
    margin: 0;
  }
}

/* Contact section: restore a clear two-column reading order */
@media (min-width: 901px) {
  .contact-section {
    grid-template-columns: minmax(640px, 0.98fr) minmax(390px, 0.52fr);
    gap: clamp(72px, 8vw, 132px);
    align-items: start;
    padding: clamp(96px, 8vw, 132px) 0;
  }

  .contact-hero {
    width: auto;
  }

  .contact-hero-copy {
    display: block;
    max-width: 860px;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .contact-hero .section-label {
    margin: 0 0 clamp(34px, 3.5vw, 56px);
  }

  .contact-hero h2 {
    width: 100%;
    max-width: 860px;
    margin: 0 0 clamp(28px, 3vw, 42px);
    font-size: clamp(56px, 4.6vw, 84px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .contact-section .contact-lead {
    width: 100%;
    max-width: 860px;
    margin: 0;
    color: #2f343b;
    font-size: clamp(17px, 1.05vw, 20px);
    font-weight: 900;
    line-height: 1.95;
  }

  .contact-buttons {
    align-content: start;
    gap: 24px;
    min-height: 0;
    margin-top: clamp(82px, 7.8vw, 122px);
    padding: 0;
    border: 0;
    background: transparent;
  }

  .contact-section .contact-topic-list {
    padding: 0 0 26px;
    border-bottom: 1px solid var(--layout-line);
  }

  .contact-section .contact-topic-list span {
    display: block;
    margin-bottom: 16px;
    color: #6a7078;
    font-size: 12px;
    font-weight: 900;
  }

  .contact-section .contact-topic-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .contact-section .contact-topic-list li {
    font-size: 13px;
    font-weight: 900;
  }

  .contact-section .contact.line {
    min-height: 72px;
    justify-content: center;
    border-radius: 4px;
  }
}

@media (max-width: 900px) {
  .contact-hero-copy {
    text-align: left;
    justify-items: start;
  }

  .contact-hero h2 {
    margin-bottom: 22px;
    text-align: left;
  }
}

/* Column archive: note-inspired category rail with a three-card reading grid */
@media (min-width: 901px) {
  .column-list-section {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    column-gap: clamp(48px, 5vw, 84px);
    align-items: start;
    width: min(86vw, 1680px);
    padding: clamp(54px, 5vw, 86px) 0 clamp(92px, 8vw, 132px);
  }

  .column-sidebar {
    grid-column: 1;
    position: sticky;
    top: 130px;
    align-self: start;
    min-height: min(62vh, 680px);
    padding-right: clamp(24px, 3vw, 44px);
    border-right: 1px solid var(--layout-line);
  }

  .column-section-head {
    display: block;
    margin: 0;
    padding: 0;
    border-right: 0;
  }

  .column-section-head .section-label {
    margin: 0 0 clamp(28px, 3vw, 42px);
  }

  .column-section-head h2 {
    margin: 0;
    color: #202124;
    font-size: clamp(30px, 2.3vw, 42px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .column-tag-filter {
    display: grid;
    gap: 0;
    margin: clamp(24px, 2.6vw, 40px) 0 0;
    padding: 0;
    border-right: 0;
  }

  .column-tag-filter button {
    justify-content: flex-start;
    min-height: 58px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--layout-line);
    border-radius: 0;
    background: transparent;
    color: #656b73;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
  }

  .column-tag-filter button:hover,
  .column-tag-filter button.is-active {
    background: transparent;
    color: #202124;
    border-color: var(--layout-line);
  }

  .column-tag-filter button.is-active::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 12px;
    border-radius: 999px;
    background: #2f73ff;
    content: "";
    transform: translateY(-1px);
  }

  .column-list {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 3vw, 48px) clamp(24px, 2.2vw, 34px);
    align-items: stretch;
  }

  .column-card {
    --column-thumb-height: clamp(150px, 11vw, 190px);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    padding: 0 0 28px;
    border: 0;
    border-bottom: 1px solid var(--layout-line);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transform: none;
  }

  .column-card::before {
    display: block;
    width: 100%;
    height: var(--column-thumb-height);
    margin: 0 0 22px;
    border: 1px solid var(--layout-line);
    background:
      linear-gradient(135deg, rgba(47, 115, 255, 0.1), rgba(247, 141, 51, 0.1)),
      repeating-linear-gradient(90deg, rgba(32, 33, 36, 0.05) 0 1px, transparent 1px 18px),
      #f7f8fa;
    content: "";
  }

  .column-card.has-thumb::before {
    display: none;
  }

  .column-card-thumb {
    order: 0;
    width: 100%;
    height: var(--column-thumb-height);
    margin: 0 0 22px;
    border: 1px solid var(--layout-line);
    overflow: hidden;
    background: #f7f8fa;
  }

  .column-card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .column-card time,
  .column-card span,
  .column-card h3,
  .column-card p {
    display: block;
    grid-column: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .column-card time {
    order: 1;
    margin: 0 0 8px;
    color: #8c929a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
  }

  .column-card span {
    order: 2;
    margin: 0 0 16px;
    color: #58606a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
  }

  .column-card h3 {
    order: 3;
    margin: 0 0 14px;
    font-size: clamp(22px, 1.55vw, 30px);
    font-weight: 900;
    line-height: 1.32;
    letter-spacing: 0;
  }

  .column-card p {
    order: 4;
    margin: 0;
    color: #4f5660;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.85;
  }

  .column-card::after {
    order: 5;
    align-self: flex-start;
    width: 46px;
    min-height: 24px;
    margin: auto 0 0;
    border-radius: 999px;
    background: #202124;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
  }

  .column-card:hover {
    background: transparent;
    transform: translateY(-4px);
  }

  .column-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: clamp(28px, 3vw, 44px);
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
    color: #656b73;
    font-size: clamp(15px, 1vw, 17px);
    font-weight: 900;
    line-height: 1.6;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .column-sidebar {
    display: block;
  }

  .column-list-section {
    width: var(--layout-page-mobile);
    padding-top: 44px;
  }

  .column-section-head {
    margin-bottom: 20px;
  }

  .column-tag-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .column-tag-filter::-webkit-scrollbar {
    display: none;
  }

  .column-tag-filter button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .column-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .column-card {
    --column-thumb-height: 156px;
    display: flex;
    flex-direction: column;
    padding: 0 0 24px;
    border-top: 0;
    border-bottom: 1px solid var(--layout-line);
  }

  .column-card::before {
    display: block;
    height: var(--column-thumb-height);
    margin-bottom: 18px;
    border: 1px solid var(--layout-line);
    background:
      linear-gradient(135deg, rgba(47, 115, 255, 0.1), rgba(247, 141, 51, 0.1)),
      #f7f8fa;
    content: "";
  }

  .column-card.has-thumb::before {
    display: none;
  }

  .column-card-thumb {
    height: var(--column-thumb-height);
    margin-bottom: 18px;
  }

  .column-card h3 {
    font-size: 24px;
    line-height: 1.35;
  }

  .column-card::after {
    align-self: flex-start;
    margin-top: 16px;
  }
}

/* Service copy refresh: keep the creative boutique message readable */
@media (min-width: 901px) {
  .service-section {
    grid-template-columns: minmax(560px, 0.58fr) minmax(820px, 1fr);
    gap: clamp(56px, 5vw, 88px);
    overflow: visible;
  }

  .service-section .section-intro {
    max-width: 760px;
  }

  .service-section .section-intro h2 {
    max-width: 760px;
    font-size: clamp(48px, 3.05vw, 58px);
    line-height: 1.18;
  }

  .service-section .section-intro h2 span {
    display: block;
    white-space: nowrap;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 650px;
    font-size: clamp(15px, 0.94vw, 17px);
    line-height: 1.95;
  }

  .service-section .service-card h3 {
    font-size: clamp(24px, 1.55vw, 28px);
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: normal;
  }

  .service-section .service-card p {
    font-size: 13px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .service-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-section .section-intro,
  .service-section .section-intro h2,
  .service-section .section-intro p:not(.section-label) {
    max-width: 980px;
  }
}

/* Top service mosaic final type overrides */
@media (min-width: 901px) {
  .service-section .service-dice-net .service-card h3 {
    margin: auto 0 18px;
    font-size: clamp(42px, 4.3vw, 82px);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .service-section .service-dice-net .service-card p {
    color: #343941;
    font-size: clamp(15px, 1.12vw, 20px);
    font-weight: 900;
    line-height: 1.62;
    overflow-wrap: normal;
  }

  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3 {
    font-size: clamp(34px, 3vw, 58px);
  }

  .service-section .service-dice-net .service-card:nth-child(4) h3 {
    font-size: clamp(36px, 3.15vw, 60px);
  }

  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(48px, 4.8vw, 88px);
    line-height: 0.92;
  }

  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    writing-mode: horizontal-tb;
    max-width: 12em;
    font-size: clamp(13px, 0.88vw, 15px);
    line-height: 1.55;
  }
}

/* Top company business field: prevent the intro from becoming a cramped third card */
@media (min-width: 901px) {
  .company-section .company-card-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 0;
    border-top: 1px solid var(--layout-line);
    border-bottom: 1px solid var(--layout-line);
    background: #fff;
  }

  .company-card-stack-intro {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 72px);
    min-height: 0;
    padding: clamp(30px, 3.4vw, 54px) 0;
    border-bottom: 1px solid var(--layout-line);
  }

  .company-section .company-card-stack-label {
    grid-column: 1;
    margin: 0;
    align-self: start;
    color: #6a7078;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
  }

  .company-card-stack-intro h3 {
    grid-column: 2;
    margin: 0;
    max-width: 780px;
    font-size: clamp(34px, 2.4vw, 46px);
    line-height: 1.2;
    letter-spacing: 0;
  }

  .company-card-stack-intro p:not(.company-card-stack-label) {
    grid-column: 2;
    max-width: 760px;
    margin: 16px 0 0;
    color: #4e5661;
    font-size: clamp(14px, 0.96vw, 16px);
    font-weight: 850;
    line-height: 1.9;
  }

  .company-section .company-card-logo {
    grid-row: 2;
    min-height: 300px;
    padding: clamp(34px, 3.4vw, 58px);
    border-left: 0;
  }

  .company-section .company-card-logo:first-of-type {
    grid-column: 1;
    grid-row: 2;
    border-right: 1px solid var(--layout-line);
  }

  .company-section .company-card-logo:last-of-type {
    grid-column: 2;
    grid-row: 2;
  }

  .company-section .company-card-logo .company-card-tag {
    margin-bottom: clamp(24px, 2.5vw, 36px);
  }

  .company-section .company-card-logo h3 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(30px, 2.1vw, 42px);
    line-height: 1.15;
  }

  .company-section .company-card-logo p {
    margin-bottom: clamp(22px, 2.2vw, 34px);
  }

  .company-section .company-card-logo ul {
    gap: 8px;
    font-size: clamp(13.5px, 0.95vw, 15px);
    line-height: 1.6;
  }
}

/* Top company profile: simple readable one-column outline */
@media (min-width: 901px) {
  .company-section .company-info dl {
    display: block;
    max-width: 980px;
    margin-top: clamp(34px, 3vw, 48px);
    border-top: 1px solid var(--layout-line);
  }

  .company-section .company-info dl div,
  .company-section .company-info dl div:nth-child(odd),
  .company-section .company-info dl div:nth-child(even),
  .company-section .company-info dl div:last-child {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: clamp(22px, 3vw, 52px);
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--layout-line);
  }

  .company-info dt {
    color: #202124;
    font-size: 13px;
    font-weight: 900;
  }

  .company-info dd {
    color: #202124;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.7;
  }

  .office-list {
    display: grid;
    gap: 8px;
  }

  .office-list span {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
  }

  .office-list strong {
    color: #6a7078;
    font-size: 12px;
    font-weight: 900;
  }
}

/* Contact: keep email as a secondary action inside the main CTA stack */
.contact-section .mail-contact {
  display: none !important;
}

.contact-section .contact-buttons {
  gap: 14px;
}

.contact-section .contact.mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid #202124;
  border-radius: 0;
  background: #fff;
  color: #202124;
  box-shadow: none;
}

.contact-section .contact.mail::after {
  background: transparent;
}

.contact-section .contact.mail span {
  width: 34px;
  margin-left: 28px;
  background: #202124;
}

.contact-section .contact.mail span::after {
  border-color: #202124;
}

.contact-section .contact.mail:hover {
  background: #f6f7f8;
  box-shadow: 0 18px 40px rgba(32, 33, 36, 0.08);
}

@media (min-width: 901px) {
  .contact-section .contact.mail {
    min-height: 66px;
  }
}

@media (max-width: 900px) {
  .contact-section .contact.mail {
    width: 100%;
  }
}

/* Hero headline: three-line editorial rhythm close to the reference case site */
@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(760px, 1fr) minmax(360px, 0.72fr);
    align-items: center;
  }

  .hero-copy {
    max-width: 1120px;
  }

  .hero h1 {
    max-width: 1120px;
    margin-bottom: clamp(46px, 5vh, 68px);
    font-size: clamp(72px, 5.15vw, 100px);
    line-height: 1.22;
    letter-spacing: 0;
    text-align: left;
  }

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

@media (min-width: 901px) and (max-width: 1280px) {
  .hero h1 {
    font-size: clamp(62px, 6vw, 78px);
  }
}

@media (max-width: 900px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.18;
    text-align: left;
  }

  .hero h1 span {
    display: inline;
    white-space: normal;
  }
}

/* Top company overview: mirror the clean company-page profile cards */
.company-section .company-profile-grid {
  width: 100%;
}

.company-section .company-profile-card {
  min-height: 0;
}

.company-section .company-profile-card dl {
  margin-bottom: 0;
}

@media (min-width: 901px) {
  .company-section .company-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--layout-line);
    background: #fff;
  }

  .company-section .company-profile-card {
    padding: clamp(34px, 3.6vw, 58px);
    border: 0;
    border-radius: 0;
  }

  .company-section .company-profile-card + .company-profile-card {
    border-left: 1px solid var(--layout-line);
  }

  .company-section .company-profile-card h3 {
    font-size: clamp(30px, 2vw, 40px);
  }

  .company-section .company-profile-card dl div {
    padding-block: 18px;
  }
}

@media (max-width: 900px) {
  .company-section .company-profile-grid {
    grid-template-columns: 1fr;
  }
}

/* YouTube sections: keep the archive in the older, tighter page width */
@media (min-width: 901px) {
  .performance.performance-youtube,
  .works-section {
    width: min(100% - 120px, 1320px);
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
  }

  .performance.performance-youtube {
    padding-right: 0;
    padding-left: 0;
  }

  .works-section {
    padding-right: 0;
    padding-left: 0;
    overflow: visible;
  }

  .works-head {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    margin-right: 0;
    margin-left: 0;
  }

  .works-head h2 {
    max-width: 820px;
    font-size: clamp(56px, 5vw, 86px);
  }

  .works-head > div:first-child p:not(.section-label) {
    max-width: 960px;
    white-space: nowrap;
    font-size: clamp(14px, 0.95vw, 16px);
  }

  .works-proof {
    min-width: 300px;
  }

  .works-grid {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .works-head {
    grid-template-columns: 1fr;
  }

  .works-head > div:first-child p:not(.section-label) {
    white-space: normal;
  }

  .works-proof {
    min-height: 190px;
  }
}

/* Column pages: reading layout and 16:9 thumbnail operation */
.column-back-nav {
  width: 100%;
  margin: clamp(34px, 4.5vw, 64px) 0 0;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--layout-line);
  display: flex;
}

.column-back-nav a,
.column-back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--layout-line);
  background: #fff;
  color: #202124;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.column-back-nav a::before,
.column-back-link::before {
  content: "←";
  font-size: 18px;
  line-height: 1;
}

.column-back-nav a:hover,
.column-back-link:hover {
  background: #f6f7f8;
}

.column-back-nav.is-bottom {
  margin-top: clamp(18px, 3vw, 42px);
}

.column-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  padding: clamp(72px, 7vw, 112px) 0 clamp(44px, 5vw, 72px);
}

.column-article-hero .section-label {
  grid-column: 1 / -1;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.column-article-hero > .column-article-meta {
  grid-column: 1 / -1;
}

.column-article-hero h1 {
  grid-column: 1;
  max-width: 13em;
  font-size: clamp(40px, 4.3vw, 76px);
  line-height: 1.13;
  text-wrap: balance;
}

.column-article-hero > p:not(.section-label) {
  grid-column: 2;
  max-width: 34em;
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.95;
  font-weight: 750;
}

.column-back-link {
  grid-column: 2;
  justify-self: start;
  margin-top: clamp(6px, 1vw, 14px);
}

.column-article-eyecatch {
  width: min(100% - 288px, 1120px);
  margin: clamp(2px, 1.5vw, 18px) auto clamp(42px, 5vw, 70px);
  overflow: hidden;
}

.column-article-eyecatch img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.column-article-body {
  grid-template-columns: minmax(0, 760px) minmax(220px, 280px);
  gap: clamp(48px, 6vw, 96px);
}

.column-article-content {
  max-width: 760px;
}

.column-article-content section {
  padding: 0 0 clamp(38px, 4.5vw, 64px);
}

.column-article-content h2 {
  max-width: 16em;
  margin-bottom: 20px;
  font-size: clamp(28px, 2.25vw, 38px);
  line-height: 1.36;
  text-wrap: balance;
}

.column-article-content h3 {
  font-size: clamp(21px, 1.35vw, 26px);
  line-height: 1.45;
}

.column-article-content p,
.column-article-content li {
  max-width: 42em;
  font-size: clamp(16px, 0.98vw, 18px);
  line-height: 2;
  font-weight: 650;
}

.column-article-content p + p {
  margin-top: 1.05em;
}

.column-article-side {
  position: sticky;
  top: 130px;
  align-self: start;
}

.column-article-side a {
  color: #202124;
  font-weight: 900;
}

.column-card {
  --column-thumb-ratio: 16 / 9;
  --column-thumb-height: auto;
}

.column-card::before,
.column-card-thumb {
  width: 100%;
  aspect-ratio: var(--column-thumb-ratio);
  height: auto !important;
  min-height: 0;
  flex: 0 0 auto;
}

.column-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .column-back-nav {
    width: 100%;
  }

  .column-back-nav a {
    width: auto;
    justify-content: flex-start;
  }

  .column-article-hero {
    display: block;
    padding: 56px 0 38px;
  }

  .column-article-hero .section-label {
    margin-bottom: 20px;
  }

  .column-article-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 54px);
    line-height: 1.15;
  }

  .column-article-hero > p:not(.section-label) {
    max-width: 100%;
    margin-top: 24px;
  }

  .column-back-link {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }

  .column-article-eyecatch {
    width: var(--layout-page-mobile);
  }

  .column-article-body {
    display: block;
  }

  .column-article-side {
    position: static;
    margin-top: 36px;
  }
}

/* Recruit page cleanup: align with the current restrained official-site direction */
.recruit-page-main .recruit-visual,
.recruit-page-main .recruit-marquee,
.recruit-page-main .recruit-card-visual {
  display: none !important;
}

.recruit-page-main .recruit-section {
  width: var(--layout-page);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) 0 clamp(86px, 8vw, 128px);
  overflow: visible;
}

.recruit-page-main .recruit-section::before {
  background: var(--layout-line);
}

.recruit-page-main .recruit-hero {
  display: block;
  min-height: 0;
  padding: 0 0 clamp(72px, 7vw, 108px);
  border-bottom: 1px solid var(--layout-line);
}

.recruit-page-main .recruit-hero-copy {
  max-width: 980px;
}

.recruit-page-main .recruit-hero h1 {
  max-width: 920px;
  font-size: clamp(52px, 5vw, 86px);
  line-height: 1.14;
}

.recruit-page-main .recruit-hero h1 span {
  display: block;
  white-space: nowrap;
}

.recruit-page-main .recruit-hero p:not(.section-label) {
  max-width: 760px;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.95;
}

.recruit-page-main .recruit-message {
  display: grid;
  grid-template-columns: minmax(520px, 0.8fr) minmax(420px, 0.62fr);
  gap: clamp(48px, 6vw, 96px);
  width: 100%;
  margin: 0;
  padding: clamp(72px, 7vw, 108px) 0;
  border-top: 0;
  border-bottom: 1px solid var(--layout-line);
}

.recruit-page-main .recruit-message .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.recruit-page-main .recruit-message h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 1.18;
}

.recruit-page-main .recruit-message p {
  max-width: 560px;
  padding: 0;
  color: #2f343b;
}

.recruit-page-main .recruit-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--layout-line);
  border-left: 1px solid var(--layout-line);
}

.recruit-page-main .recruit-card,
.recruit-page-main .recruit-card-remote,
.recruit-page-main .recruit-card-freedom,
.recruit-page-main .recruit-card-people,
.recruit-page-main .recruit-card-team {
  display: block;
  min-height: 280px;
  padding: 28px 26px;
  border: 0;
  border-right: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.recruit-page-main .recruit-card::before,
.recruit-page-main .recruit-card::after {
  display: none;
}

.recruit-page-main .recruit-card span {
  margin-bottom: 44px;
  color: #6a7078;
  letter-spacing: 0;
}

.recruit-page-main .recruit-card h3 {
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.35;
}

.recruit-page-main .recruit-card p {
  color: #4b515a;
  font-size: 13px;
  line-height: 1.8;
}

.recruit-page-main .recruit-jobs {
  margin: clamp(72px, 7vw, 108px) 0 clamp(64px, 6vw, 92px);
}

.recruit-page-main .recruit-jobs-head {
  display: grid;
  gap: 16px;
  align-items: start;
  justify-content: start;
  margin-bottom: 26px;
}

.recruit-page-main .recruit-jobs-head h3 {
  margin: 0;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.12;
}

.recruit-page-main .job-row {
  grid-template-columns: 72px minmax(280px, 0.68fr) minmax(320px, 1fr) 34px;
  min-height: 92px;
  border-color: var(--layout-line);
}

.recruit-page-main .job-row strong {
  font-size: clamp(19px, 1.6vw, 26px);
}

.recruit-page-main .recruit-flow {
  gap: 0;
  margin-bottom: clamp(34px, 4vw, 56px);
  border-top: 1px solid var(--layout-line);
  border-left: 1px solid var(--layout-line);
}

.recruit-page-main .recruit-flow article {
  min-height: 146px;
  padding: 28px 24px;
  border: 0;
  border-right: 1px solid var(--layout-line);
  border-bottom: 1px solid var(--layout-line);
  border-radius: 0;
}

.recruit-page-main .recruit-entry {
  border-radius: 0;
}

@media (max-width: 1100px) {
  .recruit-page-main .recruit-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-page-main .recruit-message,
  .recruit-page-main .job-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .recruit-page-main .recruit-section {
    width: var(--layout-page-mobile);
    padding: 58px 0 72px;
  }

  .recruit-page-main .recruit-hero {
    padding-bottom: 58px;
  }

  .recruit-page-main .recruit-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .recruit-page-main .recruit-hero h1 span {
    white-space: normal;
  }

  .recruit-page-main .recruit-message {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 58px 0;
  }

  .recruit-page-main .recruit-message h3,
  .recruit-page-main .recruit-jobs-head h3 {
    font-size: clamp(34px, 9vw, 50px);
  }

  .recruit-page-main .recruit-cards,
  .recruit-page-main .recruit-flow {
    grid-template-columns: 1fr;
  }

  .recruit-page-main .recruit-card {
    min-height: 0;
  }
}

/* Recruit nav CTA should follow the current monochrome header system */
body:has(.recruit-page-main) .nav a.nav-entry {
  border-color: #202020;
  background: #202020;
  color: #fff;
}

body:has(.recruit-page-main) .nav a.nav-entry:hover {
  border-color: #202020;
  background: #fff;
  color: #202020;
}

/* Recruit hero: minimal rotating glass object */
.recruit-glass-stage {
  position: relative;
  min-height: clamp(300px, 32vw, 520px);
  isolation: isolate;
  pointer-events: none;
}

.recruit-glass-stage::before {
  position: absolute;
  inset: 8% 1% 6%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(47, 109, 246, 0.13), transparent 34%),
    radial-gradient(circle at 42% 46%, rgba(255, 255, 255, 0.88), transparent 48%);
  filter: blur(16px);
  content: "";
  animation: recruitGlassGlow 6.5s ease-in-out infinite alternate;
}

.recruit-glass-stage::after {
  position: absolute;
  inset: 8% 6%;
  z-index: -1;
  background:
    linear-gradient(rgba(32, 33, 36, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.045) 1px, transparent 1px) 0 0 / 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0 42%, transparent 74%);
  opacity: 0.72;
  content: "";
  animation: recruitGlassGridDrift 10s ease-in-out infinite alternate;
}

.recruit-glass-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.recruit-glass-stage.is-webgl-ready .recruit-glass-canvas {
  opacity: 1;
}

.recruit-glass-fallback {
  position: absolute;
  inset: 10% 8%;
  display: grid;
  place-items: center;
  opacity: 0.82;
  transform-style: preserve-3d;
  animation: recruitFallbackOrbit 8s ease-in-out infinite alternate;
}

.recruit-glass-stage.is-webgl-ready .recruit-glass-fallback {
  opacity: 0;
}

.recruit-glass-fallback span {
  position: absolute;
  width: clamp(130px, 15vw, 250px);
  height: clamp(210px, 24vw, 380px);
  border: 1px solid rgba(47, 109, 246, 0.18);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(47, 109, 246, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 70px rgba(47, 109, 246, 0.08);
  transform: rotateY(calc(var(--i, 0) * 42deg)) rotateZ(-10deg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  animation: recruitFallbackPanelFloat 5.8s ease-in-out infinite alternate;
}

.recruit-glass-fallback span:nth-child(1) {
  --i: -1;
  animation-delay: -0.8s;
}

.recruit-glass-fallback span:nth-child(2) {
  --i: 0;
  animation-delay: -1.9s;
}

.recruit-glass-fallback span:nth-child(3) {
  --i: 1;
  animation-delay: -3.1s;
}

@keyframes recruitGlassGlow {
  from {
    transform: translate3d(-2%, -1%, 0) scale(0.94);
    opacity: 0.72;
  }

  to {
    transform: translate3d(3%, 2%, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes recruitGlassGridDrift {
  from {
    background-position: 0 0, 0 0;
    opacity: 0.48;
  }

  to {
    background-position: 34px 22px, 22px 34px;
    opacity: 0.78;
  }
}

@keyframes recruitFallbackOrbit {
  from {
    transform: perspective(900px) rotateX(5deg) rotateY(-20deg) rotateZ(-3deg);
  }

  to {
    transform: perspective(900px) rotateX(-4deg) rotateY(24deg) rotateZ(4deg);
  }
}

@keyframes recruitFallbackPanelFloat {
  from {
    transform: translate3d(-8px, 8px, 0) rotateY(calc(var(--i, 0) * 42deg)) rotateZ(-13deg);
    opacity: 0.62;
  }

  to {
    transform: translate3d(10px, -10px, 0) rotateY(calc(var(--i, 0) * 54deg)) rotateZ(-4deg);
    opacity: 0.94;
  }
}

@media (min-width: 901px) {
  .recruit-page-main .recruit-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.54fr);
    gap: clamp(42px, 5vw, 96px);
    align-items: center;
    min-height: clamp(570px, 55vw, 820px);
  }

  .recruit-page-main .recruit-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 920px;
  }

  .recruit-page-main .recruit-hero h1 {
    max-width: 880px;
    font-size: clamp(50px, 4.45vw, 82px);
  }

  .recruit-page-main .recruit-hero h1 span {
    white-space: normal;
  }

  .recruit-glass-stage {
    width: min(38vw, 590px);
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .recruit-glass-stage {
    min-height: 260px;
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-glass-stage::before {
    opacity: 0.8;
    animation: none;
  }

  .recruit-glass-stage::after {
    animation: none;
  }

  .recruit-glass-fallback {
    opacity: 0.68;
    animation: none;
  }

  .recruit-glass-fallback span {
    animation: none;
  }
}

/* YouTube performance: prevent large numbers from overflowing their cells */
@media (min-width: 901px) {
  .performance.performance-youtube {
    width: min(calc(100% - 220px), 1680px);
    max-width: 1680px;
    grid-template-columns: minmax(650px, 0.42fr) minmax(0, 1fr);
    gap: clamp(40px, 4vw, 72px);
  }

  .performance-metrics,
  .performance-metrics .metric {
    min-width: 0;
  }

  .performance-metrics .metric {
    overflow: hidden;
    padding-inline: clamp(20px, 1.6vw, 34px);
  }

  .performance-metrics .metric strong {
    font-size: clamp(38px, 2.7vw, 54px);
    line-height: 1;
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(34px, 2.25vw, 46px);
  }

  .performance-metrics .metric strong span {
    margin-left: 0.06em;
    font-size: 0.34em;
  }

  .performance-copy h2 {
    max-width: 700px;
    font-size: clamp(44px, 3vw, 54px);
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .performance.performance-youtube {
    width: min(calc(100% - 120px), 1320px);
    max-width: 1320px;
    grid-template-columns: 1fr;
  }

  .performance-copy h2 {
    max-width: 760px;
  }
}

/* Service section: remove remaining accent colors from the monochrome layout */
.service-section .section-label::before {
  background: #202124;
}

.service-section .section-label::after {
  background: #8f939a;
}

.service-section .service-card::before,
.service-section .service-card:nth-child(2n)::before,
.service-section .service-card:nth-child(3n)::before {
  height: 1px;
  background: var(--layout-line, #dfe3ea);
}

/* YouTube performance: JR-style hover panels */
@media (min-width: 901px) {
  .performance.performance-youtube {
    align-items: stretch;
  }

  .performance-metrics {
    counter-reset: metricPanel;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 4px;
    border: 1px solid rgba(32, 33, 36, 0.14);
    background: rgba(32, 33, 36, 0.12);
  }

  .performance-metrics .metric {
    --panel-accent: #2f8d2f;
    --panel-hover-text: #fff;
    counter-increment: metricPanel;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(220px, 18vw, 330px);
    padding: clamp(24px, 2.5vw, 44px);
    border: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
      #f6f7f7;
    color: #202124;
    cursor: default;
    outline: 0;
    transition:
      background-color 0.34s ease,
      color 0.34s ease,
      transform 0.34s cubic-bezier(0.18, 0.9, 0.22, 1),
      box-shadow 0.34s ease,
      filter 0.34s ease;
  }

  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3) {
    grid-column: span 3;
  }

  .performance-metrics .metric:nth-child(4) {
    grid-column: span 5;
  }

  .performance-metrics .metric:nth-child(5) {
    grid-column: span 5;
  }

  .performance-metrics .metric:nth-child(2) {
    --panel-accent: #2c5c8e;
  }

  .performance-metrics .metric:nth-child(3) {
    --panel-accent: #f1c40f;
    --panel-hover-text: #202124;
  }

  .performance-metrics .metric:nth-child(4) {
    --panel-accent: #d33b36;
  }

  .performance-metrics .metric:nth-child(5) {
    --panel-accent: #202124;
  }

  .performance-metrics .metric::before {
    position: absolute;
    top: clamp(20px, 1.7vw, 30px);
    left: clamp(22px, 2vw, 34px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    height: auto;
    background: transparent;
    color: rgba(32, 33, 36, 0.5);
    content: "● 0" counter(metricPanel);
    font-size: clamp(13px, 0.9vw, 16px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    transition: color 0.34s ease;
  }

  .performance-metrics .metric::after {
    position: absolute;
    top: clamp(20px, 1.7vw, 30px);
    right: clamp(20px, 1.7vw, 30px);
    display: block;
    width: 22px;
    height: 22px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    color: rgba(32, 33, 36, 0.12);
    content: "";
    opacity: 1;
    transform: translate(-4px, 4px);
    transition:
      color 0.34s ease,
      transform 0.34s ease;
  }

  .performance-metrics .metric strong {
    position: relative;
    z-index: 1;
    margin: auto 0 18px;
    color: currentColor;
    font-size: clamp(48px, 4.6vw, 92px);
    letter-spacing: -0.02em;
    white-space: normal;
    transition: transform 0.34s ease;
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(40px, 3.55vw, 70px);
  }

  .performance-metrics .metric strong span {
    margin-left: 0.08em;
    font-size: 0.3em;
  }

  .performance-metrics .metric small {
    position: relative;
    z-index: 1;
    max-width: 11em;
    margin: 0;
    color: rgba(32, 33, 36, 0.64);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.5;
    transition: color 0.34s ease;
  }

  .performance-metrics:has(.metric:hover) .metric:not(:hover),
  .performance-metrics:has(.metric:focus) .metric:not(:focus),
  .performance-metrics:has(.metric:focus-visible) .metric:not(:focus-visible),
  .performance-metrics.is-interacting .metric:not(.is-hovered) {
    filter: saturate(0.5);
  }

  .performance-metrics .metric:hover,
  .performance-metrics .metric:focus,
  .performance-metrics .metric:focus-visible,
  .performance-metrics .metric.is-hovered {
    z-index: 2;
    background: var(--panel-accent);
    color: var(--panel-hover-text);
    box-shadow: 0 26px 80px rgba(32, 33, 36, 0.18);
    transform: translateY(-10px) scale(1.015);
  }

  .performance-metrics .metric:hover::before,
  .performance-metrics .metric:focus::before,
  .performance-metrics .metric:focus-visible::before,
  .performance-metrics .metric.is-hovered::before,
  .performance-metrics .metric:hover small,
  .performance-metrics .metric:focus small,
  .performance-metrics .metric:focus-visible small,
  .performance-metrics .metric.is-hovered small {
    color: color-mix(in srgb, var(--panel-hover-text) 78%, transparent);
  }

  .performance-metrics .metric:hover::after,
  .performance-metrics .metric:focus::after,
  .performance-metrics .metric:focus-visible::after,
  .performance-metrics .metric.is-hovered::after {
    color: color-mix(in srgb, var(--panel-hover-text) 54%, transparent);
    transform: translate(0, 0);
  }

  .performance-metrics .metric:hover strong,
  .performance-metrics .metric:focus strong,
  .performance-metrics .metric:focus-visible strong,
  .performance-metrics .metric.is-hovered strong {
    transform: translateY(-6px);
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5) {
    grid-column: span 5;
  }
}

/* Service mosaic stability pass: keep the kinetic panel idea without clipped type */
@media (min-width: 901px) {
  .service-section .service-dice-net {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(250px, 20vw, 360px);
    gap: 4px;
    overflow: visible;
  }

  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    align-self: stretch;
    max-width: 100%;
    margin: auto 0 18px;
    font-size: clamp(40px, 3.25vw, 66px);
    line-height: 0.98;
    letter-spacing: 0;
    text-orientation: mixed;
    writing-mode: horizontal-tb;
    word-break: normal;
    overflow-wrap: normal;
  }

  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(36px, 2.85vw, 58px);
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    max-width: 14em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .service-section .service-dice-net {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(240px, 28vw, 330px);
  }
}

/* Service panel composition pass: editorial rhythm without broken oversized type */
@media (min-width: 901px) {
  .service-section .service-dice-net {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(170px, 11vw, 220px);
    gap: 4px;
    border-color: rgba(32, 33, 36, 0.16);
    background: rgba(32, 33, 36, 0.12);
    overflow: hidden;
  }

  .service-section .service-dice-net .service-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    min-width: 0;
    min-height: 0;
    padding: clamp(28px, 2.4vw, 42px);
    background: #fff;
    overflow: hidden;
  }

  .service-section .service-dice-net .service-card:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 4;
  }

  .service-section .service-dice-net .service-card:nth-child(2) {
    grid-column: 5 / 10;
    grid-row: 1 / 2;
    background: #f7f7f8;
  }

  .service-section .service-dice-net .service-card:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
    background: #f2f2f3;
  }

  .service-section .service-dice-net .service-card:nth-child(4) {
    grid-column: 5 / 8;
    grid-row: 2 / 4;
  }

  .service-section .service-dice-net .service-card:nth-child(5) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    background: #f4f4f5;
  }

  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-column: 8 / 13;
    grid-row: 3 / 4;
    background: #f8f8f9;
  }

  .service-section .service-dice-net .icon {
    align-self: start;
  }

  .service-section .service-dice-net .icon em {
    color: rgba(32, 33, 36, 0.48);
    font-size: clamp(18px, 1.25vw, 24px);
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    align-self: end;
    max-width: 100%;
    margin: 0 0 clamp(12px, 1.1vw, 18px);
    font-size: clamp(34px, 3vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
    text-orientation: mixed;
    text-wrap: balance;
    writing-mode: horizontal-tb;
    word-break: normal;
    overflow-wrap: normal;
  }

  .service-section .service-dice-net .service-card:nth-child(1) h3 {
    font-size: clamp(46px, 3.8vw, 72px);
    line-height: 0.96;
  }

  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3 {
    font-size: clamp(28px, 2.2vw, 42px);
  }

  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(30px, 2.45vw, 48px);
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    display: block;
    align-self: end;
    max-width: 15em;
    margin: 0;
    padding: 0;
    background: none;
    color: #343941;
    font-size: clamp(13px, 0.95vw, 17px);
    font-weight: 900;
    line-height: 1.55;
    text-orientation: mixed;
    writing-mode: horizontal-tb;
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .service-section .service-dice-net {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(230px, 25vw, 320px);
  }

  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* YouTube performance stability pass: prevent the proof panels from clipping */
@media (min-width: 901px) {
  .performance.performance-youtube {
    grid-template-columns: minmax(520px, 0.46fr) minmax(620px, 1fr);
  }

  .performance-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    overflow: hidden;
  }

  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5) {
    grid-column: auto;
    min-width: 0;
    min-height: clamp(220px, 15vw, 310px);
    padding: clamp(26px, 2vw, 38px);
  }

  .performance-metrics .metric:last-child {
    grid-column: 1 / -1;
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(42px, 3.2vw, 68px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .performance-metrics .metric strong span {
    flex: 0 0 auto;
    margin-left: 0.08em;
    font-size: 0.34em;
  }
}

@media (min-width: 901px) and (max-width: 1500px) {
  .performance.performance-youtube {
    grid-template-columns: 1fr;
  }

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

/* Top hero background image: architecture-inspired Bauhaus composition */
.hero-image-bg {
  display: none;
}

.tbb-top-image .hero {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76) 54%, rgba(255, 255, 255, 0.18)),
    #fff;
}

.tbb-top-image .hero-copy {
  z-index: 4;
}

.tbb-top-image .hero h1,
.tbb-top-image .hero .lead,
.tbb-top-image .hero .body-copy {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 24px rgba(255, 255, 255, 0.86);
}

.tbb-top-image .hero-type {
  display: none;
}

.tbb-top-image .hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 29%, rgba(255, 255, 255, 0.66) 45%, rgba(255, 255, 255, 0.04) 71%),
    url("assets/top-bauhaus-bg-mono.png") 100% 87% / min(1420px, 84vw) auto no-repeat;
  pointer-events: none;
}

.tbb-top-image .hero-image-bg::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 33%, rgba(255, 255, 255, 0.7) 47%, transparent 70%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26) 72%);
  content: "";
}

@media (max-width: 1180px) {
  .tbb-top-image .hero-image-bg {
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 26%, rgba(255, 255, 255, 0.7) 58%, rgba(255, 255, 255, 0.94) 100%),
      url("assets/top-bauhaus-bg-mono.png") center bottom / 1280px auto no-repeat;
    opacity: 0.72;
  }
}

@media (max-width: 680px) {
  .tbb-top-image .hero-image-bg {
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.94) 28%, rgba(255, 255, 255, 0.76) 58%, rgba(255, 255, 255, 0.96) 100%),
      url("assets/top-bauhaus-bg-mono.png") 58% bottom / 980px auto no-repeat;
    opacity: 0.5;
  }
}

/* Service cards: final editorial layout reset */
@media (min-width: 901px) {
  .service-section .service-dice-net {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(310px, 20vw, 390px);
    gap: 4px;
    overflow: hidden;
    border-color: rgba(32, 33, 36, 0.16);
    background: rgba(32, 33, 36, 0.12);
  }

  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .service-section .service-dice-net .service-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    min-height: 0;
    padding: clamp(30px, 2.7vw, 52px);
    overflow: hidden;
    background: #fff;
  }

  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(5) {
    background: #f5f5f6;
  }

  .service-section .service-dice-net .service-card:nth-child(6) {
    background: #fafafa;
  }

  .service-section .service-dice-net .service-card::before {
    opacity: 0;
  }

  .service-section .service-dice-net .service-card::after {
    top: clamp(28px, 2.3vw, 42px);
    right: clamp(28px, 2.3vw, 42px);
    left: auto;
    width: clamp(22px, 1.6vw, 34px);
    height: 0;
    border-top: 4px solid rgba(32, 33, 36, 0.18);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
    opacity: 1;
  }

  .service-section .service-dice-net .icon {
    display: block;
    align-self: start;
    width: auto;
    height: auto;
    margin: 0;
  }

  .service-section .service-dice-net .icon svg {
    display: none;
  }

  .service-section .service-dice-net .icon em {
    color: rgba(32, 33, 36, 0.48);
    font-size: clamp(22px, 1.45vw, 30px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    align-self: end;
    max-width: 9.5em;
    margin: 0 0 clamp(18px, 1.5vw, 28px);
    overflow: visible;
    color: #1d2026;
    font-size: clamp(38px, 3vw, 62px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.04;
    text-orientation: mixed;
    text-wrap: balance;
    transform: none;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    writing-mode: horizontal-tb;
  }

  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(42px, 3.25vw, 66px);
    line-height: 0.98;
  }

  .service-section .service-dice-net .service-card:nth-child(4) h3 {
    font-size: clamp(34px, 2.4vw, 50px);
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    display: block;
    align-self: end;
    max-width: 16em;
    margin: 0;
    padding: 0;
    background: none;
    color: #343941;
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 900;
    line-height: 1.65;
    text-orientation: mixed;
    writing-mode: horizontal-tb;
  }

  .service-section .service-dice-net .service-card:hover,
  .service-section .service-dice-net .service-card:focus-within {
    background: #1d2026;
    color: #fff;
    transform: translateY(-6px);
  }

  .service-section .service-dice-net .service-card:hover h3,
  .service-section .service-dice-net .service-card:hover p,
  .service-section .service-dice-net .service-card:focus-within h3,
  .service-section .service-dice-net .service-card:focus-within p {
    color: #fff;
  }

  .service-section .service-dice-net .service-card:hover .icon em,
  .service-section .service-dice-net .service-card:focus-within .icon em {
    color: rgba(255, 255, 255, 0.64);
  }

  .service-section .service-dice-net .service-card:hover::after,
  .service-section .service-dice-net .service-card:focus-within::after {
    border-top-color: #2f6df6;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .service-section .service-dice-net {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(300px, 28vw, 380px);
  }
}

/* YouTube performance heading: keep Japanese phrase breaks intentional */
.performance-copy h2 span {
  display: block;
}

@media (min-width: 901px) {
  .performance-copy h2 {
    max-width: min(100%, 940px);
    font-size: clamp(52px, 5.2vw, 86px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .performance-copy h2 span:first-child {
    white-space: nowrap;
  }

  .performance-copy p:not(.section-label) {
    max-width: 820px;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .performance-copy h2 {
    max-width: min(100%, 860px);
    font-size: clamp(46px, 5.4vw, 68px);
  }
}

@media (max-width: 680px) {
  .performance-copy h2 span:first-child {
    white-space: normal;
  }
}

/* YouTube performance: avoid text sliding behind panels and balance five metrics */
@media (min-width: 901px) {
  .performance.performance-youtube {
    display: block;
    width: min(calc(100% - 120px), 1500px);
    max-width: 1500px;
    padding: clamp(74px, 7vw, 118px) 0;
  }

  .performance-copy {
    width: min(100%, 1120px);
    max-width: 1120px;
    margin: 0 0 clamp(40px, 4vw, 70px);
  }

  .performance-copy .section-label {
    margin-bottom: clamp(48px, 5vw, 82px);
  }

  .performance-copy h2 {
    max-width: 1120px;
    margin-bottom: clamp(34px, 3.2vw, 54px);
    font-size: clamp(58px, 5.1vw, 92px);
    line-height: 1.06;
  }

  .performance-copy p:not(.section-label) {
    max-width: 920px;
  }

  .performance-metrics {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(250px, 18vw, 330px);
    width: 100%;
    overflow: hidden;
  }

  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3) {
    grid-column: span 2;
  }

  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5) {
    grid-column: span 3;
  }

  .performance-metrics .metric:last-child {
    grid-column: span 3;
  }

  .performance-metrics .metric {
    min-height: 0;
    padding: clamp(30px, 2.4vw, 46px);
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(46px, 4.1vw, 82px);
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(42px, 3.8vw, 76px);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .performance.performance-youtube {
    width: min(calc(100% - 80px), 1180px);
  }

  .performance-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(230px, 24vw, 310px);
  }

  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4) {
    grid-column: span 1;
  }

  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    grid-column: 1 / -1;
  }
}

/* Top service: stable layout cleanup after motion experiments */
@media (min-width: 901px) {
  .service-section {
    display: block;
    padding-top: clamp(64px, 6vw, 104px);
    padding-bottom: clamp(72px, 7vw, 118px);
    overflow: visible;
  }

  .service-section .section-intro {
    display: grid;
    grid-template-columns: minmax(520px, 0.72fr) minmax(360px, 0.42fr);
    column-gap: clamp(52px, 6vw, 112px);
    row-gap: clamp(18px, 2vw, 30px);
    align-items: end;
    max-width: none;
    margin-bottom: clamp(28px, 3.2vw, 50px);
  }

  .service-section .section-label {
    grid-column: 1 / -1;
    margin: 0;
  }

  .service-section .section-intro h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(54px, 5vw, 88px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .service-section .section-intro h2 span {
    display: block;
    white-space: nowrap;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 520px;
    margin: 0 0 0.42em;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.9;
  }

  .service-section .service-dice-net {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(250px, 17vw, 330px);
    gap: 4px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(32, 33, 36, 0.15);
    background: rgba(32, 33, 36, 0.12);
    perspective: none;
  }

  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .service-section .service-dice-net .service-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    min-height: 0;
    padding: clamp(24px, 2.1vw, 40px);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform-style: flat;
    transition:
      transform 0.7s cubic-bezier(0.18, 0.9, 0.22, 1),
      opacity 0.55s ease,
      filter 0.65s ease,
      background-color 0.35s ease,
      color 0.35s ease;
  }

  .service-section .service-dice-net:not(.is-unfolded) .service-card,
  .service-section .service-dice-net:not(.is-unfolded) .service-card:nth-child(1),
  .service-section .service-dice-net:not(.is-unfolded) .service-card:nth-child(2),
  .service-section .service-dice-net:not(.is-unfolded) .service-card:nth-child(3),
  .service-section .service-dice-net:not(.is-unfolded) .service-card:nth-child(4),
  .service-section .service-dice-net:not(.is-unfolded) .service-card:nth-child(5),
  .service-section .service-dice-net:not(.is-unfolded) .service-card:nth-child(6) {
    opacity: 0;
    filter: blur(2px) saturate(0.9);
    transform: translateY(18px);
  }

  .service-section .service-dice-net.is-unfolded .service-card {
    opacity: 1;
    filter: none;
    transform: translateY(0);
  }

  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(5) {
    background: #f5f5f6;
  }

  .service-section .service-dice-net .service-card:nth-child(6) {
    background: #fafafa;
  }

  .service-section .service-dice-net .icon {
    display: block;
    align-self: start;
    width: auto;
    height: auto;
    margin: 0;
  }

  .service-section .service-dice-net .icon svg {
    display: none;
  }

  .service-section .service-dice-net .icon em {
    color: rgba(32, 33, 36, 0.48);
    font-size: clamp(20px, 1.35vw, 28px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    align-self: end;
    max-width: 100%;
    margin: 0 0 clamp(12px, 1vw, 20px);
    overflow: visible;
    color: #1d2026;
    font-size: clamp(32px, 2.55vw, 52px);
    font-weight: 950;
    line-height: 1.02;
    text-orientation: mixed;
    text-wrap: balance;
    transform: none;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    writing-mode: horizontal-tb;
  }

  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(36px, 2.75vw, 56px);
    line-height: 0.98;
  }

  .service-section .service-dice-net .service-card:nth-child(4) h3 {
    font-size: clamp(30px, 2.3vw, 46px);
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    display: block;
    align-self: end;
    max-width: 17em;
    margin: 0;
    padding: 0;
    background: none;
    color: #343941;
    font-size: clamp(14px, 0.98vw, 17px);
    font-weight: 900;
    line-height: 1.55;
    text-orientation: mixed;
    writing-mode: horizontal-tb;
  }

  .service-section .service-dice-net .service-card:hover,
  .service-section .service-dice-net .service-card:focus-within {
    z-index: 1;
    background: #1d2026;
    color: #fff;
    transform: translateY(-5px);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .service-section .section-intro {
    grid-template-columns: 1fr;
    max-width: 1060px;
  }

  .service-section .section-intro h2 {
    font-size: clamp(46px, 5.2vw, 72px);
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 760px;
  }

  .service-section .service-dice-net {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(240px, 25vw, 310px);
  }
}

@media (max-width: 900px) {
  .service-section .section-intro h2 span {
    white-space: normal;
  }
}

/* Top service: final side-by-side composition */
@media (min-width: 1101px) {
  .service-section {
    display: grid;
    grid-template-columns: minmax(330px, 0.36fr) minmax(0, 1fr);
    gap: clamp(44px, 4.8vw, 82px);
    align-items: start;
    padding-top: clamp(66px, 6vw, 104px);
    padding-bottom: clamp(74px, 7vw, 118px);
  }

  .service-section .section-intro {
    display: block;
    max-width: 420px;
    margin: 0;
  }

  .service-section .section-label {
    margin-bottom: clamp(30px, 3.2vw, 50px);
  }

  .service-section .section-intro h2 {
    max-width: 420px;
    margin-bottom: clamp(28px, 2.7vw, 42px);
    font-size: clamp(48px, 3.55vw, 68px);
    line-height: 1.12;
  }

  .service-section .section-intro h2 span {
    display: block;
    white-space: nowrap;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 400px;
    margin: 0;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.95;
  }

  .service-section .service-dice-net {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(238px, 17vw, 315px);
    align-self: start;
  }

  .service-section .service-dice-net .service-card {
    padding: clamp(22px, 1.9vw, 36px);
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(24px, 1.55vw, 34px);
    line-height: 1.04;
  }

  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(25px, 1.65vw, 36px);
  }

  .service-section .service-dice-net .service-card:nth-child(4) h3 {
    font-size: clamp(23px, 1.48vw, 33px);
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.52;
  }
}

/* Company about: light grid-glass service field */
.company-service-orbits {
  border: 1px solid rgba(32, 33, 36, 0.12);
  background:
    radial-gradient(circle at 26% 46%, rgba(47, 109, 246, 0.1), transparent 24%),
    radial-gradient(circle at 64% 55%, rgba(32, 33, 36, 0.08), transparent 28%),
    linear-gradient(rgba(32, 33, 36, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    rgba(255, 255, 255, 0.54);
  color: #1d2026;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(32, 33, 36, 0.04);
  backdrop-filter: blur(16px) saturate(1.24);
  -webkit-backdrop-filter: blur(16px) saturate(1.24);
}

.company-service-orbits::before {
  inset: 8% 5%;
  border-radius: 36% 64% 48% 52%;
  background:
    radial-gradient(circle at 24% 48%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.16) 34%, transparent 55%),
    radial-gradient(circle at 58% 52%, rgba(47, 109, 246, 0.16), transparent 44%),
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.74), transparent 28%);
  filter: blur(18px);
  opacity: 0.9;
}

.company-service-orbits::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 76%, rgba(255, 255, 255, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 22%, rgba(255, 255, 255, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 70%, rgba(255, 255, 255, 0.62) 0 3px, transparent 4px);
  opacity: 0.9;
  content: "";
}

.company-service-orbits-title {
  color: rgba(32, 33, 36, 0.32);
}

.company-service-orbits-core {
  border: 1px solid rgba(32, 33, 36, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: #1d2026;
  box-shadow:
    0 24px 70px rgba(47, 109, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.company-service-orbits .orbit-item {
  border: 1px solid rgba(32, 33, 36, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.28);
  color: #1d2026;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 14px 18px 38px rgba(255, 255, 255, 0.2),
    0 20px 60px rgba(32, 33, 36, 0.06);
  backdrop-filter: blur(12px) saturate(1.22);
  -webkit-backdrop-filter: blur(12px) saturate(1.22);
}

.company-service-orbits .orbit-item::before {
  position: absolute;
  top: 16%;
  left: 22%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.12) 66%, transparent 72%);
  opacity: 0.62;
  content: "";
}

.company-service-orbits .orbit-item span {
  color: #1d2026;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.company-service-orbits .orbit-item:hover {
  border-color: rgba(47, 109, 246, 0.38);
  background:
    linear-gradient(145deg, rgba(47, 109, 246, 0.82), rgba(47, 109, 246, 0.34)),
    rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 28px 80px rgba(47, 109, 246, 0.18);
}

.company-service-orbits .orbit-item:hover span {
  color: #fff;
  text-shadow: none;
}

@keyframes companyOrbitBreath {
  from {
    border-color: rgba(32, 33, 36, 0.11);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      inset 14px 18px 38px rgba(255, 255, 255, 0.2),
      0 20px 60px rgba(32, 33, 36, 0.05);
  }

  to {
    border-color: rgba(47, 109, 246, 0.22);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      inset 14px 18px 38px rgba(255, 255, 255, 0.26),
      0 24px 72px rgba(47, 109, 246, 0.08);
  }
}

@media (min-width: 901px) {
  .company-page-about {
    align-items: stretch;
  }

  .company-page-about-copy {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .company-service-orbits {
    align-self: end;
    min-height: clamp(330px, 26.6vw, 438px);
    margin-top: clamp(28px, 3.4vw, 48px);
  }
}

/* YouTube performance: Liquid Glass proof panels */
.performance.performance-youtube {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.performance.performance-youtube::before {
  position: absolute;
  right: -8%;
  bottom: 5%;
  z-index: -1;
  width: min(54vw, 820px);
  aspect-ratio: 1.18;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(47, 109, 246, 0.16), transparent 30%),
    radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.88), transparent 40%),
    radial-gradient(circle at 52% 54%, rgba(32, 33, 36, 0.08), transparent 58%);
  filter: blur(18px);
  opacity: 0.9;
  content: "";
}

.performance-metrics {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(32, 33, 36, 0.12);
  background:
    linear-gradient(rgba(32, 33, 36, 0.045) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.045) 1px, transparent 1px) 0 0 / 74px 74px,
    rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 26px 90px rgba(32, 33, 36, 0.05);
}

.performance-metrics::before {
  position: absolute;
  inset: 5% 4%;
  z-index: -1;
  border-radius: 48% 52% 43% 57%;
  background:
    radial-gradient(circle at 22% 46%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.1) 38%, transparent 58%),
    radial-gradient(circle at 62% 42%, rgba(47, 109, 246, 0.12), transparent 42%),
    radial-gradient(circle at 76% 68%, rgba(255, 255, 255, 0.72), transparent 32%);
  filter: blur(20px);
  opacity: 0.94;
  content: "";
}

.performance-metrics::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 72%, rgba(255, 255, 255, 0.62) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.72) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 64%, rgba(47, 109, 246, 0.16) 0 5px, transparent 7px);
  opacity: 0.86;
  content: "";
}

.performance-metrics .metric {
  position: relative;
  isolation: isolate;
  border-color: rgba(32, 33, 36, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 18px 20px 58px rgba(255, 255, 255, 0.2),
    inset -18px -20px 54px rgba(47, 109, 246, 0.045);
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.24);
}

.performance-metrics .metric::before {
  color: rgba(32, 33, 36, 0.42);
}

.performance-metrics .metric::after {
  position: absolute;
  top: 8%;
  right: 8%;
  bottom: auto;
  left: auto;
  width: 52%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18) 42%, transparent 68%),
    radial-gradient(circle at 72% 70%, rgba(47, 109, 246, 0.14), transparent 46%);
  filter: blur(5px);
  opacity: 0.52;
  transform: translate3d(16%, -10%, 0) scale(0.78);
  transition:
    opacity 0.45s ease,
    transform 0.55s ease,
    background 0.45s ease;
  content: "";
}

.performance-metrics .metric strong {
  position: relative;
  z-index: 1;
  color: #1d2026;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.performance-metrics .metric small {
  position: relative;
  z-index: 1;
  color: rgba(32, 33, 36, 0.68);
}

.performance-metrics .metric:hover,
.performance-metrics .metric:focus,
.performance-metrics .metric:focus-visible,
.performance-metrics .metric.is-hovered {
  border-color: rgba(47, 109, 246, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(47, 109, 246, 0.16)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 22px 22px 64px rgba(255, 255, 255, 0.28),
    0 26px 78px rgba(47, 109, 246, 0.12);
  transform: translateY(-4px);
}

.performance-metrics .metric:hover::after,
.performance-metrics .metric:focus::after,
.performance-metrics .metric:focus-visible::after,
.performance-metrics .metric.is-hovered::after {
  opacity: 0.86;
  transform: translate3d(8%, -4%, 0) scale(1.04);
}

.performance-metrics .metric:hover strong,
.performance-metrics .metric:focus strong,
.performance-metrics .metric:focus-visible strong,
.performance-metrics .metric.is-hovered strong {
  color: #1d2026;
}

.performance-metrics .metric:hover small,
.performance-metrics .metric:focus small,
.performance-metrics .metric:focus-visible small,
.performance-metrics .metric.is-hovered small {
  color: rgba(32, 33, 36, 0.82);
}

@media (max-width: 900px) {
  .performance.performance-youtube {
    overflow: hidden;
  }

  .performance-metrics {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    border-color: rgba(32, 33, 36, 0.11);
    background:
      linear-gradient(rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
      linear-gradient(90deg, rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
      rgba(255, 255, 255, 0.24);
  }

  .performance-metrics .metric,
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 176px;
  }

  .performance-metrics .metric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 28px 30px;
    backdrop-filter: blur(14px) saturate(1.18);
    -webkit-backdrop-filter: blur(14px) saturate(1.18);
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    display: block;
    order: 1;
    width: 100%;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.96;
    text-align: left;
    writing-mode: horizontal-tb;
  }

  .performance-metrics .metric strong span {
    display: inline;
    font-size: 0.42em;
    writing-mode: horizontal-tb;
  }

  .performance-metrics .metric small {
    display: block;
    order: 2;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    writing-mode: horizontal-tb;
  }
}

/* Company profile: Liquid Glass company cards */
.company-profile-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.company-profile-section::before {
  position: absolute;
  right: -10%;
  bottom: 0;
  z-index: -1;
  width: min(62vw, 860px);
  aspect-ratio: 1.4;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 38%, rgba(47, 109, 246, 0.13), transparent 31%),
    radial-gradient(circle at 62% 58%, rgba(255, 255, 255, 0.86), transparent 42%),
    radial-gradient(circle at 55% 54%, rgba(32, 33, 36, 0.055), transparent 64%);
  filter: blur(22px);
  opacity: 0.9;
  content: "";
}

.company-profile-grid {
  position: relative;
  isolation: isolate;
  gap: 20px;
  padding: 1px;
  border: 1px solid rgba(32, 33, 36, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(rgba(32, 33, 36, 0.045) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.045) 1px, transparent 1px) 0 0 / 68px 68px,
    rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 92px rgba(32, 33, 36, 0.045);
}

.company-profile-grid::before,
.company-profile-grid::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.company-profile-grid::before {
  inset: 8% 5%;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 20% 38%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.12) 42%, transparent 62%),
    radial-gradient(circle at 70% 48%, rgba(47, 109, 246, 0.1), transparent 45%),
    radial-gradient(circle at 54% 76%, rgba(255, 255, 255, 0.7), transparent 34%);
  filter: blur(20px);
  opacity: 0.9;
}

.company-profile-grid::after {
  inset: 0;
  background:
    radial-gradient(circle at 13% 16%, rgba(255, 255, 255, 0.8) 0 4px, transparent 5px),
    radial-gradient(circle at 42% 82%, rgba(255, 255, 255, 0.52) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 23%, rgba(255, 255, 255, 0.7) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 68%, rgba(47, 109, 246, 0.14) 0 5px, transparent 7px);
  opacity: 0.82;
}

.company-profile-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(32, 33, 36, 0.11);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 20px 22px 66px rgba(255, 255, 255, 0.24),
    inset -18px -20px 56px rgba(47, 109, 246, 0.04);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition:
    border-color 0.42s ease,
    box-shadow 0.42s ease,
    background 0.42s ease,
    transform 0.42s ease;
}

.company-profile-card::before,
.company-profile-card::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.company-profile-card::before {
  top: -18%;
  right: -12%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.2) 42%, transparent 68%),
    radial-gradient(circle at 72% 72%, rgba(47, 109, 246, 0.14), transparent 48%);
  filter: blur(6px);
  opacity: 0.56;
  transform: scale(0.86);
  transition:
    opacity 0.5s ease,
    transform 0.55s ease;
}

.company-profile-card::after {
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.75) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.58) 0 4px, transparent 5px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 22%, transparent 72%, rgba(255, 255, 255, 0.22));
  opacity: 0.72;
}

.company-profile-card h3,
.company-profile-card > p,
.company-profile-card dl,
.company-profile-card ul {
  position: relative;
  z-index: 1;
}

.company-profile-card dl {
  border-top-color: rgba(32, 33, 36, 0.13);
}

.company-profile-card dl div {
  border-bottom-color: rgba(32, 33, 36, 0.12);
}

.company-profile-card:hover,
.company-profile-card:focus-within {
  border-color: rgba(47, 109, 246, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(47, 109, 246, 0.13)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 22px 24px 70px rgba(255, 255, 255, 0.3),
    0 26px 80px rgba(47, 109, 246, 0.11);
  transform: translateY(-4px);
}

.company-profile-card:hover::before,
.company-profile-card:focus-within::before {
  opacity: 0.86;
  transform: translate3d(-4%, 4%, 0) scale(1.04);
}

@media (max-width: 900px) {
  .company-profile-grid {
    gap: 14px;
    border-radius: 12px;
    background:
      linear-gradient(rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
      linear-gradient(90deg, rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
      rgba(255, 255, 255, 0.22);
  }

  .company-profile-card {
    min-height: auto;
    padding: 28px 24px;
    backdrop-filter: blur(14px) saturate(1.16);
    -webkit-backdrop-filter: blur(14px) saturate(1.16);
  }

  .company-profile-card .company-profile-office {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-profile-card .company-profile-office .office-list {
    gap: 10px;
  }

  .company-profile-card .company-profile-office .office-list span {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .company-profile-card .company-profile-office .office-list strong {
    display: block;
    font-size: 12px;
  }
}

/* Top service: lock the composition so the headline never slides under cards */
@media (min-width: 901px) {
  .service-section {
    display: block;
    width: min(calc(100% - 120px), 1500px);
    max-width: 1500px;
    overflow: visible;
  }

  .service-section .section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
    column-gap: clamp(52px, 6vw, 104px);
    align-items: end;
    max-width: none;
    margin-bottom: clamp(34px, 4vw, 64px);
  }

  .service-section .section-label {
    grid-column: 1 / -1;
    margin-bottom: clamp(34px, 4vw, 60px);
  }

  .service-section .section-intro h2 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(52px, 4.7vw, 84px);
    line-height: 1.08;
    white-space: normal;
  }

  .service-section .section-intro h2 span {
    display: block;
    white-space: normal;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 520px;
    margin: 0 0 0.45em;
  }

  .service-section .service-dice-net {
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 1600px) {
  .service-section {
    display: grid;
    grid-template-columns: minmax(600px, 0.46fr) minmax(0, 1fr);
    gap: clamp(58px, 4.6vw, 96px);
    align-items: start;
  }

  .service-section .section-intro {
    display: block;
    max-width: 620px;
    margin: 0;
  }

  .service-section .section-label {
    margin-bottom: clamp(42px, 4vw, 70px);
  }

  .service-section .section-intro h2 {
    max-width: 620px;
    margin-bottom: clamp(34px, 3vw, 52px);
    font-size: clamp(56px, 3.65vw, 72px);
    line-height: 1.1;
  }

  .service-section .section-intro h2 span {
    white-space: normal;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 460px;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .service-section {
    width: min(calc(100% - 80px), 1180px);
  }

  .service-section .section-intro {
    grid-template-columns: 1fr;
  }

  .service-section .section-intro h2 {
    font-size: clamp(44px, 5vw, 68px);
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .service-section {
    display: block;
    width: min(calc(100% - 44px), 680px);
    overflow: hidden;
  }

  .service-section .section-intro {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 28px;
  }

  .service-section .section-label {
    margin-bottom: 22px;
  }

  .service-section .section-intro h2 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.16;
  }

  .service-section .section-intro h2 span {
    display: inline;
    white-space: normal;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 100%;
    margin: 0;
  }

  .service-section .service-dice-net,
  .service-section .service-dice-net:not(.is-unfolded),
  .service-section .service-dice-net.is-unfolded {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    transform: none;
    perspective: none;
  }

  .service-section .service-dice-net .service-card,
  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6),
  .service-section .service-dice-net:not(.is-unfolded) .service-card,
  .service-section .service-dice-net.is-unfolded .service-card {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    min-height: 210px;
    opacity: 1;
    filter: none;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .works-head {
    grid-template-columns: 1fr;
    width: 100%;
    overflow: hidden;
  }

  .works-head > div:first-child,
  .works-proof {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .works-head > div:first-child p:not(.section-label) {
    white-space: normal;
  }
}

/* Company service field: stronger Liquid Glass treatment */
.company-service-orbits {
  border-color: rgba(47, 109, 246, 0.16);
  background:
    radial-gradient(circle at 22% 40%, rgba(255, 255, 255, 0.88), transparent 20%),
    radial-gradient(circle at 46% 48%, rgba(47, 109, 246, 0.13), transparent 30%),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.72), transparent 27%),
    linear-gradient(rgba(32, 33, 36, 0.046) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.046) 1px, transparent 1px) 0 0 / 92px 92px,
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(47, 109, 246, 0.06),
    0 34px 110px rgba(32, 33, 36, 0.055);
  backdrop-filter: blur(22px) saturate(1.34);
  -webkit-backdrop-filter: blur(22px) saturate(1.34);
}

.company-service-orbits::before {
  inset: 6% 4%;
  border-radius: 46% 54% 42% 58%;
  background:
    radial-gradient(circle at 18% 52%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.16) 32%, transparent 54%),
    radial-gradient(circle at 52% 46%, rgba(47, 109, 246, 0.16), transparent 42%),
    radial-gradient(circle at 76% 55%, rgba(255, 255, 255, 0.82), transparent 34%);
  filter: blur(22px);
  opacity: 0.96;
}

.company-service-orbits::after {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.88) 0 4px, transparent 5px),
    radial-gradient(circle at 29% 72%, rgba(255, 255, 255, 0.64) 0 7px, transparent 8px),
    radial-gradient(circle at 64% 28%, rgba(255, 255, 255, 0.8) 0 5px, transparent 6px),
    radial-gradient(circle at 82% 72%, rgba(47, 109, 246, 0.16) 0 6px, transparent 8px),
    linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 47%, transparent 60%);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.company-service-orbits-title,
.company-service-orbits-core,
.company-service-orbits ul {
  position: relative;
  z-index: 2;
}

.company-service-orbits-title {
  color: rgba(32, 33, 36, 0.62);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

.company-service-orbits-core {
  border-color: rgba(32, 33, 36, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    0 24px 80px rgba(47, 109, 246, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset -12px -14px 36px rgba(47, 109, 246, 0.06);
  backdrop-filter: blur(24px) saturate(1.28);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
}

.company-service-orbits .orbit-item {
  border-color: rgba(47, 109, 246, 0.24);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 18px 22px 54px rgba(255, 255, 255, 0.2),
    inset -18px -20px 56px rgba(47, 109, 246, 0.06),
    0 20px 72px rgba(47, 109, 246, 0.07);
  backdrop-filter: blur(18px) saturate(1.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
}

.company-service-orbits .orbit-item::before {
  top: 12%;
  left: 18%;
  width: 35%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.14) 64%, transparent 72%);
  opacity: 0.8;
}

.company-service-orbits .orbit-item span {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 38px rgba(32, 33, 36, 0.1);
}

/* Company service field: restore readable Liquid Glass placement */
.company-service-orbits {
  min-height: clamp(410px, 31vw, 500px);
}

.company-service-orbits-title {
  position: absolute;
  top: clamp(22px, 2.2vw, 34px);
  left: clamp(24px, 2.8vw, 42px);
  z-index: 5;
}

.company-service-orbits ul {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-service-orbits-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
}

.company-service-orbits .orbit-item {
  position: absolute;
  width: clamp(132px, 10.4vw, 172px);
  color: #20242b;
  transform: translate(-50%, -50%);
}

.company-service-orbits .orbit-item span {
  position: relative;
  z-index: 3;
  max-width: 8.5em;
  font-size: clamp(12px, 0.88vw, 16px);
  white-space: normal;
}

.company-service-orbits .orbit-brand {
  z-index: 3;
  top: 52%;
  left: 20%;
}

.company-service-orbits .orbit-copy {
  z-index: 4;
  top: 40%;
  left: 34%;
}

.company-service-orbits .orbit-design {
  z-index: 3;
  top: 45%;
  left: 49%;
}

.company-service-orbits .orbit-web {
  z-index: 4;
  top: 39%;
  left: 64%;
}

.company-service-orbits .orbit-dev {
  z-index: 3;
  top: 52%;
  left: 80%;
}

.company-service-orbits .orbit-sns {
  z-index: 4;
  top: 68%;
  left: 40%;
}

.company-service-orbits .orbit-movie {
  z-index: 4;
  top: 68%;
  left: 59%;
}

.company-service-orbits .orbit-item:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .company-service-orbits {
    min-height: 620px;
  }

  .company-service-orbits .orbit-item {
    width: min(39vw, 144px);
  }

  .company-service-orbits .orbit-item span {
    max-width: 7.5em;
    font-size: clamp(12px, 3.35vw, 14px);
    line-height: 1.35;
  }

  .company-service-orbits-core {
    width: min(62vw, 220px);
    font-size: 13px;
  }

  .company-service-orbits .orbit-brand {
    top: 28%;
    left: 31%;
  }

  .company-service-orbits .orbit-copy {
    top: 28%;
    left: 69%;
  }

  .company-service-orbits .orbit-design {
    top: 46%;
    left: 31%;
  }

  .company-service-orbits .orbit-web {
    top: 46%;
    left: 69%;
  }

  .company-service-orbits .orbit-sns {
    top: 64%;
    left: 31%;
  }

  .company-service-orbits .orbit-movie {
    top: 64%;
    left: 69%;
  }

  .company-service-orbits .orbit-dev {
    top: 82%;
    left: 50%;
  }
}

/* Revert requested Liquid Glass experiments on company/profile and YouTube proof panels */
.performance.performance-youtube {
  overflow: visible;
}

.performance.performance-youtube::before,
.performance-metrics::before,
.performance-metrics::after,
.performance-metrics .metric::after,
.company-profile-section::before,
.company-profile-grid::before,
.company-profile-grid::after,
.company-profile-card::before,
.company-profile-card::after,
.company-service-orbits::after,
.company-service-orbits .orbit-item::before {
  display: none;
  content: none;
}

.performance-metrics {
  isolation: auto;
  overflow: visible;
  border: 1px solid rgba(32, 33, 36, 0.14);
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.performance-metrics .metric {
  isolation: auto;
  overflow: visible;
  border-color: rgba(32, 33, 36, 0.12);
  --panel-accent: #2f8d2f;
  --panel-hover-text: #fff;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.performance-metrics .metric:nth-child(2) {
  --panel-accent: #2c5c8e;
}

.performance-metrics .metric:nth-child(3) {
  --panel-accent: #f1c40f;
  --panel-hover-text: #202124;
}

.performance-metrics .metric:nth-child(4) {
  --panel-accent: #d33b36;
}

.performance-metrics .metric:nth-child(5) {
  --panel-accent: #202124;
}

.performance-metrics .metric:hover,
.performance-metrics .metric:focus,
.performance-metrics .metric:focus-visible,
.performance-metrics .metric.is-hovered {
  border-color: color-mix(in srgb, var(--panel-accent) 72%, transparent);
  background: var(--panel-accent);
  box-shadow: none;
  transform: none;
}

.performance-metrics .metric strong {
  color: #1d2026;
  text-shadow: none;
}

.performance-metrics .metric small,
.performance-metrics .metric::before {
  color: rgba(32, 33, 36, 0.54);
}

.performance-metrics .metric:hover strong,
.performance-metrics .metric:focus strong,
.performance-metrics .metric:focus-visible strong,
.performance-metrics .metric.is-hovered strong,
.performance-metrics .metric:hover small,
.performance-metrics .metric:focus small,
.performance-metrics .metric:focus-visible small,
.performance-metrics .metric.is-hovered small,
.performance-metrics .metric:hover::before,
.performance-metrics .metric:focus::before,
.performance-metrics .metric:focus-visible::before,
.performance-metrics .metric.is-hovered::before {
  color: var(--panel-hover-text);
}

.company-profile-section {
  overflow: visible;
}

.company-profile-grid {
  isolation: auto;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.company-profile-card {
  isolation: auto;
  overflow: visible;
  border-color: var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

.company-profile-card:hover,
.company-profile-card:focus-within {
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
  transform: none;
}

.company-service-orbits {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 96px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 96px 100%,
    #202020;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.company-service-orbits::before {
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 58%);
  filter: blur(22px);
  opacity: 0.7;
}

.company-service-orbits-title {
  color: rgba(255, 255, 255, 0.66);
  text-shadow: none;
}

.company-service-orbits-core {
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #202020;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.company-service-orbits .orbit-item {
  border: 2px dashed rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.company-service-orbits .orbit-item span {
  color: #fff;
  text-shadow: none;
}

.company-service-orbits .orbit-item:hover {
  border-color: rgba(47, 109, 246, 0.92);
  background: #2f6df6;
  color: #fff;
  box-shadow: none;
}

@media (max-width: 900px) {
  .performance-metrics {
    background: #fff;
  }

  .company-profile-grid {
    gap: 20px;
    background: transparent;
  }

  .company-profile-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Mobile final pass: reinterpret desktop compositions instead of only shrinking them */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    --mobile-page: min(100% - 44px, 720px);
  }

  main {
    overflow: hidden;
  }

  .hero,
  .service-section,
  .philosophy-section,
  .performance.performance-youtube,
  .works-section,
  .company-section,
  .contact-section,
  .recruit-entry-banner,
  .cases-page-main,
  .columns-page-main,
  .company-page-main,
  .recruit-page-main .recruit-section,
  .column-article-main {
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    margin-inline: auto;
  }

  .section-label {
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .section-label::after {
    width: 54px;
  }

  h1,
  h2,
  h3 {
    text-wrap: balance;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    min-height: 76px;
    padding: 16px 20px 14px;
    border-inline: 0;
    border-top: 0;
    border-radius: 0;
  }

  .brand-logo img {
    width: 138px;
    height: auto;
  }

  .nav {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 42px 0 52px;
  }

  .hero h1 {
    max-width: 12em;
    margin-bottom: 18px;
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.34;
  }

  .hero h1 span {
    display: block;
  }

  .mobile-hero-cta {
    width: var(--mobile-page);
    margin-inline: auto;
  }

  .philosophy-section {
    display: grid;
    gap: 22px;
    padding: 56px 0 68px;
  }

  .philosophy-dots {
    order: 2;
    min-height: 300px;
    margin-inline: -12px;
    overflow: visible;
  }

  .golden-sketch {
    inset: auto -28px 0 -28px;
    height: 310px;
    opacity: 0.88;
  }

  .philosophy-copy h2 {
    max-width: 8em;
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.2;
  }

  .philosophy-copy p:not(.section-label) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.9;
  }

  .service-section {
    display: block;
    padding: 62px 0;
  }

  .service-section .section-intro {
    margin-bottom: 28px;
  }

  .service-section .section-intro h2,
  .company-section h2,
  .contact-section h2,
  .works-head h2,
  .cases-hero h1,
  .case-section-head h1,
  .case-section-head h2,
  .columns-hero h1,
  .column-section-head h2,
  .recruit-page-main .recruit-jobs-head h3 {
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.18;
  }

  .service-grid,
  .service-section .service-dice-net {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 1px solid var(--layout-line, #dfe3ea);
    background: #fff;
  }

  .service-card,
  .service-section .service-dice-net .service-card {
    min-height: 206px;
    padding: 18px 14px 16px;
    border: 0;
    border-right: 1px solid var(--layout-line, #dfe3ea);
    border-bottom: 1px solid var(--layout-line, #dfe3ea);
    background: #fff;
  }

  .service-section .service-dice-net .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card .icon {
    margin-bottom: 34px;
  }

  .service-card h3 {
    margin: 0 0 10px;
    font-size: clamp(21px, 6.2vw, 25px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .performance.performance-youtube {
    display: block;
    padding: 64px 0;
    border-top: 1px solid var(--layout-line, #dfe3ea);
    border-bottom: 1px solid var(--layout-line, #dfe3ea);
  }

  .performance-copy {
    margin-bottom: 28px;
  }

  .performance-copy h2 {
    max-width: 9em;
    margin-bottom: 20px;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.14;
  }

  .performance-copy p:not(.section-label) {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.85;
  }

  .performance-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    border-top: 1px solid var(--layout-line, #dfe3ea);
    border-left: 1px solid var(--layout-line, #dfe3ea);
    overflow: hidden;
  }

  .performance-metrics .metric,
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    display: grid;
    grid-column: auto;
    align-content: end;
    min-height: 164px;
    padding: 42px 16px 18px;
    border: 0;
    border-right: 1px solid var(--layout-line, #dfe3ea);
    border-bottom: 1px solid var(--layout-line, #dfe3ea);
    background: #fff;
    transform: none;
  }

  .performance-metrics .metric:last-child {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .performance-metrics .metric::before {
    top: 18px;
    left: 16px;
    font-size: 12px;
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    display: flex;
    align-items: baseline;
    margin: 0 0 10px;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .performance-metrics .metric strong span {
    margin-left: 0.06em;
    font-size: 0.42em;
  }

  .performance-metrics .metric small {
    max-width: 10em;
    margin: 0;
    font-size: 11px;
    line-height: 1.42;
  }

  .works-section {
    width: 100%;
    max-width: none;
    padding: 64px 0 70px;
    background: #f2f2f2;
  }

  .works-head {
    display: grid;
    gap: 20px;
    width: var(--mobile-page);
    margin: 0 auto 26px;
  }

  .works-head > div:first-child p:not(.section-label) {
    font-size: 13px;
    line-height: 1.8;
  }

  .works-proof {
    width: 100%;
    min-height: 0;
    padding: 18px;
    border: 1px solid rgba(32, 33, 36, 0.12);
    background: #fff;
    color: #202124;
  }

  .works-proof span {
    color: rgba(32, 33, 36, 0.54);
  }

  .works-proof strong {
    font-size: 48px;
    color: #202124;
  }

  .works-proof p {
    color: rgba(32, 33, 36, 0.74);
  }

  .works-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0 22px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .works-grid::-webkit-scrollbar,
  .case-tabs::-webkit-scrollbar,
  .column-tag-filter::-webkit-scrollbar {
    display: none;
  }

  .works-grid,
  .case-tabs,
  .column-tag-filter {
    scrollbar-width: none;
  }

  .works-grid .work-card,
  .work-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 0;
    padding: 8px 8px 18px;
    scroll-snap-align: start;
  }

  .works-grid .work-card img,
  .work-card img {
    aspect-ratio: 16 / 10;
    border-radius: 6px;
  }

  .works-grid .work-card h3,
  .work-card h3 {
    margin: 20px 14px 14px;
    font-size: 21px;
    line-height: 1.28;
  }

  .works-grid .work-card .work-stats,
  .work-card .work-stats,
  .work-card p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: auto;
    margin: 0 14px 18px;
    padding: 0;
    background: transparent;
  }

  .works-grid .work-card .work-stats span,
  .work-card .work-stats span {
    position: static;
    display: grid;
    height: auto;
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 6px;
    background: #efefef;
    box-shadow: none;
    color: #202124;
    font-size: 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .works-grid .work-card .work-stats span::before,
  .work-card .work-stats span::before {
    display: none;
  }

  .works-grid .work-card .work-stats small,
  .work-card .work-stats small {
    color: rgba(32, 33, 36, 0.56);
    font-size: 10px;
  }

  .works-grid .work-card .work-stats strong,
  .work-card .work-stats strong {
    font-size: 15px;
  }

  .work-card::after {
    margin-left: 14px;
  }

  .company-page-about {
    display: grid;
    width: var(--mobile-page);
    max-width: var(--mobile-page);
    padding: 58px 0 64px;
  }

  .company-page-about h1 {
    max-width: 100%;
    margin: 0 0 28px;
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.24;
    letter-spacing: 0;
  }

  .company-page-about h1 br {
    display: none;
  }

  .company-page-about-copy {
    display: grid;
    gap: 14px;
  }

  .company-page-about-copy h2 {
    margin: 0;
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.34;
  }

  .company-service-orbits {
    display: grid;
    gap: 14px;
    min-height: 0;
    margin: 24px 0 30px;
    padding: 22px;
    overflow: hidden;
  }

  .company-service-orbits-title,
  .company-service-orbits-core,
  .company-service-orbits ul,
  .company-service-orbits .orbit-item,
  .company-service-orbits .orbit-brand,
  .company-service-orbits .orbit-copy,
  .company-service-orbits .orbit-design,
  .company-service-orbits .orbit-web,
  .company-service-orbits .orbit-dev,
  .company-service-orbits .orbit-sns,
  .company-service-orbits .orbit-movie {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    z-index: auto;
    transform: none;
  }

  .company-service-orbits-title {
    margin: 0 0 6px;
    font-size: 11px;
  }

  .company-service-orbits-core {
    order: 2;
    width: 100%;
    height: 42px;
    margin: 0;
    font-size: 13px;
  }

  .company-service-orbits ul {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .company-service-orbits .orbit-item {
    width: auto;
    min-height: 74px;
    aspect-ratio: auto;
    border-width: 1px;
    border-radius: 18px;
    animation: none;
  }

  .company-service-orbits .orbit-item span {
    max-width: none;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
  }

  .company-service-orbits .orbit-dev {
    grid-column: 1 / -1;
  }

  .company-profile-section,
  .company-profile-grid,
  .company-profile-card {
    width: 100%;
    max-width: 100%;
  }

  .company-profile-section {
    padding: 58px 0;
  }

  .company-profile-head,
  .company-profile-grid {
    width: var(--mobile-page);
    margin-inline: auto;
  }

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

  .case-list-section,
  .columns-hero,
  .column-list-section,
  .recruit-page-main .recruit-section {
    padding-block: 58px;
  }

  .case-tabs,
  .column-tag-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -22px;
    padding: 0 22px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .case-tabs button,
  .column-tag-filter button {
    flex: 0 0 auto;
    min-height: 38px;
  }

  .case-card-body,
  .column-card {
    padding: 22px;
  }

  .case-card h3,
  .column-card h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .recruit-page-main .recruit-hero {
    display: grid;
    gap: 30px;
    padding-bottom: 54px;
  }

  .recruit-page-main .recruit-hero h1 {
    max-width: 10em;
    font-size: clamp(35px, 9.2vw, 42px);
    line-height: 1.2;
  }

  .recruit-page-main .recruit-hero h1 span {
    display: block;
    white-space: normal;
  }

  .recruit-page-main .recruit-hero p:not(.section-label) {
    font-size: 13px;
    line-height: 1.9;
  }

  .recruit-glass-stage {
    min-height: 240px;
    margin: 0 -8px;
  }

  .recruit-glass-fallback span {
    width: 108px;
    height: 184px;
  }

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

  .contact-section {
    display: grid;
    gap: 18px;
    padding: 58px 0;
    border: 0;
    background: transparent;
  }

  .contact-hero {
    min-height: 280px;
    padding: 24px;
  }

  .contact-buttons {
    display: grid;
    gap: 12px;
  }

  .recruit-entry-banner {
    margin-top: 0;
    padding: 30px 22px;
  }

  .footer {
    width: 100%;
    padding: 32px 22px;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .philosophy-copy h2,
  .performance-copy h2,
  .company-page-about h1,
  .recruit-page-main .recruit-hero h1 {
    font-size: 31px;
  }

  .service-grid,
  .service-section .service-dice-net {
    grid-template-columns: 1fr;
  }

  .service-section .service-dice-net .service-card:nth-child(2n) {
    border-right: 1px solid var(--layout-line, #dfe3ea);
  }
}

/* Mobile final override strength: beat earlier page-specific mobile widths */
@media (max-width: 680px) {
  .company-page-main,
  .cases-page-main,
  .columns-page-main,
  .company-page-main .company-page-about,
  .company-page-main .company-profile-section,
  .company-page-main .company-profile-head,
  .company-page-main .company-profile-grid,
  .columns-page-main .columns-hero,
  .columns-page-main .column-list-section,
  .cases-page-main .case-list-section {
    width: var(--mobile-page) !important;
    max-width: var(--mobile-page) !important;
    margin-inline: auto !important;
  }

  .company-page-main .company-page-about h1,
  .recruit-page-main .recruit-hero h1,
  .performance-copy h2 {
    text-align: left;
    text-wrap: auto;
    word-break: normal;
    overflow-wrap: normal;
  }

  .company-page-main .company-page-about h1 {
    max-width: 9em;
    font-size: clamp(32px, 8.6vw, 37px);
    line-height: 1.22;
  }

  .service-section .service-grid.service-dice-net {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .service-section .service-grid.service-dice-net .service-card {
    min-height: 178px !important;
    padding: 16px 12px 14px !important;
  }

  .service-section .service-grid.service-dice-net .service-card h3 {
    font-size: clamp(19px, 5.4vw, 22px) !important;
  }

  .service-section .service-grid.service-dice-net .service-card p {
    font-size: 11px !important;
  }

  .service-section .service-grid.service-dice-net .service-card .icon {
    margin-bottom: 24px !important;
  }

  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(23px, 6.2vw, 28px) !important;
  }

  .performance-metrics .metric:nth-child(2) strong {
    font-size: clamp(24px, 6.8vw, 30px) !important;
  }

  .performance-metrics .metric:nth-child(4) strong span {
    font-size: 0.36em;
  }
}

/* Mobile polish lock: keep desktop fixed, reinterpret dense modules for phones */
@media (max-width: 680px) {
  .company-page-main .company-page-about,
  .company-page-main .company-profile-section,
  .company-page-main .company-profile-head,
  .company-page-main .company-profile-grid,
  .columns-page-main .columns-hero,
  .columns-page-main .column-list-section,
  .cases-page-main .case-list-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
  }

  .service-section .service-grid.service-dice-net,
  .service-section .service-dice-net,
  .service-section .service-dice-net:not(.is-unfolded),
  .service-section .service-dice-net.is-unfolded {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .service-section .service-grid.service-dice-net .service-card,
  .service-section .service-dice-net .service-card,
  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6),
  .service-section .service-dice-net:not(.is-unfolded) .service-card,
  .service-section .service-dice-net.is-unfolded .service-card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto !important;
    min-height: 168px !important;
    padding: 16px 12px 14px !important;
    border-right: 1px solid var(--layout-line, #dfe3ea) !important;
    border-bottom: 1px solid var(--layout-line, #dfe3ea) !important;
  }

  .service-section .service-dice-net .service-card:nth-child(2n) {
    border-right: 0 !important;
  }

  .service-section .service-dice-net .service-card h3 {
    font-size: clamp(18px, 4.8vw, 21px) !important;
    line-height: 1.12 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .service-section .service-dice-net .service-card p {
    font-size: 10.5px !important;
    line-height: 1.55 !important;
  }

  .service-section .service-dice-net .service-card .icon {
    margin-bottom: 20px !important;
  }

  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(4) {
    grid-column: 1 / -1 !important;
    min-height: 144px !important;
  }

  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3 {
    font-size: clamp(25px, 7vw, 31px) !important;
  }

  .performance-copy h2 {
    max-width: 100%;
    font-size: clamp(29px, 7.8vw, 34px) !important;
    line-height: 1.22 !important;
    overflow-wrap: normal;
  }

  .company-page-main .company-page-about h1 {
    max-width: 10.5em;
    font-size: clamp(31px, 8.2vw, 35px) !important;
  }

  .company-page-main .company-service-orbits {
    width: 100%;
    margin-inline: 0;
  }

  .case-tabs,
  .column-tag-filter {
    margin-inline: 0 !important;
    padding-inline: 0 22px !important;
  }
}

@media (max-width: 380px) {
  .service-section .service-grid.service-dice-net,
  .service-section .service-dice-net,
  .service-section .service-dice-net:not(.is-unfolded),
  .service-section .service-dice-net.is-unfolded {
    grid-template-columns: 1fr !important;
  }

  .service-section .service-dice-net .service-card:nth-child(2n) {
    border-right: 1px solid var(--layout-line, #dfe3ea) !important;
  }
}

/* Service cards: keep text readable on dark hover/focus inversion */
.service-section .service-dice-net .service-card:hover h3,
.service-section .service-dice-net .service-card:focus-within h3,
.service-section .service-dice-net .service-card:hover p,
.service-section .service-dice-net .service-card:focus-within p {
  color: #fff !important;
}

.service-section .service-dice-net .service-card:hover .icon em,
.service-section .service-dice-net .service-card:focus-within .icon em {
  color: rgba(255, 255, 255, 0.68) !important;
}

.service-section .service-dice-net .service-card:hover::after,
.service-section .service-dice-net .service-card:focus-within::after {
  border-top-color: #5f82ff !important;
}

/* Company service field: remove the boxed diagram feeling */
.company-service-orbits {
  border: 0 !important;
  background:
    radial-gradient(ellipse at 52% 58%, rgba(47, 109, 246, 0.12), transparent 42%),
    radial-gradient(ellipse at 34% 44%, rgba(255, 255, 255, 0.92), transparent 30%),
    radial-gradient(ellipse at 72% 50%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 92px 92px,
    transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.company-service-orbits::before {
  inset: 9% 4% 5%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 48%, rgba(47, 109, 246, 0.16), transparent 44%),
    radial-gradient(circle at 60% 54%, rgba(32, 33, 36, 0.06), transparent 42%);
  filter: blur(34px);
  opacity: 0.82;
}

.company-service-orbits-title {
  color: rgba(32, 33, 36, 0.54) !important;
}

.company-service-orbits .orbit-item span,
.company-service-orbits .orbit-item:hover span {
  color: #202124 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 32px rgba(32, 33, 36, 0.14) !important;
}

.company-service-orbits .orbit-item:hover {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(47, 109, 246, 0.12)),
    rgba(255, 255, 255, 0.36) !important;
}

@media (max-width: 680px) {
  .company-service-orbits {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(47, 109, 246, 0.1), transparent 45%),
      linear-gradient(rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
      linear-gradient(90deg, rgba(32, 33, 36, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
      transparent !important;
  }
}

/* Company service field: simplified compact map */
.company-service-orbits {
  display: grid !important;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 1px solid rgba(32, 33, 36, 0.12) !important;
  background:
    linear-gradient(rgba(32, 33, 36, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    #fff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.company-service-orbits::before,
.company-service-orbits::after {
  display: none !important;
  content: none !important;
}

.company-service-orbits-title {
  position: static !important;
  grid-column: 1 / -1 !important;
  padding: 22px 26px 0 !important;
  color: rgba(32, 33, 36, 0.55) !important;
  font-size: clamp(12px, 0.9vw, 14px) !important;
  font-weight: 950 !important;
  letter-spacing: 0.16em !important;
}

.company-service-orbits-core {
  position: static !important;
  display: grid !important;
  width: auto !important;
  height: auto !important;
  min-height: 156px !important;
  margin: 22px 0 26px 26px !important;
  padding: 22px !important;
  place-items: center !important;
  border: 1px solid rgba(32, 33, 36, 0.12) !important;
  border-radius: 0 !important;
  background: #1d2026 !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.company-service-orbits-core span {
  max-width: 7em;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 950;
  line-height: 1.02;
  text-align: center;
}

.company-service-orbits ul {
  position: static !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 22px 26px 26px 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-top: 1px solid rgba(32, 33, 36, 0.12) !important;
  border-left: 1px solid rgba(32, 33, 36, 0.12) !important;
}

.company-service-orbits .orbit-item,
.company-service-orbits .orbit-brand,
.company-service-orbits .orbit-copy,
.company-service-orbits .orbit-design,
.company-service-orbits .orbit-web,
.company-service-orbits .orbit-dev,
.company-service-orbits .orbit-sns,
.company-service-orbits .orbit-movie {
  position: static !important;
  display: flex !important;
  width: auto !important;
  min-height: 52px !important;
  aspect-ratio: auto !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border: 0 !important;
  border-right: 1px solid rgba(32, 33, 36, 0.12) !important;
  border-bottom: 1px solid rgba(32, 33, 36, 0.12) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.68) !important;
  color: #202124 !important;
  text-align: left !important;
  transform: none !important;
  animation: none !important;
}

.company-service-orbits .orbit-item span,
.company-service-orbits .orbit-item:hover span {
  max-width: none !important;
  padding: 0 16px !important;
  color: #202124 !important;
  font-size: clamp(13px, 0.95vw, 16px) !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
  text-shadow: none !important;
  white-space: normal !important;
}

.company-service-orbits .orbit-item:hover {
  background: #f5f7fb !important;
  transform: none !important;
}

@media (max-width: 680px) {
  .company-service-orbits {
    grid-template-columns: 1fr !important;
  }

  .company-service-orbits-title {
    padding: 18px 18px 0 !important;
  }

  .company-service-orbits-core {
    min-height: 86px !important;
    margin: 18px 18px 0 !important;
  }

  .company-service-orbits-core span {
    max-width: none;
  }

  .company-service-orbits ul {
    grid-template-columns: 1fr !important;
    margin: 0 18px 18px !important;
  }
}

/* Company service field: remove nested boxes and keep it as a quiet information band */
.company-service-orbits {
  display: grid !important;
  grid-template-columns: 1fr !important;
  row-gap: 0 !important;
  min-height: auto !important;
  padding: clamp(20px, 2.5vw, 34px) 0 clamp(22px, 2.8vw, 38px) !important;
  border: 0 !important;
  border-top: 1px solid rgba(32, 33, 36, 0.12) !important;
  border-bottom: 1px solid rgba(32, 33, 36, 0.12) !important;
  background:
    linear-gradient(rgba(32, 33, 36, 0.032) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(90deg, rgba(32, 33, 36, 0.032) 1px, transparent 1px) 0 0 / 64px 64px,
    transparent !important;
  overflow: visible !important;
}

.company-service-orbits-title {
  padding: 0 !important;
  color: rgba(32, 33, 36, 0.52) !important;
}

.company-service-orbits-core {
  display: block !important;
  width: auto !important;
  min-height: auto !important;
  margin: clamp(18px, 2vw, 26px) 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #202124 !important;
}

.company-service-orbits-core span {
  max-width: none !important;
  font-size: clamp(20px, 2.1vw, 34px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: left !important;
}

.company-service-orbits ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: clamp(18px, 3vw, 44px) !important;
  row-gap: 0 !important;
  margin: clamp(18px, 2vw, 28px) 0 0 !important;
  border: 0 !important;
}

.company-service-orbits .orbit-item,
.company-service-orbits .orbit-brand,
.company-service-orbits .orbit-copy,
.company-service-orbits .orbit-design,
.company-service-orbits .orbit-web,
.company-service-orbits .orbit-dev,
.company-service-orbits .orbit-sns,
.company-service-orbits .orbit-movie {
  min-height: 0 !important;
  padding: 12px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(32, 33, 36, 0.12) !important;
  background: transparent !important;
}

.company-service-orbits .orbit-item span,
.company-service-orbits .orbit-item:hover span {
  position: relative;
  padding: 0 0 0 18px !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.45 !important;
}

.company-service-orbits .orbit-item span::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f6df6;
  content: "";
  transform: translateY(-50%);
}

.company-service-orbits .orbit-item:hover {
  background: transparent !important;
}

@media (max-width: 680px) {
  .company-service-orbits {
    padding: 18px 0 22px !important;
  }

  .company-service-orbits ul {
    grid-template-columns: 1fr !important;
    margin: 16px 0 0 !important;
  }
}

/* YouTube performance: tighten the proof block so the headline and numbers read together */
@media (min-width: 901px) {
  .performance.performance-youtube {
    display: grid !important;
    grid-template-columns: minmax(430px, 0.4fr) minmax(0, 0.6fr) !important;
    gap: clamp(34px, 3.8vw, 56px) !important;
    align-items: start !important;
    padding: clamp(58px, 5.4vw, 92px) 0 !important;
  }

  .performance-copy {
    margin: 0 !important;
  }

  .performance-copy h2 {
    max-width: 100% !important;
    margin: 0 0 clamp(18px, 1.8vw, 28px) !important;
    font-size: clamp(38px, 3.45vw, 56px) !important;
    line-height: 1.04 !important;
    overflow-wrap: normal !important;
  }

  .performance-copy h2 span,
  .performance-copy h2 span:first-child {
    display: block !important;
  }

  .performance-copy h2 span:first-child {
    white-space: nowrap !important;
  }

  .performance-copy h2 span:not(:first-child) {
    white-space: normal !important;
  }

  .performance-copy p:not(.section-label) {
    max-width: 34em !important;
    font-size: clamp(13px, 0.95vw, 16px) !important;
    line-height: 1.75 !important;
  }

  .performance-metrics {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(clamp(122px, 10.5vw, 168px), auto) !important;
    gap: 0 !important;
    align-self: start !important;
    margin: clamp(10px, 1.2vw, 18px) 0 0 !important;
    border-top: 1px solid rgba(32, 33, 36, 0.13) !important;
    border-left: 1px solid rgba(32, 33, 36, 0.13) !important;
  }

  .performance-metrics .metric,
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    display: grid !important;
    grid-column: span 2 !important;
    align-content: end !important;
    min-height: clamp(122px, 10.5vw, 168px) !important;
    padding: clamp(34px, 3vw, 48px) clamp(18px, 2vw, 30px) clamp(18px, 1.8vw, 28px) !important;
    border: 0 !important;
    border-right: 1px solid rgba(32, 33, 36, 0.13) !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.13) !important;
    transform: none !important;
  }

  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    grid-column: span 3 !important;
  }

  .performance-metrics .metric::before {
    top: clamp(15px, 1.3vw, 22px) !important;
    left: clamp(18px, 2vw, 30px) !important;
    font-size: clamp(11px, 0.8vw, 13px) !important;
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    margin: 0 0 8px !important;
    font-size: clamp(42px, 3.8vw, 66px) !important;
    line-height: 0.98 !important;
    white-space: nowrap !important;
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(34px, 3vw, 54px) !important;
  }

  .performance-metrics .metric small {
    max-width: 12em !important;
    font-size: clamp(12px, 0.9vw, 15px) !important;
    line-height: 1.35 !important;
  }
}

/* Mobile top polish: one-message first view and stable drawer navigation */
@media (max-width: 900px) {
  body.is-nav-open {
    overflow: hidden;
  }

  .site-header {
    top: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 92px !important;
    margin: 0 !important;
    padding: 18px 24px 16px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.1) !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: none !important;
    backdrop-filter: blur(18px) saturate(1.08) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  }

  .site-header::after {
    position: absolute;
    right: 24px;
    bottom: -1px;
    width: 98px;
    height: 3px;
    border-radius: 999px;
    background: var(--creative-gradient);
    content: "";
  }

  .brand-logo img,
  .site-header.is-scrolled .brand.brand-logo img,
  .site-header.is-menu-open .brand.brand-logo img {
    width: 142px !important;
    height: auto !important;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center !important;
    width: 56px !important;
    height: 56px !important;
    margin-left: auto !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 18px 42px rgba(24, 31, 42, 0.12) !important;
  }

  .nav-toggle::before {
    display: none !important;
  }

  .nav-toggle span {
    width: 22px !important;
    height: 2px !important;
    margin: 0 !important;
    grid-area: 1 / 1 !important;
    background: #111 !important;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) !important;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) !important;
  }

  .nav {
    position: fixed !important;
    top: 108px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 999 !important;
    display: grid !important;
    gap: 8px !important;
    max-height: calc(100dvh - 132px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-y: auto !important;
    border: 0 !important;
    background: transparent !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
  }

  .site-header.is-menu-open .nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav a,
  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    border: 1px solid rgba(32, 33, 36, 0.12) !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 16px 34px rgba(24, 31, 42, 0.07) !important;
    color: #111 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .nav a::before,
  .nav a::after {
    position: static !important;
    display: block !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #2385e8, #f0388b) !important;
    content: "" !important;
    transform: none !important;
  }

  .nav a.is-current {
    border-color: #111 !important;
  }

  .nav a[href="#contact"],
  .nav a[href="index.html#contact"] {
    min-height: 44px !important;
    border-color: #202020 !important;
    background: #202020 !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(17, 20, 24, 0.16) !important;
  }

  .tbb-top-image .hero {
    display: grid !important;
    grid-template-rows: auto !important;
    row-gap: 0 !important;
    width: 100% !important;
    min-height: calc(100svh - 92px) !important;
    margin: 0 !important;
    padding: 28px 24px 38px !important;
    overflow: hidden !important;
    background:
      linear-gradient(180deg, #fff 0%, #fff 48%, rgba(247, 248, 250, 0.92) 100%) !important;
  }

  .tbb-top-image .hero::before,
  .tbb-top-image .hero::after {
    display: none !important;
  }

  .tbb-top-image .hero-copy {
    order: -1 !important;
    max-width: 100% !important;
    z-index: 4 !important;
    align-self: start !important;
  }

  .tbb-top-image .hero .kicker {
    margin: 0 0 18px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .tbb-top-image .hero .kicker::after {
    width: 48px !important;
    margin-left: 12px !important;
  }

  .tbb-top-image .hero h1 {
    max-width: 8.4em !important;
    margin: 0 !important;
    font-size: clamp(35px, 9.2vw, 48px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
  }

  .tbb-top-image .hero h1 span {
    display: inline !important;
    white-space: normal !important;
  }

  .tbb-top-image .hero .body-copy,
  .tbb-top-image .hero-actions .button-ghost {
    display: none !important;
  }

  .tbb-top-image .hero-actions {
    display: none !important;
  }

  .tbb-top-image .hero-image-bg {
    position: absolute !important;
    inset: auto -34px 22px auto !important;
    z-index: 1 !important;
    width: min(390px, 92vw) !important;
    height: min(390px, 46svh) !important;
    min-height: 0 !important;
    border: 0 !important;
    background:
      radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 64%),
      url("assets/top-bauhaus-bg-mono.png") center center / contain no-repeat !important;
    opacity: 0.96 !important;
  }

  .tbb-top-image .hero-image-bg::before {
    display: none !important;
  }

  main > .mobile-hero-cta {
    width: calc(100% - 48px) !important;
    margin: -84px auto 42px !important;
    position: relative !important;
    z-index: 5 !important;
  }

  main > .mobile-hero-cta .button {
    min-height: 56px !important;
    border-radius: 7px !important;
  }
}

/* Mobile section polish: service, proof metrics, and company cards */
@media (max-width: 900px) {
  .service-section {
    padding: 68px 0 58px !important;
    background: #fff !important;
  }

  .service-section .section-intro {
    margin-bottom: 26px !important;
  }

  .service-section .section-intro p:not(.section-label) {
    max-width: 26em !important;
    font-size: 13px !important;
    line-height: 1.85 !important;
  }

  .service-section .service-grid.service-dice-net,
  .service-section .service-dice-net,
  .service-section .service-dice-net:not(.is-unfolded),
  .service-section .service-dice-net.is-unfolded {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    border: 0 !important;
    border-top: 1px solid rgba(32, 33, 36, 0.14) !important;
    background: transparent !important;
  }

  .service-section .service-dice-net .service-card,
  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) 34px !important;
    column-gap: 18px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 24px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.14) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .service-section .service-dice-net .service-card::before {
    display: none !important;
  }

  .service-section .service-dice-net .service-card::after {
    position: static !important;
    display: block !important;
    justify-self: end !important;
    width: 28px !important;
    height: 28px !important;
    margin-top: 6px !important;
    border: 1px solid rgba(32, 33, 36, 0.24) !important;
    border-radius: 50% !important;
    background:
      linear-gradient(currentColor, currentColor) center / 12px 1px no-repeat,
      #fff !important;
    color: #202124 !important;
    content: "" !important;
    transform: none !important;
  }

  .service-section .service-dice-net .icon {
    display: block !important;
    grid-row: 1 / span 2 !important;
    width: 52px !important;
    height: auto !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .service-section .service-dice-net .icon svg {
    display: none !important;
  }

  .service-section .service-dice-net .icon em {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #202124 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    align-self: start !important;
    margin: 0 0 8px !important;
    color: #202124 !important;
    font-size: clamp(30px, 8.8vw, 42px) !important;
    line-height: 0.94 !important;
    overflow-wrap: normal !important;
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    align-self: start !important;
    margin: 0 !important;
    color: rgba(32, 33, 36, 0.64) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
  }

  .service-section .service-dice-net .service-card:hover h3,
  .service-section .service-dice-net .service-card:focus-within h3 {
    color: #202124 !important;
  }

  .service-section .service-dice-net .service-card:hover p,
  .service-section .service-dice-net .service-card:focus-within p {
    color: rgba(32, 33, 36, 0.72) !important;
  }

  .performance.performance-youtube {
    padding: 72px 0 62px !important;
    border: 0 !important;
    background:
      radial-gradient(circle at 88% 10%, rgba(35, 133, 232, 0.1), transparent 28%),
      radial-gradient(circle at 12% 84%, rgba(240, 56, 139, 0.08), transparent 34%),
      #fff !important;
  }

  .performance-copy {
    margin-bottom: 24px !important;
  }

  .performance-copy h2 {
    max-width: 8.6em !important;
    font-size: clamp(38px, 10vw, 46px) !important;
    line-height: 1.12 !important;
  }

  .performance-copy p:not(.section-label) {
    font-size: 13px !important;
    line-height: 1.9 !important;
  }

  .performance-metrics {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(242px, 78vw) !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    width: calc(100% + 44px) !important;
    margin: 28px -22px 0 0 !important;
    padding: 0 22px 10px 0 !important;
    border: 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .performance-metrics::-webkit-scrollbar {
    display: none !important;
  }

  .performance-metrics .metric,
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    display: grid !important;
    align-content: end !important;
    min-height: 188px !important;
    padding: 46px 22px 24px !important;
    border: 1px solid rgba(32, 33, 36, 0.1) !important;
    border-radius: 20px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 250, 0.78)),
      #fff !important;
    box-shadow: 0 20px 48px rgba(24, 31, 42, 0.08) !important;
    scroll-snap-align: start !important;
    overflow: hidden !important;
  }

  .performance-metrics .metric::before {
    top: 18px !important;
    left: 22px !important;
    color: rgba(32, 33, 36, 0.46) !important;
    font-size: 12px !important;
  }

  .performance-metrics .metric::after {
    position: absolute !important;
    right: -28px !important;
    top: -28px !important;
    display: block !important;
    width: 96px !important;
    height: 96px !important;
    border-radius: 50% !important;
    background: var(--creative-gradient) !important;
    content: "" !important;
    opacity: 0.16 !important;
    transform: none !important;
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    margin: 0 0 14px !important;
    font-size: clamp(45px, 14vw, 58px) !important;
    line-height: 0.96 !important;
    white-space: nowrap !important;
  }

  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(34px, 10.8vw, 44px) !important;
  }

  .performance-metrics .metric small {
    color: rgba(32, 33, 36, 0.62) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  .performance-metrics .metric:hover,
  .performance-metrics .metric:focus,
  .performance-metrics .metric:focus-visible,
  .performance-metrics .metric.is-hovered {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 250, 0.78)),
      #fff !important;
    transform: none !important;
  }

  .performance-metrics .metric:hover strong,
  .performance-metrics .metric:focus strong,
  .performance-metrics .metric:focus-visible strong,
  .performance-metrics .metric.is-hovered strong {
    color: #202124 !important;
    transform: none !important;
  }

  .company-section {
    overflow: hidden !important;
  }

  .company-section .company-info {
    margin-bottom: 24px !important;
  }

  .company-section .company-profile-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(316px, 88vw) !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: calc(100% + 44px) !important;
    margin: 0 -22px 0 0 !important;
    padding: 0 22px 12px 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .company-section .company-profile-grid::-webkit-scrollbar {
    display: none !important;
  }

  .company-section .company-profile-card,
  .company-section .company-profile-card:nth-child(1),
  .company-section .company-profile-card:nth-child(2) {
    min-height: 0 !important;
    padding: 34px 26px 30px !important;
    border: 1px solid rgba(32, 33, 36, 0.1) !important;
    border-radius: 22px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 250, 0.74)),
      #fff !important;
    box-shadow: 0 22px 54px rgba(24, 31, 42, 0.08) !important;
    scroll-snap-align: start !important;
  }

  .company-section .company-profile-card::before,
  .company-section .company-profile-card::after {
    display: none !important;
  }

  .company-section .company-profile-card h3 {
    margin-bottom: 2px !important;
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.12 !important;
  }

  .company-section .company-profile-card > p {
    margin-bottom: 28px !important;
    color: rgba(32, 33, 36, 0.52) !important;
    font-size: 14px !important;
    letter-spacing: 0.08em !important;
  }

  .company-section .company-profile-card dl {
    gap: 0 !important;
    margin: 0 !important;
  }

  .company-section .company-profile-card dl div {
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 16px 0 !important;
    border-top: 1px solid rgba(32, 33, 36, 0.1) !important;
  }

  .company-section .company-profile-card .company-profile-office {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .company-section .company-profile-card dt {
    color: rgba(32, 33, 36, 0.48) !important;
    font-size: 12px !important;
  }

  .company-section .company-profile-card dd {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .company-section .company-profile-card .office-list {
    display: grid !important;
    gap: 14px !important;
  }

  .company-section .company-profile-card .office-list span {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    max-width: 100% !important;
    color: #202124 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .company-section .company-profile-card .office-list strong {
    display: block !important;
    color: rgba(32, 33, 36, 0.52) !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

/* Mobile monochrome alignment: keep phone UI in the same tone as desktop */
@media (max-width: 900px) {
  .section-label::before,
  .kicker::before {
    background: #202124 !important;
  }

  .section-label::after,
  .kicker::after,
  .hero .kicker::after,
  .contact-hero .section-label::after,
  .service-section .section-label::after {
    background: rgba(32, 33, 36, 0.58) !important;
  }

  .site-header::after {
    background: #202124 !important;
    opacity: 0.72 !important;
  }

  .nav a::before,
  .nav a::after {
    background: #202124 !important;
    opacity: 0.42 !important;
  }

  .performance-metrics .metric::after {
    background: #202124 !important;
    opacity: 0.07 !important;
  }
}

/* Mobile service readability fix: prevent descriptions from being squeezed */
@media (max-width: 900px) {
  .service-section .service-dice-net .service-card,
  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    row-gap: 4px !important;
    padding: 24px 0 22px !important;
  }

  .service-section .service-dice-net .service-card::after {
    display: none !important;
  }

  .service-section .service-dice-net .icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 44px !important;
  }

  .service-section .service-dice-net .icon em {
    width: 34px !important;
    height: 34px !important;
    font-size: 11px !important;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: clamp(29px, 7.8vw, 36px) !important;
    line-height: 1.02 !important;
    overflow-wrap: anywhere !important;
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(1) p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(4) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }
}

/* Mobile drawer text lock: keep labels vertically centered on Safari/iOS */
@media (max-width: 900px) {
  .site-header,
  .site-header.is-menu-open {
    overflow: visible !important;
  }

  .nav a,
  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    position: relative !important;
    display: block !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 44px 0 20px !important;
    line-height: 56px !important;
    white-space: nowrap !important;
  }

  .nav a[href="#contact"],
  .nav a[href="index.html#contact"] {
    height: 44px !important;
    min-height: 44px !important;
    line-height: 44px !important;
  }

  .nav a::before {
    display: none !important;
  }

  .nav a::after {
    position: absolute !important;
    top: 50% !important;
    right: 20px !important;
    display: block !important;
    width: 7px !important;
    height: 7px !important;
    content: "" !important;
    transform: translateY(-50%) !important;
  }
}

/* Mobile first-view visual placement: center the architectural object above the CTA */
@media (max-width: 900px) {
  .tbb-top-image .hero-image-bg {
    inset: auto 0 98px 0 !important;
    width: 100% !important;
    height: min(290px, 36svh) !important;
    background:
      radial-gradient(circle at 67% 54%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.72) 100%),
      url("assets/top-bauhaus-bg-mono.png") 70% 50% / min(430px, 116vw) auto no-repeat !important;
  }

  main > .mobile-hero-cta {
    margin: -92px auto 42px !important;
  }
}

/* Mobile readability reset: remove transparency, prevent clipping, and compact dense sections */
@media (max-width: 900px) {
  body {
    --mobile-page: min(100% - 44px, 720px);
  }

  main {
    overflow: hidden !important;
    background: #fff !important;
  }

  .site-header {
    background: #fff !important;
  }

  .site-header.is-menu-open .nav {
    top: 92px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
    gap: 8px !important;
    max-height: calc(100dvh - 92px) !important;
    padding: 12px 30px 22px !important;
    border-top: 1px solid rgba(32, 33, 36, 0.08) !important;
    background: #fff !important;
    box-shadow: 0 24px 46px rgba(24, 31, 42, 0.08) !important;
  }

  .nav a,
  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    background: #fff !important;
    box-shadow: none !important;
  }

  .nav a[href="#contact"],
  .nav a[href="index.html#contact"],
  .nav a.nav-entry {
    background: #202124 !important;
  }

  .hero,
  .philosophy-section,
  .service-section,
  .performance.performance-youtube,
  .works-section,
  .company-section,
  .contact-section,
  .recruit-entry-banner,
  .recruit-page-main .recruit-section {
    width: var(--mobile-page) !important;
    max-width: var(--mobile-page) !important;
    margin-inline: auto !important;
  }

  .section-label {
    margin-bottom: 14px !important;
    font-size: 12px !important;
  }

  .hero h1,
  .philosophy-copy h2,
  .service-section .section-intro h2,
  .performance-copy h2,
  .company-section h2,
  .recruit-page-main .recruit-hero h1,
  .recruit-jobs-head h3 {
    max-width: 100% !important;
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }

  .philosophy-section {
    gap: 18px !important;
    padding: 46px 0 42px !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.1) !important;
  }

  .philosophy-dots {
    display: none !important;
  }

  .philosophy-copy p:not(.section-label) {
    margin: 0 0 16px !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .philosophy-copy p:not(.section-label):nth-of-type(n + 4) {
    display: none !important;
  }

  .service-section {
    padding: 44px 0 42px !important;
  }

  .service-section .section-intro {
    margin-bottom: 18px !important;
  }

  .service-section .section-intro p:not(.section-label) {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .service-section .service-grid.service-dice-net,
  .service-section .service-dice-net,
  .service-section .service-dice-net:not(.is-unfolded),
  .service-section .service-dice-net.is-unfolded {
    display: grid !important;
    grid-template-columns: 1fr !important;
    border-top: 1px solid rgba(32, 33, 36, 0.12) !important;
    overflow: visible !important;
  }

  .service-section .service-dice-net .service-card,
  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 4px 14px !important;
    min-height: 0 !important;
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.12) !important;
    background: #fff !important;
  }

  .service-section .service-dice-net .icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 34px !important;
  }

  .service-section .service-dice-net .icon em {
    width: 34px !important;
    height: 34px !important;
    font-size: 11px !important;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: clamp(25px, 7.2vw, 32px) !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(1) p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(4) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .performance.performance-youtube {
    padding: 48px 0 42px !important;
    background: #fff !important;
    overflow: visible !important;
  }

  .performance-copy p:not(.section-label) {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .performance-metrics {
    display: grid !important;
    grid-auto-flow: row !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .performance-metrics .metric,
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    min-width: 0 !important;
    min-height: 116px !important;
    padding: 32px 14px 16px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:last-child {
    grid-column: 1 / -1 !important;
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1 !important;
  }

  .performance-metrics .metric:nth-child(4) strong {
    font-size: clamp(34px, 9.2vw, 44px) !important;
  }

  .performance-metrics .metric small {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .recruit-page-main .recruit-section {
    padding-block: 42px !important;
  }

  .recruit-page-main .recruit-hero {
    gap: 22px !important;
    padding-bottom: 34px !important;
  }

  .recruit-page-main .recruit-hero h1 span {
    display: inline !important;
  }

  .recruit-actions {
    gap: 10px !important;
  }

  .recruit-actions .button {
    min-height: 52px !important;
  }

  .recruit-glass-stage {
    min-height: 170px !important;
    opacity: 0.5 !important;
  }

  .recruit-jobs {
    overflow: visible !important;
  }

  .job-row {
    grid-template-columns: 34px minmax(0, 1fr) 20px !important;
    gap: 10px !important;
    min-height: 74px !important;
    padding: 12px 0 !important;
  }

  .job-row span {
    font-size: 12px !important;
  }

  .job-row strong {
    font-size: clamp(20px, 5.7vw, 25px) !important;
    line-height: 1.2 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .job-row em {
    grid-column: 2 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }
}

/* Mobile readability reset v2: tighter editorial rhythm for phone-only views */
@media (max-width: 900px) {
  .philosophy-section {
    padding: 36px 0 34px !important;
  }

  .philosophy-copy h2,
  .service-section .section-intro h2,
  .performance-copy h2,
  .recruit-page-main .recruit-hero h1 {
    font-size: clamp(28px, 7.2vw, 34px) !important;
    line-height: 1.22 !important;
  }

  .philosophy-copy p:not(.section-label),
  .service-section .section-intro p:not(.section-label),
  .performance-copy p:not(.section-label),
  .recruit-page-main .recruit-hero p:not(.section-label) {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .service-section {
    padding: 34px 0 32px !important;
  }

  .service-section .section-intro {
    margin-bottom: 14px !important;
  }

  .service-section .service-dice-net .service-card,
  .service-section .service-dice-net .service-card:nth-child(1),
  .service-section .service-dice-net .service-card:nth-child(2),
  .service-section .service-dice-net .service-card:nth-child(3),
  .service-section .service-dice-net .service-card:nth-child(4),
  .service-section .service-dice-net .service-card:nth-child(5),
  .service-section .service-dice-net .service-card:nth-child(6) {
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 2px 12px !important;
    padding: 10px 0 !important;
  }

  .service-section .service-dice-net .icon,
  .service-section .service-dice-net .service-card .icon {
    width: 28px !important;
  }

  .service-section .service-dice-net .icon em {
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
  }

  .service-section .service-dice-net .service-card h3,
  .service-section .service-dice-net .service-card:nth-child(1) h3,
  .service-section .service-dice-net .service-card:nth-child(2) h3,
  .service-section .service-dice-net .service-card:nth-child(3) h3,
  .service-section .service-dice-net .service-card:nth-child(4) h3,
  .service-section .service-dice-net .service-card:nth-child(5) h3,
  .service-section .service-dice-net .service-card:nth-child(6) h3 {
    font-size: clamp(21px, 5.8vw, 27px) !important;
    line-height: 1.05 !important;
  }

  .service-section .service-dice-net .service-card p,
  .service-section .service-dice-net .service-card:nth-child(1) p,
  .service-section .service-dice-net .service-card:nth-child(2) p,
  .service-section .service-dice-net .service-card:nth-child(3) p,
  .service-section .service-dice-net .service-card:nth-child(4) p,
  .service-section .service-dice-net .service-card:nth-child(5) p,
  .service-section .service-dice-net .service-card:nth-child(6) p {
    font-size: 10.5px !important;
    line-height: 1.28 !important;
  }

  .performance.performance-youtube {
    padding: 36px 0 34px !important;
  }

  .performance-metrics {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .performance-metrics .metric,
  .performance-metrics .metric:nth-child(1),
  .performance-metrics .metric:nth-child(2),
  .performance-metrics .metric:nth-child(3),
  .performance-metrics .metric:nth-child(4),
  .performance-metrics .metric:nth-child(5),
  .performance-metrics .metric:last-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    min-height: 74px !important;
    padding: 14px 16px !important;
    overflow: hidden !important;
  }

  .performance-metrics .metric::before,
  .performance-metrics .metric::after {
    display: none !important;
  }

  .performance-metrics .metric strong,
  .performance-metrics .metric:nth-child(2) strong,
  .performance-metrics .metric:nth-child(4) strong {
    grid-column: 1 !important;
    margin: 0 !important;
    font-size: clamp(28px, 7.6vw, 36px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .performance-metrics .metric small {
    grid-column: 1 / -1 !important;
    margin-top: 6px !important;
    font-size: 11px !important;
  }

  .recruit-cards {
    gap: 0 !important;
    border-top: 1px solid rgba(32, 33, 36, 0.12) !important;
  }

  .recruit-card {
    min-height: 0 !important;
    padding: 18px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.12) !important;
    background: #fff !important;
  }

  .recruit-card-visual {
    display: none !important;
  }

  .recruit-card h3 {
    font-size: clamp(23px, 6vw, 28px) !important;
    line-height: 1.25 !important;
  }

  .recruit-card p {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  .job-row strong {
    font-size: clamp(18px, 5.1vw, 23px) !important;
  }
}

/* Mobile hero poster treatment: make the first impression feel designed, not generic */
@media (max-width: 900px) {
  .tbb-top-image .hero {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: calc(100svh - 92px) !important;
    margin: 0 !important;
    padding: 28px 22px 182px !important;
    overflow: hidden !important;
    background:
      linear-gradient(180deg, #fff 0%, #fff 48%, #202124 48%, #202124 100%) !important;
  }

  .tbb-top-image .hero::before {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
    display: block !important;
    height: min(330px, 39svh) !important;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 68px 68px,
      linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 68px 68px,
      #202124 !important;
    content: "" !important;
  }

  .tbb-top-image .hero::after {
    position: absolute !important;
    right: 22px !important;
    bottom: 106px !important;
    z-index: 2 !important;
    display: block !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.16em !important;
    line-height: 1 !important;
    content: "BRAND / MOVIE / WEB / SNS" !important;
  }

  .tbb-top-image .hero-copy {
    position: relative !important;
    z-index: 3 !important;
    width: min(100%, 520px) !important;
    margin: 0 auto !important;
  }

  .tbb-top-image .hero .kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 18px !important;
    padding: 6px 10px !important;
    border: 1px solid rgba(32, 33, 36, 0.18) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #202124 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tbb-top-image .hero .kicker::after {
    width: 34px !important;
    height: 1px !important;
    margin: 0 !important;
    background: #202124 !important;
    content: "" !important;
  }

  .tbb-top-image .hero h1 {
    max-width: 8.7em !important;
    margin: 0 !important;
    color: #202124 !important;
    font-size: clamp(34px, 9.4vw, 46px) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
  }

  .tbb-top-image .hero h1 span {
    display: inline !important;
  }

  .tbb-top-image .hero h1::after {
    display: block !important;
    width: 72px !important;
    height: 8px !important;
    margin: 18px 0 0 !important;
    border-radius: 999px !important;
    background: var(--creative-gradient) !important;
    content: "" !important;
  }

  .tbb-top-image .hero-image-bg {
    position: absolute !important;
    right: -72px !important;
    bottom: 72px !important;
    left: auto !important;
    z-index: 1 !important;
    width: min(610px, 150vw) !important;
    height: min(352px, 42svh) !important;
    background:
      url("assets/top-bauhaus-bg-mono.png") 67% 50% / min(630px, 154vw) auto no-repeat !important;
    filter: invert(1) grayscale(1) contrast(1.08) brightness(1.02) !important;
    mix-blend-mode: screen !important;
    opacity: 0.9 !important;
  }

  .tbb-top-image .hero-image-bg::before {
    display: none !important;
  }

  main > .mobile-hero-cta {
    width: calc(100% - 44px) !important;
    margin: -88px auto 46px !important;
    position: relative !important;
    z-index: 6 !important;
  }

  main > .mobile-hero-cta .button {
    min-height: 58px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 8px !important;
    background: #111 !important;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2) !important;
  }
}
