:root {
  --black: #05070b;
  --panel: #0d1118;
  --blue: #19a7ff;
  --silver: #b8c2cc;
  --white: #f6f8fb;
  --muted: #8a96a6;
  --line: rgba(255,255,255,.14);
  --glass: rgba(255,255,255,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: #03060b;
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  isolation: isolate;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}
body::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3,6,11,.9), rgba(3,6,11,.72) 45%, rgba(3,6,11,.94)),
    radial-gradient(circle at 84% 8%, rgba(25,167,255,.22), transparent 26%),
    radial-gradient(circle at 16% 74%, rgba(25,167,255,.12), transparent 32%),
    linear-gradient(rgba(25,167,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.06) 1px, transparent 1px),
    url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=760&q=72') center/cover;
  background-size: auto, auto, auto, 72px 72px, 72px 72px, cover;
  opacity: .52;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -.012), 0) scale(1.04);
  will-change: transform;
}
body::after {
  z-index: -1;
  background:
    repeating-radial-gradient(circle at 18% 32%, rgba(255,255,255,.045) 0 1px, transparent 1px 4px),
    linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.04) 44.2% 44.7%, transparent 45%),
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 22%, transparent 78%, rgba(25,167,255,.035));
  opacity: .24;
  mix-blend-mode: screen;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 18px;
  background: #020306;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader span {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loaded .loader { opacity: 0; visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0,0,0,.76), rgba(0,0,0,0));
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(5,7,11,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.25;
}
.brand-name {
  display: inline-block;
  max-width: min(54vw, 680px);
  font-size: clamp(12px, 1.28vw, 19px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-name-main,
.brand-name-sub {
  display: inline;
}
.brand-mark {
  flex: 0 0 auto;
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(25,167,255,.45);
  background: url("../img/pocket-dream-logo.png") center/cover no-repeat;
  box-shadow: 0 0 30px rgba(25,167,255,.28);
  color: transparent;
  text-indent: -9999px;
}
.global-nav { display: flex; flex: 0 0 auto; gap: clamp(10px, 1.35vw, 20px); font-size: 12px; text-transform: uppercase; color: var(--silver); }
.global-nav a { position: relative; transition: color .25s, text-shadow .25s; }
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width .25s, box-shadow .25s, height .25s;
}
.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--white);
  text-shadow: 0 0 16px rgba(25,167,255,.78);
}
.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  width: 100%;
  height: 2px;
  box-shadow: 0 0 10px rgba(25,167,255,.95), 0 0 22px rgba(25,167,255,.58);
}
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; color: white; }
.nav-toggle span { display: block; width: 20px; height: 1px; margin: 7px auto; background: white; }
.sp-copy { display: none; }
.pc-break { display: inline; }
.nowrap { white-space: nowrap; }
.sp-lines br { display: none; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 150px clamp(22px, 7vw, 110px) 90px; overflow: hidden; }
.hero-video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video {
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -.018), 0) scale(1.06);
  will-change: transform;
}
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.35) 52%, rgba(0,0,0,.72)), linear-gradient(0deg, #05070b 0%, transparent 34%); }
.hero-content { position: relative; max-width: 980px; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 11vw, 150px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-category {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-left: 3px solid var(--blue);
  background: linear-gradient(90deg, rgba(25,167,255,.18), rgba(255,255,255,.035));
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 0 32px rgba(25,167,255,.14);
}
.lead { max-width: 860px; color: #d7dde6; font-size: clamp(17px, 1.85vw, 23px); line-height: 1.75; }
.hero-service-line {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--silver);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 800;
}
.hero-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 22px;
  border: 1px solid rgba(25,167,255,.34);
  background: rgba(25,167,255,.28);
}
.hero-strengths span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  background: rgba(5,7,11,.72);
  color: var(--white);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 900;
  text-align: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 178px;
  min-height: 56px;
  padding: 13px 24px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--blue); color: #00111d; box-shadow: 0 0 32px rgba(25,167,255,.42); }
.btn-line { background: rgba(0,0,0,.48); border-color: rgba(25,167,255,.42); backdrop-filter: blur(10px); }
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #dce8f5;
}
.hero-assurance span {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 800;
}
.hero-assurance span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(25,167,255,.7);
}
.scroll-cue { position: absolute; z-index: 3; right: 36px; bottom: 32px; display: grid; justify-items: center; gap: 10px; color: var(--muted); font-size: 11px; letter-spacing: .18em; }
.scroll-cue span { width: 1px; height: 58px; background: linear-gradient(var(--blue), transparent); animation: scrollPulse 1.6s infinite; }
@keyframes scrollPulse { 50% { transform: translateY(10px); opacity: .45; } }

.section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(74px, 9vw, 130px) clamp(20px, 5vw, 76px);
}
.section::before,
.section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.section::before {
  inset: -14%;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(25,167,255,.12), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(255,255,255,.045), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 28% 72%, rgba(25,167,255,.035));
  opacity: .72;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -.006), 0);
  will-change: transform;
}
.section::after {
  inset: 0;
  z-index: -1;
  border-top: 1px solid rgba(25,167,255,.08);
  background:
    linear-gradient(90deg, transparent, rgba(25,167,255,.09), transparent) top left / 100% 1px no-repeat,
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 100% 1px, 96px 96px, 96px 96px;
  opacity: .32;
}
.section > * { position: relative; z-index: 1; }
.section-head { max-width: 980px; margin-bottom: 36px; }
.section-head h2, .about h2, .contact h2, .recruit-band h2 { font-size: clamp(34px, 5vw, 78px); line-height: 1.05; letter-spacing: 0; }
.reason-heading { white-space: nowrap; }
.reason-heading span { display: inline; }
.service .section-head { max-width: none; }
.company-movie-title {
  font-size: clamp(34px, 4.25vw, 70px);
}
.reason-strip {
  padding-top: clamp(52px, 7vw, 90px);
  padding-bottom: clamp(52px, 7vw, 96px);
  background:
    radial-gradient(circle at 18% 0, rgba(25,167,255,.2), transparent 32%),
    linear-gradient(180deg, #05070b, #070a10);
  border-top: 1px solid rgba(25,167,255,.22);
  border-bottom: 1px solid rgba(25,167,255,.16);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}
.reason-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(25,167,255,.28);
  background: linear-gradient(135deg, rgba(25,167,255,.13), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 60px rgba(25,167,255,.07);
  backdrop-filter: blur(14px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.reason-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(25,167,255,.34), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 36%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.reason-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25,167,255,.95), transparent);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.reason-card:hover {
  border-color: rgba(25,167,255,.62);
  background: linear-gradient(135deg, rgba(25,167,255,.18), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 24px 82px rgba(0,0,0,.42), 0 0 44px rgba(25,167,255,.18);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
}
.reason-card:hover::before { opacity: 1; }
.reason-card:hover::after { opacity: 1; transform: scaleX(1); }
.reason-card > * { position: relative; z-index: 1; }
.reason-card b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: var(--blue);
  color: #00111d;
  font-size: 22px;
  transform: translateZ(24px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason-card:hover b { transform: translateZ(38px) translateY(-2px); box-shadow: 0 0 26px rgba(25,167,255,.5); }
.reason-card h3 { font-size: 22px; }
.reason-card p { color: var(--silver); }
.service { background: radial-gradient(circle at 80% 10%, rgba(25,167,255,.16), transparent 34%), #070a10; }
.service::before {
  background:
    linear-gradient(120deg, rgba(5,7,11,.7), rgba(5,7,11,.18)),
    radial-gradient(circle at 82% 10%, rgba(25,167,255,.22), transparent 28%),
    linear-gradient(rgba(25,167,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.11) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 38%, rgba(25,167,255,.16) 38.2% 38.6%, transparent 39% 62%, rgba(255,255,255,.08) 62.2% 62.5%, transparent 63%);
  background-size: auto, auto, 42px 42px, 42px 42px, 320px 320px;
  opacity: .76;
}
.service::after {
  background:
    linear-gradient(90deg, transparent, rgba(25,167,255,.18), transparent) top left / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(25,167,255,.08) 118px 119px),
    repeating-linear-gradient(0deg, transparent 0 118px, rgba(25,167,255,.06) 118px 119px);
  opacity: .28;
}
.page-lead {
  max-width: 920px;
  color: #d7dde6;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
}
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid .service-card:nth-child(1) { --bg: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=82'); }
.service-grid .service-card:nth-child(2) { --bg: url('../img/services/service-fire-inspection.webp'); }
.service-grid .service-card:nth-child(3) { --bg: url('../img/services/service-aircon-inspection.webp'); }
.service-grid .service-card:nth-child(4) { --bg: url('../img/services/service-water-inspection.webp'); }
.service-grid .service-card:nth-child(5) { --bg: url('../img/services/service-electrical-inspection.webp'); }
.service-grid .service-card:nth-child(6) { --bg: url('../img/services/service-elevator-inspection.webp'); }
.service-grid .service-card:nth-child(7) { --bg: url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1200&q=82'); }
.service-grid .service-card:nth-child(8) { --bg: url('../img/services/service-repair-maintenance.webp'); }
.service-pr-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-pr-grid .service-card { min-height: clamp(380px, 34vw, 560px); }
.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background-color: #05080d;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.16) 44%, rgba(0,0,0,.76) 100%),
    radial-gradient(circle at 20% 68%, rgba(25,167,255,.20), transparent 42%),
    var(--bg, linear-gradient(180deg, rgba(2,6,10,.98), rgba(2,6,10,.88)));
  background-position: center, center, center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 70px rgba(25,167,255,.07);
}
.service-pr-card {
  width: 100%;
  border-radius: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  appearance: none;
}
.service-pr-card::before {
  content: "MOVIE";
}
.service-pr-card::after {
  z-index: 1;
}
.service-pr-card .service-pr-media,
.service-pr-card .service-pr-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .72;
  filter: saturate(.88) contrast(1.06) brightness(.72);
  transform: scale(1.04);
  transition: opacity .35s ease, filter .35s ease, transform .55s ease;
}
.service-pr-card:hover .service-pr-media,
.service-pr-card.is-playing .service-pr-media,
.service-pr-card:hover .service-pr-video,
.service-pr-card.is-playing .service-pr-video {
  opacity: .98;
  filter: saturate(1.05) contrast(1.08) brightness(.82);
  animation: prMediaDrift 4.8s ease-in-out infinite alternate;
}
.service-pr-card .service-pr-media { display: block; }
.service-pr-card .service-pr-media[hidden],
.service-pr-card .service-pr-video[hidden] { display: none; }
@keyframes prMediaDrift {
  from { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
  to { transform: scale(1.14) translate3d(1.5%, 1%, 0); }
}
.service-card.service-pr-card i {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(188,229,255,.62);
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255,255,255,.26), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 50% 50%, rgba(25,167,255,.42), rgba(25,167,255,.18) 55%, rgba(3,11,18,.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -12px 22px rgba(0,0,0,.24),
    0 0 0 7px rgba(25,167,255,.1),
    0 0 34px rgba(25,167,255,.5),
    0 18px 44px rgba(0,0,0,.36);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.service-card::before,
.work-item::before,
.works-hero-bg::after,
.insta-grid a::before,
.reel-card::before,
.news-card::before,
.news-detail-hero::after,
.about-visual::before,
.interview-card::before {
  content: none;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(5,7,11,.68);
  color: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
  backdrop-filter: blur(8px);
}
.service-card.service-pr-card::before {
  content: "MOVIE";
  border-color: rgba(25,167,255,.65);
  background: rgba(25,167,255,.18);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -28% -20%;
  height: 48%;
  background: radial-gradient(ellipse at center, rgba(25,167,255,.34), transparent 68%);
  opacity: .36;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 22px 72px rgba(0,0,0,.42), 0 0 46px rgba(25,167,255,.16); }
.service-card:hover::after { opacity: .68; transform: translateY(-10px); }
.service-card > * { position: relative; z-index: 2; }
.service-card > span { position: absolute; top: 20px; left: 22px; color: var(--silver); }
.service-card i { font-style: normal; font-size: 42px; color: var(--blue); }
.service-card i.service-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: transparent;
  font-size: 0;
  border: 1px solid rgba(25,167,255,.42);
  border-radius: 18px;
  background-color: rgba(3,11,18,.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 58px 58px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 0 0 1px rgba(255,255,255,.06),
    0 18px 42px rgba(0,0,0,.32),
    0 0 28px rgba(25,167,255,.24);
  filter: drop-shadow(0 0 14px rgba(25,167,255,.35));
  transition: transform .28s ease, filter .28s ease, border-color .28s ease, box-shadow .28s ease;
}
@media (min-width: 981px) {
  .before-contact-title {
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
  .company-detail h2 > .pc-copy {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }
  .service-grid:not(.service-pr-grid) .service-card > i.service-icon {
    position: absolute;
    left: 24px;
    bottom: 210px;
  }
  .service-grid:not(.service-pr-grid) .service-card h3 {
    min-height: 66px;
    line-height: 1.35;
  }
  .footer-contact .contact-panel > .page-lead {
    max-width: none;
    white-space: nowrap;
  }
}
.service-card:hover i.service-icon {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(25,167,255,.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 0 1px rgba(255,255,255,.08),
    0 22px 52px rgba(0,0,0,.38),
    0 0 44px rgba(25,167,255,.42);
  filter: drop-shadow(0 0 24px rgba(25,167,255,.72));
}
.icon-building { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 54h48M12 54V31l16-8 16 8v23M28 54V12h20v42M20 39h3M20 47h3M36 22h4M36 32h4M36 42h4'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-detector { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 26c0-8 6-14 14-14s14 6 14 14'/%3E%3Cpath d='M14 26h36v8H14zM24 34v6M40 34v6M30 42l-4 8h6l-3 7M38 42l-4 8h6l-3 7'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-aircon { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17h44v18H10zM12 29h40M23 42c-3 2-4 5-2 8M32 42c-3 2-4 5-2 8M41 42c-3 2-4 5-2 8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-faucet { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='5.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M26 25h30M41 14v11M34 14h14'/%3E%3Cpath d='M22 34h31c8 0 13 5 13 13v6H53v-5c0-3-2-5-5-5H22z'/%3E%3Cpath d='M24 44v14M34 44v14'/%3E%3Cpath d='M61 62c0 4-6 4-6 0 0-3 3-7 3-7s3 4 3 7z'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-bulb { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 27a12 12 0 1 1 24 0c0 6-5 9-7 14H27c-2-5-7-8-7-14zM27 47h10M28 54h8M29 59h6'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-elevator { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='5.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 27h44v42H18zM40 27v42M27 37h8M45 37h8M27 49h8M45 49h8'/%3E%3Cpath d='M30 18V8M23 15l7-7 7 7M50 8v10M43 11l7 7 7-7'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-cleaning { background-size: 64px 64px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M54 10 32 48'/%3E%3Cpath d='M22 45h28l7 17H15z'/%3E%3Cpath d='M22 63v7M31 63v7M40 63v7M49 63v7'/%3E%3Cpath d='M60 15h8M64 11v8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-wrench { background-size: 64px 64px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='6.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M54 10c-8 1-14 7-15 15-.5 4 .5 8 3 11L18 60a8 8 0 0 0 11 11l24-24c4 2 9 3 14 1 6-2 10-7 12-13l-14 4-9-9 4-14c-2-4-4-6-6-6z'/%3E%3Cpath d='M24 65h.1'/%3E%3C/g%3E%3C/svg%3E"); }
.service-card.service-pr-card i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  flex: none;
  margin: 0;
  font-size: 0;
  color: transparent;
  transform: translate(-50%, -50%);
}
.service-pr-card i::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(25,167,255,.22);
  opacity: .72;
  transition: transform .3s ease, opacity .3s ease;
}
.service-pr-card i::before {
  content: "";
  width: 28px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  background: #19a7ff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-33.333%, -50%);
  filter:
    drop-shadow(0 0 10px rgba(25,167,255,.85))
    drop-shadow(0 0 22px rgba(25,167,255,.42));
}
.service-pr-card:hover i,
.service-pr-card.is-playing i {
  transform: translate(-50%, -54%) scale(1.06);
  border-color: rgba(255,255,255,.82);
  background:
    linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 50% 50%, rgba(25,167,255,.64), rgba(25,167,255,.24) 56%, rgba(3,11,18,.76) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.42),
    inset 0 -12px 22px rgba(0,0,0,.24),
    0 0 0 10px rgba(25,167,255,.14),
    0 0 56px rgba(25,167,255,.72),
    0 24px 58px rgba(0,0,0,.44);
}
.service-pr-card:hover i::after,
.service-pr-card.is-playing i::after {
  opacity: 1;
  transform: scale(1.08);
}
.service-card h3 { margin: 10px 0 8px; font-size: 24px; }
.service-card p { color: #d8dee7; }
.home-service .text-link { margin-top: 24px; }
.service-detail-panel,
.company-detail {
  margin-top: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(25,167,255,.2);
  background: linear-gradient(135deg, rgba(25,167,255,.1), rgba(255,255,255,.025));
}
.service-detail-panel { padding: clamp(24px, 5vw, 54px); }
.service-detail-panel h2 { font-size: clamp(32px, 4.8vw, 70px); line-height: 1.05; }
.service-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(25,167,255,.28);
}
.service-flow li {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  background: rgba(5,7,11,.78);
}
.service-flow b { color: var(--blue); font-size: 13px; letter-spacing: .16em; }
.service-flow strong { color: var(--white); font-size: 20px; }
.service-flow span { color: var(--silver); }

.section-head.compact {
  max-width: 1040px;
  margin-bottom: 28px;
}
.section-head.compact h2 {
  font-size: clamp(34px, 5vw, 72px);
}
.section-head.compact h2.service-plan-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(40px, 4.2vw, 68px);
}
.section-head.report-heading {
  max-width: none;
}
.section-head.report-heading h2 {
  white-space: nowrap;
  font-size: clamp(42px, 4.7vw, 70px);
}
.section-inset {
  margin-top: clamp(44px, 7vw, 96px);
}
.page-lead {
  max-width: 920px;
  margin: -14px 0 34px;
  color: #d7dee8;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.9;
}
.page-feature-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(24px, 4vw, 58px);
  margin: clamp(34px, 5vw, 68px) 0;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(25,167,255,.26);
  background:
    linear-gradient(135deg, rgba(25,167,255,.15), rgba(255,255,255,.035)),
    radial-gradient(circle at 100% 0, rgba(25,167,255,.25), transparent 34%),
    rgba(4,10,17,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 26px 90px rgba(0,0,0,.3),
    0 0 58px rgba(25,167,255,.08);
  backdrop-filter: blur(14px);
}
.page-feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(25,167,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 45%, rgba(255,255,255,.07) 45.15% 45.55%, transparent 45.8%);
  background-size: 54px 54px, 54px 54px, auto;
  opacity: .58;
  pointer-events: none;
}
.page-feature-band > * {
  position: relative;
  z-index: 1;
}
.page-feature-band h2 {
  margin: 12px 0 18px;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.02;
}
.page-feature-band p {
  color: var(--silver);
  font-weight: 800;
  line-height: 1.9;
}
.feature-metrics {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-metrics li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(3,10,17,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.feature-metrics span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.feature-metrics strong {
  color: var(--white);
  font-size: 22px;
}
.feature-metrics em {
  color: var(--silver);
  font-style: normal;
  font-weight: 800;
}
.content-card-grid {
  display: grid;
  gap: 16px;
}
.content-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.content-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(25,167,255,.24);
  background:
    linear-gradient(135deg, rgba(25,167,255,.12), rgba(255,255,255,.035)),
    rgba(5,10,17,.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 20px 68px rgba(0,0,0,.22),
    0 0 42px rgba(25,167,255,.045);
  backdrop-filter: blur(14px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.content-card::before {
  content: "";
  position: absolute;
  inset: auto -22% -38%;
  height: 62%;
  background: radial-gradient(circle, rgba(25,167,255,.24), transparent 64%);
  opacity: .34;
  pointer-events: none;
}
.content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25,167,255,.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 24px 78px rgba(0,0,0,.34),
    0 0 58px rgba(25,167,255,.13);
}
.content-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.content-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.22;
}
.content-card p {
  margin: 0;
  color: var(--silver);
  font-weight: 800;
  line-height: 1.8;
}
.report-layout,
.split-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: stretch;
}
.report-visual,
.split-image {
  min-height: 430px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72)),
    var(--bg) center/cover;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 24px 76px rgba(0,0,0,.28);
  filter: saturate(.95) contrast(1.08);
}
.report-list {
  display: grid;
  gap: 14px;
}
.report-list article {
  padding: 24px;
  border: 1px solid rgba(25,167,255,.22);
  background:
    linear-gradient(135deg, rgba(25,167,255,.1), rgba(255,255,255,.035)),
    rgba(5,10,17,.74);
}
.report-list b {
  display: block;
  color: var(--white);
  font-size: 23px;
  line-height: 1.35;
}
.report-list p {
  margin: 10px 0 0;
  color: var(--silver);
  font-weight: 800;
  line-height: 1.8;
}
.split-copy {
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid rgba(25,167,255,.24);
  background:
    linear-gradient(135deg, rgba(25,167,255,.12), rgba(255,255,255,.035)),
    rgba(5,10,17,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.split-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.04;
}
.split-copy p {
  color: var(--silver);
  font-weight: 800;
  line-height: 1.9;
}
.spec-list {
  display: grid;
  margin: 24px 0 0;
  border: 1px solid rgba(25,167,255,.2);
}
.spec-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.spec-list div:first-child { border-top: 0; }
.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 14px 16px;
}
.spec-list dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.spec-list dd {
  color: var(--white);
  font-weight: 800;
}
.news-intro-grid,
.faq-intro-grid {
  margin: 30px 0 36px;
}
.contact-guide-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(25,167,255,.16), transparent 30%),
    linear-gradient(180deg, #05070b, #07101a);
}
.compact-split {
  margin-top: clamp(30px, 5vw, 70px);
}

.about { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 58px); align-items: center; overflow: hidden; }
.about::before,
.company-page::before {
  background:
    linear-gradient(90deg, rgba(5,7,11,.68), rgba(5,7,11,.22) 56%, rgba(5,7,11,.78)),
    radial-gradient(circle at 74% 18%, rgba(255,255,255,.12), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(25,167,255,.18), transparent 34%),
    url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=760&q=72') center/cover;
  opacity: .5;
}
.about::after,
.company-page::after {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.07) 42.15% 42.7%, transparent 43%),
    linear-gradient(90deg, transparent, rgba(25,167,255,.08), transparent);
  opacity: .35;
}
.blueprint { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(25,167,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(25,167,255,.24) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, black, transparent); }
.about > * { position: relative; }
.about-text p { color: #d3d9e2; }
.company-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}
.company-list div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 48px rgba(25,167,255,.055);
  backdrop-filter: blur(12px);
}
.company-list span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.company-list strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.5;
}
.business-overview {
  border: 1px solid rgba(25,167,255,.28);
  background: linear-gradient(135deg, rgba(25,167,255,.1), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 70px rgba(25,167,255,.06);
  backdrop-filter: blur(14px);
}
.business-overview h3 {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(25,167,255,.22);
  color: var(--white);
  font-size: 20px;
}
.business-overview dl {
  margin: 0;
}
.business-overview dl div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.business-overview dl div:last-child { border-bottom: 0; }
.business-overview dt,
.business-overview dd {
  margin: 0;
  padding: 13px 16px;
}
.business-overview dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.business-overview dd {
  color: #e5ebf3;
  font-weight: 800;
}
.business-overview dd a { color: inherit; }
.business-overview.compact { margin: 26px 0; }
.company-overview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: 1px;
  margin-top: clamp(28px, 5vw, 60px);
  background: rgba(25,167,255,.28);
  padding: 1px;
}
.company-overview > div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(5,7,11,.86);
}
.company-overview h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 72px);
}
.company-overview dl { background: rgba(5,7,11,.82); }
.about-visual { position: relative; overflow: hidden; }
.about-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(1.05) contrast(1.1); }
.company-page {
  position: relative;
  display: block;
  overflow: hidden;
  background: #05070b;
}
.company-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: 130px clamp(22px, 7vw, 110px) 64px;
  isolation: isolate;
  overflow: hidden;
}
.company-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2,4,7,.9), rgba(2,4,7,.44) 45%, rgba(2,4,7,.75)),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.88)),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1800&q=78') center/cover;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * .04), 0) scale(1.05);
  filter: saturate(.9) contrast(1.08);
}
.company-hero::before,
.company-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.company-hero::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 22%, rgba(25,167,255,.22), transparent 28%),
    linear-gradient(rgba(25,167,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.045) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
  opacity: .5;
}
.company-hero::after {
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, #05070b);
}
.company-hero-content {
  max-width: 980px;
}
.company-hero-content h1 {
  margin: 14px 0 24px;
  font-size: clamp(54px, 7.8vw, 118px);
  line-height: .98;
  letter-spacing: 0;
}
.company-hero-content p:not(.eyebrow) {
  max-width: 880px;
  color: #d6dde7;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.9;
}
.company-overview-section {
  padding-top: clamp(28px, 4vw, 80px);
  padding-bottom: clamp(42px, 6vw, 80px);
}
.company-detail-section {
  padding-top: 0;
}
.company-page .company-detail {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}
.company-page .company-detail article {
  min-height: 190px;
}
.company-page .company-overview {
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  margin-top: 0;
}
.company-detail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
}
.company-detail article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(5,7,11,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.company-detail span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.company-detail h2 { margin-top: 14px; font-size: clamp(24px, 3vw, 38px); }
.company-detail p { color: var(--silver); }
.text-link { display: inline-flex; color: var(--blue); font-weight: 800; border-bottom: 1px solid currentColor; }
.works > .text-link {
  display: flex;
  width: fit-content;
  margin-top: clamp(28px, 3.4vw, 46px);
}

.filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter button { min-height: 42px; padding: 8px 18px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--white); cursor: pointer; }
.filter button.active { background: var(--white); color: var(--black); }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-item { position: relative; aspect-ratio: 1 / 1; border: 1px solid rgba(255,255,255,.1); background: #060b12; cursor: pointer; display: grid; align-content: end; justify-items: start; padding: 22px; color: white; transition: transform .3s, opacity .25s, box-shadow .3s; box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 62px rgba(25,167,255,.07); }
.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0,0,0,.84)),
    radial-gradient(circle at 50% 100%, rgba(25,167,255,.28), transparent 54%);
  opacity: .42;
  pointer-events: none;
}
.work-split {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform .42s ease, filter .42s ease;
}
.work-split-before {
  clip-path: polygon(0 0, 66% 0, 42% 100%, 0 100%);
  filter: saturate(.85) brightness(.72);
}
.work-split-after {
  clip-path: polygon(66% 0, 100% 0, 100% 100%, 42% 100%);
  filter: saturate(1.08) brightness(.86);
}
.work-item.work-item-real-fire::before { content: none; }
.work-item-real-fire .work-split-before {
  right: 40%;
  background-position: 50% 50%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.work-item-real-fire .work-split-after {
  left: 40%;
  background-position: 45% 50%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.work-item.work-item-real-water::before { content: none; }
.work-item-real-water .work-split-before {
  right: 40%;
  background-position: 70% 50%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.work-item-real-water .work-split-after {
  left: 40%;
  background-position: 50% 50%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.work-item.work-item-real-air::before { content: none; }
.work-item-real-air .work-split-before {
  right: 40%;
  background-position: 50% 50%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.work-item-real-air .work-split-after {
  left: 40%;
  background-position: 50% 50%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.work-item.work-item-real-entrance::before { content: none; }
.work-item-real-entrance .work-split-before {
  right: 40%;
  background-position: 58% 52%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.work-item-real-entrance .work-split-after {
  left: 40%;
  background-position: 42% 50%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.work-item.work-item-real-water-trouble {
  --water-split-top: 60%;
  --water-split-bottom: 42%;
  overflow: hidden;
}
.work-item.work-item-real-water-trouble::before { content: none; }
.work-item-real-water-trouble .work-split-before {
  inset: 0;
  background-color: #02060b;
  background-size: cover;
  background-position: 50% 48%;
  clip-path: polygon(0 0, var(--water-split-top) 0, var(--water-split-bottom) 100%, 0 100%);
}
.work-item-real-water-trouble .work-split-after {
  inset: 0;
  background-color: #02060b;
  background-size: cover;
  background-position: 50% 48%;
  clip-path: polygon(var(--water-split-top) 0, 100% 0, 100% 100%, var(--water-split-bottom) 100%);
}
.work-item-real-water-trouble .work-split-slash {
  inset: 0;
  width: auto;
  height: auto;
  background: rgba(25,167,255,.92);
  box-shadow: 0 0 20px rgba(25,167,255,.42);
  transform: none;
  clip-path: polygon(
    calc(var(--water-split-top) - 1px) 0,
    calc(var(--water-split-top) + 1px) 0,
    calc(var(--water-split-bottom) + 1px) 100%,
    calc(var(--water-split-bottom) - 1px) 100%
  );
}
.work-item.work-item-real-lighting {
  --lighting-split-top: 60%;
  --lighting-split-bottom: 42%;
  overflow: hidden;
}
.work-item.work-item-real-lighting::before { content: none; }
.work-item-real-lighting .work-split-before {
  inset: 0;
  background-color: #02060b;
  background-size: cover;
  background-position: 42% 50%;
  clip-path: polygon(0 0, var(--lighting-split-top) 0, var(--lighting-split-bottom) 100%, 0 100%);
}
.work-item-real-lighting .work-split-after {
  inset: 0;
  background-color: #02060b;
  background-size: cover;
  background-position: 58% 50%;
  clip-path: polygon(var(--lighting-split-top) 0, 100% 0, 100% 100%, var(--lighting-split-bottom) 100%);
}
.work-item-real-lighting .work-split-slash {
  inset: 0;
  width: auto;
  height: auto;
  background: rgba(25,167,255,.92);
  box-shadow: 0 0 20px rgba(25,167,255,.42);
  transform: none;
  clip-path: polygon(
    calc(var(--lighting-split-top) - 1px) 0,
    calc(var(--lighting-split-top) + 1px) 0,
    calc(var(--lighting-split-bottom) + 1px) 100%,
    calc(var(--lighting-split-bottom) - 1px) 100%
  );
}
.work-split-slash {
  position: absolute;
  left: 54%;
  top: -8%;
  z-index: 1;
  width: 2px;
  height: 116%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.72), rgba(25,167,255,.86), transparent);
  box-shadow: 0 0 28px rgba(25,167,255,.38);
  transform: rotate(14deg);
}
.work-split-label {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(3,7,12,.62);
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  backdrop-filter: blur(8px);
}
.work-split-label-before { left: 16px; top: 16px; }
.work-split-label-after { right: 16px; top: 16px; color: var(--blue); border-color: rgba(25,167,255,.48); }
@media (hover: hover) and (pointer: fine) {
  .work-item:hover .work-split-before,
  .work-item:hover .work-split-after { transform: scale(1.05); }
  .work-item:hover { box-shadow: 0 20px 70px rgba(0,0,0,.45), 0 0 42px rgba(25,167,255,.14); }
}
.work-item.hide { display: none; }
.work-item > span:not(.work-split):not(.work-split-slash) { padding: 6px 12px; background: rgba(0,0,0,.55); border: 1px solid var(--line); }
.work-item > span:not(.work-split):not(.work-split-slash),
.work-item strong,
.work-card-summary { position: relative; z-index: 2; }
.work-item strong {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  text-align: left;
}
.work-card-summary {
  max-width: 92%;
  margin: 10px 0 0;
  color: rgba(236,241,247,.86);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 800;
  line-height: 1.75;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0,0,0,.82);
}
.works-page .work-item {
  display: grid;
  align-content: end;
  justify-items: start;
}
.works-page .work-item.hide {
  display: none;
}
.works-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  padding: 150px clamp(22px, 7vw, 110px) 80px;
  overflow: hidden;
}
.works-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.34), rgba(0,0,0,.72)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=72') center/cover;
}
.works-hero-content {
  position: relative;
  max-width: 980px;
}
.works-hero h1 {
  font-size: clamp(64px, 12vw, 168px);
}
.works-kpi { margin-top: 28px; }
.works-page { background: radial-gradient(circle at 80% 0, rgba(25,167,255,.18), transparent 32%), #05070b; }
.works,
.works-page,
.works-process {
  background-color: #04070c;
}
.works::before,
.works-page::before,
.works-process::before {
  background:
    linear-gradient(180deg, rgba(5,7,11,.55), rgba(5,7,11,.88)),
    radial-gradient(circle at 76% 10%, rgba(25,167,255,.2), transparent 28%),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=760&q=72') center/cover;
  opacity: .48;
}
.works::after,
.works-page::after,
.works-process::after {
  background:
    linear-gradient(90deg, transparent, rgba(25,167,255,.16), transparent) top left / 100% 1px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 42%);
  opacity: .42;
}
.works-page-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.works-process { background: linear-gradient(180deg, #070a10, #05070b); }
.work-report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.insta-grid, .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.instagram-showcase { background: #05080d; }
.instagram-showcase::before {
  background:
    linear-gradient(180deg, rgba(5,8,13,.88), rgba(5,8,13,.5), rgba(5,8,13,.92)),
    radial-gradient(circle at 88% 28%, rgba(25,167,255,.18), transparent 28%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=760&q=72') center/cover;
  opacity: .42;
}
.instagram-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(28px, 4vw, 54px);
}
.instagram-head h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(54px, 7.8vw, 126px);
  line-height: .95;
  letter-spacing: 0;
}
.instagram-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(25,167,255,.55);
  background: rgba(25,167,255,.12);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(25,167,255,.16);
}
.instagram-follow:hover { background: var(--blue); color: #00111d; }
.insta-feature-grid { gap: 24px; }
.insta-grid a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 340px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
}
.insta-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72));
  opacity: .78;
}
.insta-grid img { width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .35s, filter .35s; }
.insta-grid span { position: absolute; z-index: 2; inset: auto 18px 18px; opacity: 0; transition: opacity .25s; font-weight: 800; }
.insta-grid a:hover img { transform: scale(1.07); filter: brightness(.62); }
.insta-grid a:hover span { opacity: 1; }
.reels-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: clamp(28px, 5vw, 58px);
}
.reels-title {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(25,167,255,.28);
  background:
    linear-gradient(135deg, rgba(25,167,255,.16), rgba(255,255,255,.035)),
    radial-gradient(circle at 0 0, rgba(25,167,255,.18), transparent 42%);
}
.reels-title h3 {
  margin: 0;
  max-width: 280px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}
.reels-title span {
  max-width: 260px;
  color: var(--silver);
  font-weight: 800;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.reel-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #111;
  color: var(--white);
}
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82));
}
.reel-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform .35s, filter .35s;
}
.reel-card:hover img { transform: scale(1.05); filter: brightness(.72); }
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(5,7,11,.58);
  color: var(--white);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}
.reel-card strong,
.reel-card small {
  position: absolute;
  z-index: 2;
  left: 18px;
}
.reel-card strong {
  bottom: 46px;
  font-size: 20px;
}
.reel-card small {
  bottom: 20px;
  color: #d9e1ea;
  font-weight: 900;
}
.instagram-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 16px;
  margin-top: 24px;
}
.instagram-panel,
.instagram-profile {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  backdrop-filter: blur(12px);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 58px rgba(25,167,255,.055);
}
.instagram-panel p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}
.instagram-panel h3 { margin: 0 0 10px; font-size: 20px; }
.instagram-panel span,
.instagram-profile span { color: var(--silver); font-size: 14px; }
.instagram-profile {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}
.instagram-avatar {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  transition: border-color .25s ease, filter .25s ease;
}
.instagram-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.instagram-avatar:hover { border-color: rgba(255,255,255,.95); filter: brightness(1.08); }
.instagram-avatar:focus-visible,
.instagram-username:focus-visible,
.instagram-follow:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.instagram-username {
  display: inline-block;
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.instagram-profile span { display: block; }
.instagram-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: linear-gradient(135deg, #ff2d75, #7a4dff);
  color: var(--white);
  font-weight: 900;
}
.instagram-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--silver);
  font-weight: 700;
  line-height: 1.8;
}
.instagram-manual-feed {
  display: grid;
  gap: 20px;
  margin-top: clamp(28px, 5vw, 52px);
}
.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: 24px;
}
.instagram-feed-card {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
}
.instagram-reel-card { min-height: 0; }
.instagram-reel-card img { aspect-ratio: 9 / 16; }
.instagram-reel-card strong {
  right: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.instagram-update-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(25,167,255,.4);
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(4,8,14,.18), rgba(4,8,14,.94)),
    radial-gradient(circle at 78% 18%, rgba(25,167,255,.34), transparent 32%),
    linear-gradient(145deg, #06111d, #03060b 64%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.instagram-update-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(25,167,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, transparent 45%, rgba(25,167,255,.2) 45.2%, transparent 45.7%);
  background-size: 36px 36px, 36px 36px, auto;
  opacity: .52;
}
.instagram-update-card > * { position: relative; z-index: 1; }
.instagram-update-label {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}
.instagram-update-card strong {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.35;
}
.instagram-update-card p {
  margin: 18px 0 32px;
  color: var(--silver);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.instagram-update-card small {
  border-top: 1px solid rgba(25,167,255,.35);
  padding-top: 16px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .06em;
}
.instagram-update-card:hover {
  border-color: rgba(25,167,255,.8);
  background:
    linear-gradient(180deg, rgba(4,8,14,.08), rgba(4,8,14,.9)),
    radial-gradient(circle at 78% 18%, rgba(25,167,255,.48), transparent 34%),
    linear-gradient(145deg, #071726, #03060b 64%);
}
.instagram-profile-integrated { padding: 22px; }
.instagram-profile-integrated .instagram-follow {
  min-width: 190px;
  min-height: 48px;
}
.api-note { color: var(--muted); margin-top: 18px; font-size: 13px; }

.news,
.news-detail {
  background:
    linear-gradient(180deg, rgba(5,7,11,.92), rgba(7,11,18,.84)),
    #05070b;
}
.news::before,
.news-detail::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(25,167,255,.16), transparent 27%),
    linear-gradient(180deg, transparent, rgba(25,167,255,.055)),
    linear-gradient(90deg, transparent 0 10%, rgba(25,167,255,.08) 10.1% 10.2%, transparent 10.3% 100%);
  opacity: .66;
}
.news::after,
.news-detail::after {
  background:
    linear-gradient(90deg, rgba(25,167,255,.9), transparent 34%) top left / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
  opacity: .32;
}
.news-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 60px rgba(25,167,255,.065); backdrop-filter: blur(12px); }
.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.news-card time, .news-card h3, .news-card p, .news-card > a { display: block; margin-inline: 20px; }
.news-card time { margin-top: 18px; color: var(--blue); font-size: 13px; }
.news-card p { color: var(--silver); }
.news-card > a {
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.news-card > a::after { content: " →"; }
.news .home-news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-detail {
  max-width: 1120px;
  margin-inline: auto;
  padding-top: 150px;
}
.news-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 76px);
}
.news-detail-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .98;
}
.news-detail-hero time {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .08em;
}
.news-detail-hero p { max-width: 720px; color: #d7dde6; font-size: clamp(16px, 1.7vw, 21px); }
.news-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: contrast(1.04) saturate(.92);
}
.news-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}
.news-article {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.news-article h2 {
  margin: 44px 0 14px;
  font-size: clamp(28px, 3.4vw, 46px);
}
.news-article h2:first-child { margin-top: 0; }
.news-article p,
.news-article li { color: var(--silver); }
.news-article ul { display: grid; gap: 10px; padding-left: 1.2em; }
.news-side-box {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(25,167,255,.28);
  background: linear-gradient(135deg, rgba(25,167,255,.12), rgba(255,255,255,.035));
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 60px rgba(25,167,255,.06);
  backdrop-filter: blur(14px);
}
.news-side-box h2 { font-size: 22px; }
.news-side-box p { color: var(--silver); }
.news-side-box .btn { width: 100%; margin-top: 14px; }
.news-back { margin-top: 42px; }

.faq { background: #080c13; }
.faq::before {
  background:
    radial-gradient(circle at 88% 20%, rgba(25,167,255,.16), transparent 24%),
    linear-gradient(rgba(25,167,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.07) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  opacity: .42;
}
.faq::after {
  background:
    linear-gradient(90deg, transparent, rgba(25,167,255,.1), transparent) top left / 100% 1px no-repeat,
    radial-gradient(circle at 18% 78%, rgba(255,255,255,.045), transparent 28%);
  opacity: .38;
}
.accordion { max-width: 980px; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
details[open] {
  background: linear-gradient(90deg, rgba(25,167,255,.08), transparent 58%);
  box-shadow: -18px 0 0 rgba(25,167,255,.08);
}
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-size: 20px; font-weight: 800; }
details p { color: var(--silver); margin: 12px 0 0; }
.faq-extra { display: none; }
.faq-expanded .faq-extra { display: block; }
.faq-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  margin-top: 28px;
  border: 1px solid rgba(25,167,255,.45);
  background: rgba(25,167,255,.12);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(25,167,255,.16);
}
.faq-more:hover { background: var(--blue); color: #00111d; }

.recruit-band { position: relative; min-height: 760px; display: grid; align-items: center; padding: clamp(74px, 9vw, 130px) clamp(20px, 7vw, 110px); overflow: hidden; }
.recruit-band video, .recruit-band .recruit-poster, .recruit-band::after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.recruit-band video, .recruit-band .recruit-poster {
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -.006), 0) scale(1.04);
  will-change: transform;
}
.recruit-band::after { content: ""; background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.22), rgba(0,0,0,.75)); }
.recruit-content { position: relative; z-index: 1; max-width: 760px; }
.recruit-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.recruit-list span { border: 1px solid var(--line); padding: 7px 13px; background: rgba(255,255,255,.08); }
.recruit-page-section { background: #05070b; border-top: 1px solid rgba(25,167,255,.12); }
.recruit-page-section::before {
  background:
    linear-gradient(180deg, rgba(5,7,11,.82), rgba(5,7,11,.54), rgba(5,7,11,.9)),
    radial-gradient(circle at 20% 12%, rgba(25,167,255,.2), transparent 30%),
    url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=760&q=72') center/cover;
  opacity: .36;
}
.recruit-page-section::after {
  background:
    linear-gradient(90deg, transparent, rgba(25,167,255,.12), transparent) top left / 100% 1px no-repeat,
    linear-gradient(120deg, rgba(255,255,255,.04), transparent 38%);
  opacity: .38;
}
.recruit-message-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
.recruit-message-grid > p { color: #d3d9e2; font-size: 18px; }
.recruit-message-card, .job-card, .scope-card, .benefit-card, .interview-card, .recruit-entry-inner {
  border: 1px solid rgba(25,167,255,.22);
  background: linear-gradient(135deg, rgba(25,167,255,.1), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 60px rgba(25,167,255,.06);
  backdrop-filter: blur(14px);
}
.recruit-message-card { display: grid; gap: 10px; padding: 24px; }
.recruit-message-card strong { color: var(--blue); letter-spacing: .12em; }
.recruit-message-card span { padding: 12px 14px; border: 1px solid var(--line); font-weight: 900; }
.job-grid, .work-scope-grid, .benefit-grid, .interview-grid { display: grid; gap: 16px; }
.job-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.job-card { padding: 24px; }
.job-card span { color: var(--blue); font-weight: 900; }
.job-card h3 { font-size: 24px; }
.job-card p, .scope-card p, .interview-card p { color: var(--silver); }
.job-card dl { margin: 18px 0 0; display: grid; gap: 8px; }
.job-card dt { color: var(--blue); font-weight: 900; }
.job-card dd { margin: 0; color: #dce4ee; }
.work-scope-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.scope-card { min-height: 190px; padding: 22px; }
.scope-card b { display: block; color: var(--white); font-size: 22px; margin-bottom: 10px; }
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefit-card { min-height: 92px; display: grid; place-items: center; padding: 18px; color: var(--white); font-weight: 900; }
.day-flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.day-flow li { display: grid; grid-template-columns: 110px 220px 1fr; gap: 18px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.day-flow li:last-child { border-bottom: 1px solid var(--line); }
.day-flow time { color: var(--blue); font-size: 26px; font-weight: 900; }
.day-flow strong { font-size: 20px; }
.day-flow p { margin: 0; color: var(--silver); }
.interview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.interview-card { position: relative; overflow: hidden; }
.interview-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: grayscale(.18) contrast(1.08); }
.interview-card h3, .interview-card p { margin-inline: 22px; }
.interview-card h3 { margin-top: 22px; }
.interview-card p { padding-bottom: 24px; }
.recruit-entry { background: radial-gradient(circle at 20% 0, rgba(25,167,255,.22), transparent 32%), #05070b; }
.recruit-entry-inner { padding: clamp(28px, 5vw, 56px); max-width: 980px; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; background: radial-gradient(circle at 20% 0, rgba(25,167,255,.18), transparent 34%), #05070b; }
.contact::before {
  background:
    linear-gradient(180deg, rgba(5,7,11,.76), rgba(5,7,11,.9)),
    radial-gradient(circle at 18% 12%, rgba(25,167,255,.22), transparent 28%),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=760&q=72') center/cover;
  opacity: .38;
}
.footer-contact {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  border-top: 1px solid rgba(25,167,255,.16);
}
.footer-contact .page-lead { margin-bottom: 22px; font-size: clamp(15px, 1.35vw, 18px); }
.contact-panel { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.065); padding: clamp(24px, 4vw, 48px); backdrop-filter: blur(18px); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 70px rgba(25,167,255,.07); }
.contact-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--silver); font-size: 13px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.38); color: white; padding: 13px 14px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(25,167,255,.16); }
.contact-side {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(25,167,255,.24);
  background:
    radial-gradient(circle at 100% 0, rgba(6,199,85,.16), transparent 34%),
    radial-gradient(circle at 0 12%, rgba(25,167,255,.2), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(3,8,14,.62);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 70px rgba(0,0,0,.26);
}
.contact-side::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(25,167,255,.14), transparent) top left / 100% 1px no-repeat,
    linear-gradient(rgba(25,167,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.035) 1px, transparent 1px);
  background-size: 100% 1px, 48px 48px, 48px 48px;
  opacity: .5;
}
.contact-side > * { position: relative; z-index: 1; }
.contact-info-card {
  margin: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(25,167,255,.28);
  background:
    linear-gradient(135deg, rgba(25,167,255,.11), rgba(255,255,255,.035)),
    rgba(3,8,14,.48);
  color: var(--silver);
  font-weight: 800;
  line-height: 1.75;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 42px rgba(0,0,0,.14);
}
.contact-info-card:nth-of-type(5),
.contact-info-card:nth-of-type(6) { grid-column: 1 / -1; min-height: 0; }
.contact-info-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.contact-info-card a,
.contact-info-card span {
  color: #d7dde6;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
}
.contact-service-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-service-list li {
  position: relative;
  padding-left: 14px;
  color: #d7dde6;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  line-height: 1.55;
}
.contact-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(25,167,255,.65);
}
.line-card {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 28px 30px;
  border: 1px solid rgba(6,199,85,.5);
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(135deg, rgba(6,199,85,.82), rgba(4,80,43,.64)),
    rgba(3,8,14,.58);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 20px 64px rgba(6,199,85,.16);
}
.line-card::after {
  content: "→";
  position: absolute;
  right: 26px;
  top: 50%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  font-weight: 900;
  background: rgba(255,255,255,.08);
}
.line-card strong { font-size: clamp(28px, 3vw, 42px); line-height: 1.05; }
.line-card span { color: rgba(255,255,255,.78); font-weight: 800; }
.contact-flow {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.contact-flow h2 { font-size: 24px; }
.contact-flow ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--silver);
}

.site-footer { position: relative; overflow: hidden; padding: 70px clamp(20px, 5vw, 76px) 28px; background: #020306; }
.footer-bg { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.7)), url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=760&q=72') center/cover; opacity: .55; }
.footer-inner { position: relative; display: grid; grid-template-columns: minmax(390px, 1.15fr) minmax(190px, .58fr) minmax(310px, .9fr) minmax(380px, 1fr); gap: clamp(26px, 3.2vw, 56px); align-items: start; }
.footer-brand-block { max-width: 520px; }
.footer-brand-block .brand > span:last-child {
  max-width: min(42vw, 430px);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.footer-brand-block .brand-mark {
  width: 92px;
  height: 92px;
}
.footer-brand-block p { margin: 14px 0 22px; color: #dbe2eb; font-weight: 800; }
.footer-brand-block strong {
  display: block;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
  color: var(--white);
  font-size: clamp(22px, 2.3vw, 38px);
  line-height: 1;
  letter-spacing: .03em;
}
.footer-brand-block > span {
  display: block;
  max-width: 440px;
  color: var(--silver);
  font-size: 14px;
}
.footer-mini-cta {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(25,167,255,.45);
  background: rgba(25,167,255,.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(25,167,255,.12);
}
.footer-inner nav {
  position: relative;
  display: grid;
  gap: 0;
  align-content: start;
  min-height: 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: var(--silver);
  box-shadow: none;
  backdrop-filter: none;
}
.footer-inner nav::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 78px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(25,167,255,0));
  box-shadow: 0 0 22px rgba(25,167,255,.42);
  opacity: .95;
}
.footer-inner nav:nth-of-type(3) {
  padding: 28px;
  border: 1px solid rgba(6,199,85,.28);
  background:
    linear-gradient(135deg, rgba(6,199,85,.14), rgba(255,255,255,.025) 48%, rgba(25,167,255,.045)),
    radial-gradient(circle at 88% 0, rgba(6,199,85,.34), transparent 44%),
    rgba(3,8,14,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 26px 72px rgba(0,0,0,.28), 0 0 58px rgba(6,199,85,.08);
  backdrop-filter: blur(16px);
}
.footer-inner nav:nth-of-type(3)::before {
  left: 28px;
  background: linear-gradient(90deg, #06c755, rgba(6,199,85,0));
  box-shadow: 0 0 26px rgba(6,199,85,.45);
}
.footer-inner h3 {
  margin-bottom: 16px;
  color: white;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.footer-inner nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 8px 26px 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #c7d0dc;
  font-size: 14px;
  font-weight: 850;
  transition: color .25s ease, transform .25s ease;
}
.footer-inner nav a::before {
  content: "";
  position: absolute;
  right: 3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  opacity: .38;
  transform: rotate(45deg);
  transition: opacity .25s ease, transform .25s ease;
}
.footer-inner nav:nth-of-type(3) a::before {
  background: transparent;
  box-shadow: none;
  color: #42e887;
}
.footer-inner nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-inner nav a:hover::before {
  opacity: .8;
  transform: translateX(3px) rotate(45deg);
}
.footer-inner nav:nth-of-type(2) a {
  min-height: 36px;
  font-size: 13px;
}
.footer-inner nav:nth-of-type(3) h3 {
  margin-bottom: 18px;
}
.footer-inner nav:nth-of-type(3) a {
  min-height: 44px;
  color: #e6f3eb;
  border-color: rgba(6,199,85,.16);
}
.footer-inner nav:nth-of-type(3) a:first-of-type {
  font-size: clamp(18px, 1.3vw, 24px);
  color: #fff;
  letter-spacing: .02em;
}
.footer-info {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #dce5ee;
  font-size: 13px;
  line-height: 1.65;
}
.footer-info b {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .18em;
}
.footer-inner nav:nth-of-type(3) .footer-info b { color: #42e887; }
.site-footer small { position: relative; display: block; margin-top: 50px; color: var(--muted); }
.fixed-line { position: fixed; right: 28px; bottom: 28px; z-index: 90; display: grid; place-items: center; width: 120px; height: 120px; border-radius: 50%; background: #06c755; color: white; font-size: 22px; font-weight: 900; box-shadow: 0 18px 58px rgba(6,199,85,.46); }

.work-modal {
  width: min(1180px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(25,167,255,.58);
  background:
    radial-gradient(circle at 14% 0%, rgba(25,167,255,.16), transparent 28%),
    linear-gradient(145deg, rgba(9,13,20,.98), rgba(2,3,6,.98));
  color: white;
  overflow: hidden;
  box-shadow:
    0 34px 120px rgba(0,0,0,.78),
    0 0 0 1px rgba(255,255,255,.06),
    0 0 64px rgba(25,167,255,.18);
}
.pr-video-modal { width: min(1280px, calc(100% - 28px)); padding: 0; border: 1px solid var(--line); background: #020306; color: white; overflow: hidden; }
.work-modal::backdrop { background: rgba(0,0,0,.75); backdrop-filter: blur(8px); }
.pr-video-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(10px); }
.modal-close { position: absolute; right: 12px; top: 12px; z-index: 8; width: 42px; height: 42px; border: 1px solid var(--line); background: rgba(0,0,0,.65); color: white; cursor: pointer; }
.modal-image { min-height: 330px; background-size: cover; background-position: center; }
.work-comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: clamp(340px, 36vw, 470px);
  background:
    linear-gradient(90deg, rgba(25,167,255,.22), rgba(255,255,255,.08), rgba(25,167,255,.22)),
    #020306;
  border-bottom: 1px solid rgba(25,167,255,.28);
  isolation: isolate;
}
.work-comparison::before { content: none; }
.work-comparison::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 50%;
  z-index: 5;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.72), rgba(25,167,255,.96), transparent);
  box-shadow: 0 0 34px rgba(25,167,255,.52);
  transform: rotate(8deg);
  pointer-events: none;
}
.work-compare-image {
  position: relative;
  min-height: clamp(340px, 36vw, 470px);
  margin: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(25,167,255,.14), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    #020306;
  overflow: hidden;
}
.work-compare-image:first-child {
  clip-path: polygon(0 0, 100% 0, calc(100% - 54px) 100%, 0 100%);
  margin-right: -28px;
}
.work-compare-image:last-child {
  clip-path: polygon(54px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -28px;
}
.work-compare-image div {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  filter: saturate(.95) contrast(1.04) brightness(.78);
}
.work-compare-image + .work-compare-image div {
  filter: saturate(1.12) contrast(1.08) brightness(.95);
}
.work-compare-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.44)),
    radial-gradient(circle at 50% 100%, rgba(25,167,255,.2), transparent 58%);
}
.work-compare-image span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  background: linear-gradient(135deg, rgba(4,9,15,.86), rgba(4,9,15,.58));
  border: 1px solid rgba(255,255,255,.42);
  color: white;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 14px 38px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.work-compare-image span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}
.work-compare-image + .work-compare-image span {
  left: auto;
  right: 18px;
  color: var(--blue);
  border-color: rgba(25,167,255,.55);
}
.work-compare-image + .work-compare-image span::before {
  content: "";
}
.pr-video-frame { background: #020306; line-height: 0; }
.pr-video-player,
.pr-image-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 56px);
  object-fit: cover;
}
.pr-video-modal.is-original-size { width: fit-content; max-width: calc(100% - 28px); }
.pr-video-modal.is-original-size .pr-video-frame { display: grid; place-items: center; }
.pr-video-modal.is-original-size .pr-video-player,
.pr-video-modal.is-original-size .pr-image-player {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 56px);
  aspect-ratio: auto;
  object-fit: contain;
}
.pr-video-player[hidden],
.pr-image-player[hidden] { display: none; }
.modal-body {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(90deg, rgba(25,167,255,.08), transparent 46%),
    linear-gradient(rgba(25,167,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,167,255,.035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}
.modal-body::before {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 46px);
  right: clamp(28px, 4vw, 46px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(25,167,255,.85), transparent);
}
.modal-body h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 52px);
}
.modal-body dl {
  display: grid;
  grid-template-columns: minmax(96px, .16fr) minmax(0, 1fr);
  gap: 1px;
  max-width: 920px;
  padding: 1px;
  background: rgba(25,167,255,.24);
}
.modal-body dt,
.modal-body dd {
  margin: 0;
  padding: 13px 16px;
  background: rgba(5,8,13,.78);
}
.modal-body dt {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .06em;
}
.modal-body dd { color: #cbd3dd; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .global-nav { position: fixed; inset: 72px 16px auto; display: none; padding: 22px; border: 1px solid var(--line); background: rgba(5,7,11,.94); backdrop-filter: blur(16px); flex-direction: column; }
  .global-nav.open { display: flex; }
  .nav-toggle { position: relative; display: block; padding: 0; }
  .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, calc(-50% - 4px));
  }
  .nav-toggle span + span {
    transform: translate(-50%, calc(-50% + 4px));
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
  .service-grid, .works-grid, .insta-grid, .news-grid, .contact, .about, .footer-inner, .reason-grid, .job-grid, .work-scope-grid, .benefit-grid, .interview-grid, .recruit-message-grid, .service-flow, .company-detail { grid-template-columns: 1fr 1fr; }
  .news .home-news-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-overview { grid-template-columns: 1fr; }
  .company-page .about-visual,
  .company-page .about-text,
  .company-page .company-detail,
  .company-page .company-overview {
    grid-column: auto;
    grid-row: auto;
  }
  .company-page .about-visual { min-height: 0; }
  .company-page .company-detail,
  .company-page .company-overview { grid-column: 1 / -1; }
  .news-detail-hero, .news-detail-body { grid-template-columns: 1fr; }
  .news-side-box { position: static; }
  .page-feature-band,
  .report-layout,
  .split-showcase { grid-template-columns: 1fr; }
  .content-card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-card-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .instagram-head, .instagram-panels { grid-template-columns: 1fr; }
  .instagram-follow { width: fit-content; }
  .insta-grid a { min-height: 260px; }
  .reels-showcase { grid-template-columns: 1fr; }
  .reels-title { min-height: auto; align-content: start; }
  .reels-title h3, .reels-title span { max-width: 720px; }
  .reels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reel-card { min-height: 380px; }
  .service-grid { gap: 12px; }
  .day-flow li { grid-template-columns: 100px 1fr; }
  .day-flow p { grid-column: 2; }
}

@media (max-width: 640px) {
  .pc-copy { display: none; }
  .sp-copy { display: inline; }
  .pc-break { display: none; }
  .company-detail h2 > .sp-copy {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }
  .sp-lines br { display: inline; }
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
  .section::before,
  .section::after,
  .hero-video {
    will-change: auto;
  }
  .home-page .service-card,
  .home-page .work-card,
  .home-page .news-card,
  .home-page .insta-tile,
  .reason-card {
    transform: none;
  }
  .hero { min-height: 92svh; padding-inline: 20px; }
  .site-header { padding: 16px 18px; }
  .site-header .brand { flex: 1 1 auto; width: calc(100% - 78px); max-width: calc(100% - 78px); gap: 9px; }
  .site-header .brand-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100vw - 166px);
    max-width: none;
    min-width: 0;
    font-size: 12px;
    line-height: 1.18;
    letter-spacing: .02em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .site-header .brand-name-main,
  .site-header .brand-name-sub {
    display: block;
    white-space: nowrap;
  }
  .site-header .brand-name-sub { font-size: .92em; }
  .footer-brand-block .brand > span:last-child { max-width: 245px; }
  .brand-mark { width: 46px; height: 46px; }
  .footer-brand-block .brand-mark { width: 56px; height: 56px; }
  h1 { font-size: clamp(56px, 18vw, 86px); }
  .reason-heading { white-space: normal; line-height: .98; }
  .reason-heading span { display: block; }
  .scroll-cue { display: none; }
  .hero-strengths { grid-template-columns: 1fr; }
  .hero-strengths span { min-height: 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-side { grid-template-columns: 1fr; }
  .line-card { padding-right: 76px; }
  .service-grid, .works-grid, .insta-grid, .news-grid, .contact, .about, .footer-inner, .reason-grid, .job-grid, .work-scope-grid, .benefit-grid, .interview-grid, .recruit-message-grid, .service-flow, .company-detail { grid-template-columns: 1fr; }
  .news .home-news-list { grid-template-columns: 1fr; }
  .home-page .service-grid:not(.service-pr-grid),
  .home-page .works-grid,
  .home-page .reason-grid,
  .home-page .content-card-grid.three,
  .home-page .content-card-grid.four {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 18vw;
    padding-bottom: 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(25,167,255,.78) rgba(255,255,255,.08);
  }
  .home-page .service-grid:not(.service-pr-grid) > *,
  .home-page .works-grid > *,
  .home-page .reason-grid > *,
  .home-page .content-card-grid.three > *,
  .home-page .content-card-grid.four > * {
    flex: 0 0 calc(100% - 72px);
    max-width: 360px;
    scroll-snap-align: start;
  }
  .home-page .works-grid > * {
    flex-basis: calc(100% - 34px);
    max-width: 430px;
  }
  .home-page .service-grid:not(.service-pr-grid)::-webkit-scrollbar,
  .home-page .works-grid::-webkit-scrollbar,
  .home-page .reason-grid::-webkit-scrollbar,
  .home-page .content-card-grid.three::-webkit-scrollbar,
  .home-page .content-card-grid.four::-webkit-scrollbar {
    height: 4px;
  }
  .home-page .service-grid:not(.service-pr-grid)::-webkit-scrollbar-thumb,
  .home-page .works-grid::-webkit-scrollbar-thumb,
  .home-page .reason-grid::-webkit-scrollbar-thumb,
  .home-page .content-card-grid.three::-webkit-scrollbar-thumb,
  .home-page .content-card-grid.four::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(25,167,255,.78);
  }
  .content-card-grid.four,
  .content-card-grid.three,
  .page-feature-band,
  .report-layout,
  .split-showcase,
  .feature-metrics li,
  .spec-list div { grid-template-columns: 1fr; }
  .page-feature-band { padding: 24px; }
  .report-visual,
  .split-image { min-height: 280px; }
  .content-card { min-height: auto; }
  .feature-metrics span { grid-row: auto; }
  .instagram-showcase {
    overflow: hidden;
  }
  .instagram-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    margin-bottom: 28px;
  }
  .instagram-head h2 {
    max-width: 100%;
    font-size: clamp(42px, 13.5vw, 64px);
    line-height: 1.02;
  }
  .instagram-follow {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }
  .instagram-showcase .insta-feature-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding-right: 18vw;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(25,167,255,.78) rgba(255,255,255,.08);
  }
  .instagram-showcase .insta-feature-grid::-webkit-scrollbar,
  .instagram-showcase .reels-grid::-webkit-scrollbar {
    height: 4px;
  }
  .instagram-showcase .insta-feature-grid::-webkit-scrollbar-thumb,
  .instagram-showcase .reels-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(25,167,255,.78);
  }
  .instagram-showcase .insta-feature-grid > a {
    flex: 0 0 calc(100% - 54px);
    max-width: 420px;
    min-height: 218px;
    scroll-snap-align: start;
  }
  .section-head.report-heading h2 { white-space: normal; }
  .section-head.compact h2.service-plan-title { white-space: normal; }
  .company-movie-title { white-space: normal; }
  .reels-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }
  .reels-title {
    min-height: auto;
    padding: 20px;
  }
  .reels-title h3 {
    max-width: 100%;
    font-size: 28px;
  }
  .reels-title span {
    max-width: 100%;
    font-size: 13px;
  }
  .reels-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding-right: 18vw;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(25,167,255,.78) rgba(255,255,255,.08);
  }
  .reel-card {
    flex: 0 0 62vw;
    max-width: 240px;
    min-height: 320px;
    scroll-snap-align: start;
  }
  .reel-play { width: 46px; height: 46px; }
  .reel-card strong { bottom: 42px; font-size: 16px; }
  .reel-card small { bottom: 18px; font-size: 12px; }
  .instagram-panels {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }
  .instagram-panel,
  .instagram-profile {
    padding: 18px;
  }
  .instagram-profile {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }
  .instagram-avatar {
    width: 48px;
    height: 48px;
  }
  .instagram-follow {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
  }
  .instagram-head { gap: 22px; }
  .instagram-head h2 { font-size: clamp(34px, 11vw, 48px); }
  .instagram-lead {
    margin-top: 14px;
    font-size: 14px;
  }
  .instagram-manual-feed { margin-top: 28px; }
  .instagram-reels-grid {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -20px;
    padding: 0 20px 14px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(25,167,255,.78) rgba(255,255,255,.08);
  }
  .instagram-feed-card {
    flex: 0 0 min(78vw, 304px);
    width: min(78vw, 304px);
    max-width: 304px;
    scroll-snap-align: start;
  }
  .instagram-reel-card {
    min-height: 0;
  }
  .instagram-reel-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .instagram-update-card { padding: 28px 24px; }

  /* Mobile card galleries: keep the next card visible as a swipe cue. */
  body:not(.home-page) .service-grid:not(.service-pr-grid),
  body:not(.home-page) .works-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -20px;
    padding: 0 20px 14px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(25,167,255,.78) rgba(255,255,255,.08);
  }
  body:not(.home-page) .service-grid:not(.service-pr-grid) > *,
  body:not(.home-page) .works-grid > * {
    flex: 0 0 calc(100vw - 96px);
    width: calc(100vw - 96px);
    max-width: 350px;
    scroll-snap-align: start;
  }
  body:not(.home-page) .works-grid .work-item:not(.hide) {
    opacity: 1;
    transform: none;
  }
  body:not(.home-page) .service-grid:not(.service-pr-grid)::-webkit-scrollbar,
  body:not(.home-page) .works-grid::-webkit-scrollbar,
  .instagram-reels-grid::-webkit-scrollbar {
    height: 4px;
  }
  body:not(.home-page) .service-grid:not(.service-pr-grid)::-webkit-scrollbar-thumb,
  body:not(.home-page) .works-grid::-webkit-scrollbar-thumb,
  .instagram-reels-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(25,167,255,.78);
  }
  .company-list { grid-template-columns: 1fr; }
  .home-page .news-grid {
    display: grid;
    width: 100%;
    gap: 16px;
    overflow: visible;
    padding: 0;
  }
  .home-page .news-grid > * {
    width: 100%;
    max-width: none;
  }
  .news-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .company-overview {
    display: grid;
    grid-template-columns: 1fr;
  }
  .company-page .company-detail {
    display: grid;
    grid-template-columns: 1fr;
  }
  .company-overview h2 { white-space: nowrap; }
  .recruit-message-card p {
    word-break: normal;
    overflow-wrap: break-word;
  }
  .sp-nowrap {
    white-space: nowrap;
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: -.02em;
  }
  .business-overview dl div { grid-template-columns: 1fr; }
  .business-overview dt { padding-bottom: 4px; }
  .business-overview dd { padding-top: 0; }
  .work-comparison { grid-template-columns: 1fr; }
  .work-comparison::before,
  .work-comparison::after { display: none; }
  .work-compare-image {
    min-height: 260px;
    clip-path: none !important;
    margin: 0 !important;
  }
  .work-modal {
    width: calc(100% - 22px);
    max-height: calc(100dvh - 28px);
    overflow: auto;
    overscroll-behavior: contain;
  }
  .work-modal .modal-close {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    width: 46px;
    height: 46px;
    border-color: rgba(25,167,255,.76);
    background: rgba(2,6,10,.82);
    box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 24px rgba(25,167,255,.32);
    backdrop-filter: blur(12px);
  }
  .work-modal .work-comparison {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .work-modal .work-compare-image {
    min-height: 0;
    height: clamp(188px, 47vw, 235px);
  }
  .work-modal .work-compare-image:first-child {
    border-right: 1px solid rgba(25,167,255,.3);
  }
  .work-modal .work-compare-image span {
    left: 10px;
    top: 10px;
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
    letter-spacing: .06em;
  }
  .work-modal .work-compare-image + .work-compare-image span {
    right: 10px;
    left: auto;
  }
  .work-modal .work-compare-image span::before {
    width: 5px;
    height: 5px;
    margin-right: 7px;
  }
  .work-modal .modal-body {
    padding: 24px 18px 28px;
  }
  .work-modal .modal-body .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: .3em;
  }
  .work-modal .modal-body h2 {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(25,167,255,.28);
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.08;
  }
  .work-modal .modal-body dl {
    display: block;
    max-width: none;
    padding: 0;
    background: transparent;
    border-top: 1px solid rgba(25,167,255,.24);
  }
  .work-modal .modal-body dt,
  .work-modal .modal-body dd {
    display: block;
  }
  .work-modal .modal-body dt {
    padding: 18px 0 8px;
    border-top: 1px solid rgba(25,167,255,.16);
    color: var(--blue);
    font-size: 17px;
    line-height: 1.35;
  }
  .work-modal .modal-body dt:first-of-type {
    border-top: 0;
  }
  .work-modal .modal-body dd {
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(25,167,255,.16);
    color: rgba(226,235,244,.88);
    font-size: 16px;
    line-height: 1.75;
  }
  .service-card { min-height: 280px; }
  .service-grid:not(.service-pr-grid) .service-card {
    min-height: 340px;
    justify-content: flex-start;
    padding-top: 88px;
  }
  .service-grid:not(.service-pr-grid) .service-card > span {
    top: 18px !important;
    left: 18px !important;
    z-index: 12 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(188,229,255,.34);
    border-radius: 999px;
    background: rgba(2,9,16,.88);
    color: rgba(236,244,252,.96);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    box-shadow: 0 0 22px rgba(25,167,255,.18);
    backdrop-filter: blur(8px);
  }
  .service-grid:not(.service-pr-grid) .service-card > i.service-icon {
    margin-top: 0 !important;
    margin-bottom: 26px;
  }
  .recruit-band { min-height: 640px; }
  body::before { opacity: .38; }
  .section::before { opacity: .44; }
  .day-flow li { grid-template-columns: 1fr; }
  .day-flow p { grid-column: auto; }
  .fixed-line { width: 78px; height: 78px; right: 14px; bottom: 14px; font-size: 14px; }
  .modal-body dl { grid-template-columns: 1fr; }
  .modal-body dt { padding-bottom: 4px; }
  .modal-body dd { padding-top: 0; }
  .work-modal .modal-body dl {
    display: block;
  }
  .work-modal .modal-body dt {
    padding: 18px 0 8px;
  }
  .work-modal .modal-body dd {
    padding: 0 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .section::before,
  .hero-video,
  .recruit-band video, .recruit-band .recruit-poster {
    transform: none;
  }
  .reason-card,
  .reason-card:hover,
  .reason-card b,
  .reason-card:hover b {
    transform: none;
  }
}

/* Water-trouble comparison: one shared responsive boundary for images and line. */
.work-modal-water-trouble .work-comparison {
  --water-modal-split-top: 54%;
  --water-modal-split-bottom: 46%;
  overflow: hidden;
}
.work-modal-water-trouble .work-comparison::after {
  inset: 0;
  width: auto;
  background: rgba(25,167,255,.96);
  box-shadow: 0 0 24px rgba(25,167,255,.48);
  transform: none;
  clip-path: polygon(
    calc(var(--water-modal-split-top) - 1px) 0,
    calc(var(--water-modal-split-top) + 1px) 0,
    calc(var(--water-modal-split-bottom) + 1px) 100%,
    calc(var(--water-modal-split-bottom) - 1px) 100%
  );
}
.work-modal-water-trouble .work-compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}
.work-modal-water-trouble .work-compare-image:first-child {
  clip-path: polygon(0 0, var(--water-modal-split-top) 0, var(--water-modal-split-bottom) 100%, 0 100%) !important;
}
.work-modal-water-trouble .work-compare-image:last-child {
  clip-path: polygon(var(--water-modal-split-top) 0, 100% 0, 100% 100%, var(--water-modal-split-bottom) 100%) !important;
}
.work-modal-water-trouble .work-compare-image div {
  inset: 0 auto 0 0;
  width: 54%;
  height: 100%;
  background-color: #02060b;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: none;
}
.work-modal-water-trouble .work-compare-image + .work-compare-image div {
  right: 0;
  left: auto;
}

/* Equipment-lighting comparison: keep each complete fixture visible. */
.work-modal-equipment-lighting .work-comparison {
  --lighting-modal-split-top: 54%;
  --lighting-modal-split-bottom: 46%;
  overflow: hidden;
  background: #02060b;
}
.work-modal-equipment-lighting .work-comparison::after {
  inset: 0;
  width: auto;
  background: rgba(25,167,255,.96);
  box-shadow: 0 0 24px rgba(25,167,255,.48);
  transform: none;
  clip-path: polygon(
    calc(var(--lighting-modal-split-top) - 1px) 0,
    calc(var(--lighting-modal-split-top) + 1px) 0,
    calc(var(--lighting-modal-split-bottom) + 1px) 100%,
    calc(var(--lighting-modal-split-bottom) - 1px) 100%
  );
}
.work-modal-equipment-lighting .work-compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}
.work-modal-equipment-lighting .work-compare-image:first-child {
  clip-path: polygon(0 0, var(--lighting-modal-split-top) 0, var(--lighting-modal-split-bottom) 100%, 0 100%) !important;
}
.work-modal-equipment-lighting .work-compare-image:last-child {
  clip-path: polygon(var(--lighting-modal-split-top) 0, 100% 0, 100% 100%, var(--lighting-modal-split-bottom) 100%) !important;
}
.work-modal-equipment-lighting .work-compare-image div {
  inset: 0 auto 0 0;
  width: 54%;
  height: 100%;
  background-color: #02060b;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: none;
}
.work-modal-equipment-lighting .work-compare-image + .work-compare-image div {
  right: 0;
  left: auto;
}

/* New real-photo records: one responsive split shared by images and line. */
.work-item.work-item-real-downlight,
.work-item.work-item-real-urinal {
  --new-work-split-top: 60%;
  --new-work-split-bottom: 42%;
  overflow: hidden;
}
.work-item.work-item-real-downlight::before,
.work-item.work-item-real-urinal::before { content: none; }
.work-item-real-downlight .work-split-before,
.work-item-real-urinal .work-split-before {
  inset: 0;
  background-color: #02060b;
  background-size: cover;
  background-position: 50% 50%;
  clip-path: polygon(0 0, var(--new-work-split-top) 0, var(--new-work-split-bottom) 100%, 0 100%);
}
.work-item-real-downlight .work-split-after,
.work-item-real-urinal .work-split-after {
  inset: 0;
  background-color: #02060b;
  background-size: cover;
  background-position: 50% 50%;
  clip-path: polygon(var(--new-work-split-top) 0, 100% 0, 100% 100%, var(--new-work-split-bottom) 100%);
}
.work-item-real-downlight .work-split-slash,
.work-item-real-urinal .work-split-slash {
  inset: 0;
  width: auto;
  height: auto;
  background: rgba(25,167,255,.92);
  box-shadow: 0 0 20px rgba(25,167,255,.42);
  transform: none;
  clip-path: polygon(
    calc(var(--new-work-split-top) - 1px) 0,
    calc(var(--new-work-split-top) + 1px) 0,
    calc(var(--new-work-split-bottom) + 1px) 100%,
    calc(var(--new-work-split-bottom) - 1px) 100%
  );
}
.work-item-real-downlight .work-split-before { background-position: 58% 48%; }
.work-item-real-downlight .work-split-after { background-position: 48% 48%; }
.work-item-real-urinal .work-split-before,
.work-item-real-urinal .work-split-after { background-position: 50% 45%; }

.work-modal-new-photo-pair .work-comparison {
  --new-modal-split-top: 54%;
  --new-modal-split-bottom: 46%;
  overflow: hidden;
  background: #02060b;
}
.work-modal-new-photo-pair .work-comparison::after {
  inset: 0;
  width: auto;
  background: rgba(25,167,255,.96);
  box-shadow: 0 0 24px rgba(25,167,255,.48);
  transform: none;
  clip-path: polygon(
    calc(var(--new-modal-split-top) - 1px) 0,
    calc(var(--new-modal-split-top) + 1px) 0,
    calc(var(--new-modal-split-bottom) + 1px) 100%,
    calc(var(--new-modal-split-bottom) - 1px) 100%
  );
}
.work-modal-new-photo-pair .work-compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}
.work-modal-new-photo-pair .work-compare-image:first-child {
  clip-path: polygon(0 0, var(--new-modal-split-top) 0, var(--new-modal-split-bottom) 100%, 0 100%) !important;
}
.work-modal-new-photo-pair .work-compare-image:last-child {
  clip-path: polygon(var(--new-modal-split-top) 0, 100% 0, 100% 100%, var(--new-modal-split-bottom) 100%) !important;
}
.work-modal-new-photo-pair .work-compare-image div {
  inset: 0 auto 0 0;
  width: 54%;
  height: 100%;
  background-color: #02060b;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: none;
}
.work-modal-new-photo-pair .work-compare-image + .work-compare-image div {
  right: 0;
  left: auto;
}

/* All work cards share one split geometry; per-record image positions stay intact. */
.work-item {
  --work-card-split-top: 66%;
  --work-card-split-bottom: 42%;
  overflow: hidden;
  transition: opacity .25s, box-shadow .3s;
}
.work-item .work-split-before {
  inset: 0;
  clip-path: polygon(0 0, var(--work-card-split-top) 0, var(--work-card-split-bottom) 100%, 0 100%);
  transform-origin: 50% 50%;
}
.work-item .work-split-after {
  inset: 0;
  clip-path: polygon(var(--work-card-split-top) 0, 100% 0, 100% 100%, var(--work-card-split-bottom) 100%);
  transform-origin: 50% 50%;
}
.work-item .work-split-slash {
  inset: 0;
  width: auto;
  height: auto;
  background: rgba(25,167,255,.92);
  box-shadow: 0 0 20px rgba(25,167,255,.42);
  transform: none;
  clip-path: polygon(
    calc(var(--work-card-split-top) - 1px) 0,
    calc(var(--work-card-split-top) + 1px) 0,
    calc(var(--work-card-split-bottom) + 1px) 100%,
    calc(var(--work-card-split-bottom) - 1px) 100%
  );
}
