:root {
  /* 信頼の芯（安心感）— ブランドの深ネイビー */
  --brand: #072a66;
  /* 清潔感: 黄みを抑えたクールニュートラル / 未来感: 淡いアイスブルー系の階調 */
  --bg-page: #fbfdff;
  --bg: var(--bg-page);
  --bg-elevated: #f4f8fd;
  --bg-card: #ffffff;
  --bg-hero-end: #f0f5fb;
  --text: #072a66;
  --text-muted: rgba(7, 42, 102, 0.62);
  --accent: #072a66;
  --accent-soft: rgba(7, 42, 102, 0.055);
  /* 未来のさし色（面積は控えめに使用） */
  --accent-future: #3d8ec9;
  --accent-future-soft: rgba(61, 142, 201, 0.12);
  --border: rgba(7, 42, 102, 0.05);
  --header-seam: rgba(7, 42, 102, 0.03);
  --font-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-en: "Verdana Pro", Verdana, sans-serif;
  --radius: 12px;
  --header-h: 72px;
  --content-max: 1120px;
  --content-gutter: clamp(16px, 4vw, 64px);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(var(--content-max), calc(100vw - (var(--content-gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  /* メインと同色に近づけ、境界線は極薄のみ（Anthropic 系のフラットな帯） */
  background: color-mix(in srgb, var(--bg-page) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 var(--header-seam);
}
.header-inner {
  width: min(var(--content-max), calc(100vw - (var(--content-gutter) * 2)));
  margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--font-en); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.06em; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.25rem; align-items: center; }
.site-nav a:not(.btn-nav) { font-size: 0.9rem; color: var(--text-muted); }
.site-nav a.active, .site-nav a:not(.btn-nav):hover { color: var(--brand); font-weight: 600; }
.site-nav .has-sub { position: relative; }
.site-nav .sub {
  display: none; position: absolute; top: 100%; left: 0; min-width: 230px;
  padding: 0.75rem 0; margin-top: 0.5rem; border: 1px solid var(--border);
  background: var(--bg-card); border-radius: var(--radius); box-shadow: 0 8px 28px rgba(7, 42, 102, 0.05);
}
.site-nav .has-sub:hover .sub, .site-nav .has-sub:focus-within .sub { display: block; }
.site-nav .sub a { display: block; padding: 0.45rem 1rem; }
.btn-nav, .btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff !important; border-radius: 999px;
  padding: 0.52rem 1rem; font-weight: 600;
}
.btn-primary { padding: 0.85rem 1.75rem; }
.btn-nav:hover, .btn-primary:hover { filter: brightness(1.12); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: transparent; border-radius: 8px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--brand); margin: 5px auto; }

.hero {
  position: relative; min-height: min(90vh, 820px); display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 22%, rgba(61, 142, 201, 0.045), transparent 55%),
    radial-gradient(ellipse 55% 45% at 20% 75%, rgba(7, 42, 102, 0.02), transparent 50%),
    linear-gradient(180deg, var(--bg-page) 0%, var(--bg-hero-end) 100%);
}
.hero-content {
  position: relative;
  width: min(var(--content-max), calc(100vw - (var(--content-gutter) * 2)));
  margin-inline: auto;
}
.hero-label, .section-en { font-family: var(--font-en); color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; font-size: 0.8rem; }
.hero-title { font-size: clamp(1.8rem, 4.5vw, 3.1rem); line-height: 1.35; margin: 0.5rem 0 1rem; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--brand); transition: opacity 0.22s ease; }
.hero-title .accent.fade-out { opacity: 0; }
.hero-lead { color: var(--text-muted); max-width: 44rem; }
.hero-brand {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 0.65rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

/* Mission / Vision（ACES トップ相当: 横並びラベル＋本文の階層） */
.hero-mv {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  max-width: min(40rem, 100%);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.hero-mv__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 2.5rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(7, 42, 102, 0.12);
}
.hero-mv__tab {
  position: relative;
  margin: 0;
  padding: 0.35rem 0 0.85rem;
  font-family: var(--font-en);
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  opacity: 0.42;
  transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
.hero-mv__tab:hover {
  opacity: 0.75;
  color: var(--brand);
}
.hero-mv__tab.is-active {
  opacity: 1;
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.hero-mv__viewport {
  position: relative;
  min-height: 11rem;
}
.hero-mv__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.hero-mv__panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-mv__panel-heading {
  display: none;
  margin: 0 0 0.5rem;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero-mv__lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.4vw, 1.38rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.hero-mv__text {
  margin: 0;
  font-size: clamp(0.94rem, 1.5vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.88;
}
.hero-mv--static .hero-mv__tabs {
  display: none;
}
.hero-mv--static .hero-mv__viewport {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.hero-mv--static .hero-mv__panel {
  position: static;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(7, 42, 102, 0.1);
}
.hero-mv--static .hero-mv__panel:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.hero-mv--static .hero-mv__panel-heading {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-mv[data-mv-rotator] .hero-mv__tabs {
    display: none;
  }
  .hero-mv[data-mv-rotator] .hero-mv__viewport {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  .hero-mv[data-mv-rotator] .hero-mv__panel {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(7, 42, 102, 0.1);
  }
  .hero-mv[data-mv-rotator] .hero-mv__panel:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .hero-mv[data-mv-rotator] .hero-mv__panel-heading {
    display: block;
  }
}

/* トップ: ヒーローは約60%スケール＋余白多め */
.page-home .hero.hero--impact {
  min-height: min(56vh, 520px);
  padding: calc(var(--header-h) + 4.5rem) 0 5.5rem;
}
.page-home .hero--impact .hero-content {
  padding: 0 clamp(0.5rem, 3vw, 1.5rem);
}
.page-home .hero--impact .hero-brand {
  font-size: clamp(0.75rem, 1.45vw, 0.85rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.page-home .hero--impact .hero-title {
  font-size: clamp(1.3rem, 3.1vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.22;
  margin: 0 0 1.85rem;
}
.page-home .hero--impact .hero-lead {
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  line-height: 2;
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.page-home .hero--impact .hero-actions {
  margin-top: 1rem;
}
.page-home .hero-mv {
  margin-top: clamp(2.5rem, 5.5vw, 3.75rem);
}
.page-home .hero-mv__tabs {
  margin-bottom: 1.35rem;
}
.page-home .hero-mv__tab {
  font-size: clamp(0.75rem, 1.56vw, 1rem);
  padding: 0.45rem 0 1rem;
}
.page-home .hero-mv__viewport {
  min-height: 7rem;
}
.page-home .hero-mv__lead {
  font-size: clamp(0.75rem, 1.44vw, 0.9rem);
  margin-bottom: 0.85rem;
}
.page-home .hero-mv__text {
  font-size: clamp(0.75rem, 1.15vw, 0.85rem);
  line-height: 1.95;
}
.page-home .hero-mv__panel-heading {
  font-size: 0.65rem;
}

/* —— Top hero: インパクト演出（index のみ .hero--impact） —— */
.hero--impact {
  --spot-x: 50%;
  --spot-y: 42%;
  min-height: min(92vh, 880px);
  isolation: isolate;
}
.hero--impact .hero-bg--mesh {
  position: absolute;
  inset: 0;
  /* 上端はヘッダー直下と同じ --bg-page から開始し、境界が目立たない */
  background:
    radial-gradient(ellipse 90% 70% at 15% 18%, rgba(61, 142, 201, 0.05), transparent 54%),
    radial-gradient(ellipse 72% 58% at 88% 12%, rgba(7, 42, 102, 0.025), transparent 50%),
    radial-gradient(ellipse 58% 48% at 50% 100%, rgba(61, 142, 201, 0.03), transparent 56%),
    linear-gradient(180deg, var(--bg-page) 0%, var(--bg-page) 18%, var(--bg-hero-end) 100%);
}
.hero--impact .hero-bg--scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(235, 246, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: heroScan 9s ease-in-out infinite;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@keyframes heroScan {
  0%,
  100% {
    background-position: 120% 0;
  }
  50% {
    background-position: -20% 0;
  }
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.42;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -8%;
  right: -5%;
  background: radial-gradient(circle at 30% 30%, rgba(200, 225, 248, 0.55), rgba(247, 249, 252, 0.4));
  animation-delay: 0s;
}
.hero-orb--b {
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  bottom: 5%;
  left: -6%;
  background: radial-gradient(circle at 60% 50%, rgba(236, 242, 252, 0.85), rgba(255, 255, 255, 0.35));
  animation-delay: -4s;
  animation-duration: 18s;
}
.hero-orb--c {
  width: min(200px, 28vw);
  height: min(200px, 28vw);
  top: 42%;
  right: 18%;
  background: radial-gradient(circle, rgba(61, 142, 201, 0.09), transparent 72%);
  animation-delay: -2s;
  animation-duration: 12s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-12px, 18px) scale(1.04);
  }
  66% {
    transform: translate(10px, -14px) scale(0.98);
  }
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(7, 42, 102, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 142, 201, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 20%, transparent 75%);
  animation: gridPulse 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.045;
  }
  50% {
    opacity: 0.09;
  }
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-particles span {
  position: absolute;
  bottom: -16px;
  border-radius: 50%;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    transform: translateY(-80vh);
    opacity: 0;
  }
}
.hero--impact .hero-particles span {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, rgba(7, 42, 102, 0.22), rgba(140, 195, 235, 0.4));
  box-shadow: 0 0 10px rgba(61, 142, 201, 0.15);
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    560px circle at var(--spot-x) var(--spot-y),
    rgba(252, 253, 255, 0.92),
    rgba(61, 142, 201, 0.035) 38%,
    rgba(232, 240, 250, 0.45) 52%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 1;
}
.hero--impact .hero-content {
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(7, 42, 102, 0.07);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(236, 244, 252, 0.92) 100%);
  box-shadow: 0 2px 18px rgba(7, 42, 102, 0.028), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.hero-badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(7, 42, 102, 0.45);
  animation: badgePulse 2s ease-out infinite;
}
@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(7, 42, 102, 0.45);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(7, 42, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(7, 42, 102, 0);
  }
}
.hero--impact .hero-title {
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.28;
}
.hero-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15em;
  margin-top: 0.15em;
}
.hero-title-shimmer {
  background: linear-gradient(
    100deg,
    var(--brand) 0%,
    #1a4d9e 28%,
    var(--accent-future) 48%,
    #5aa3d9 62%,
    var(--brand) 88%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShimmer 7s linear infinite;
}
@keyframes textShimmer {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: -100% center;
  }
}
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 2px;
  background: var(--brand);
  border-radius: 1px;
  animation: cursorBlink 0.9s step-end infinite;
  vertical-align: -0.05em;
}
@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-title-shimmer.is-typing-done + .typing-cursor {
  animation: cursorBlink 1.1s step-end infinite;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.34s;
}
.reveal-d4 {
  transition-delay: 0.46s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
.btn-primary--glow {
  box-shadow: 0 4px 22px rgba(7, 42, 102, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary--glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(7, 42, 102, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand);
  border: 2px solid rgba(7, 42, 102, 0.12);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-card) 88%, transparent);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(7, 42, 102, 0.22);
  background: var(--bg-card);
  transform: translateY(-1px);
}
.stats-grid--home {
  gap: 1.35rem;
}
.stat--glass {
  position: relative;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(7, 42, 102, 0.055);
  background: linear-gradient(155deg, var(--bg-card) 0%, rgba(232, 242, 252, 0.75) 100%);
  box-shadow: 0 8px 32px rgba(7, 42, 102, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat--glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(7, 42, 102, 0.1), rgba(180, 215, 245, 0.4), transparent 65%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.stat--glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(7, 42, 102, 0.06);
}
.stat--glass .stat-num {
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--brand), var(--accent-future));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat--glass .stat-num--static {
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg--scan,
  .hero-orb,
  .hero-grid-lines,
  .hero-title-shimmer,
  .hero-badge__pulse,
  .typing-cursor,
  .hero-particles span {
    animation: none !important;
  }
  .hero--impact .hero-bg--scan {
    opacity: 0.25;
  }
}

.page-hero { padding: calc(var(--header-h) + 2.2rem) 0 2rem; background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-elevated) 100%); }
.section { padding: 4rem 0; }
/* トップ: 余白のリズムを一定に（清潔感） */
.page-home .section,
.page-home .section-alt {
  padding: clamp(3.5rem, 7.5vw, 5.75rem) 0;
}
.section-alt { background: var(--bg-elevated); }
.section-title { margin: 0.3rem 0 1rem; font-size: clamp(1.45rem, 3vw, 2rem); color: var(--brand); }
.section-desc { color: var(--text-muted); max-width: 46rem; }
.section-desc--tight { margin-top: 1.5rem; }
.section-cta { margin: 1.5rem 0 0; text-align: center; }
.section-cta--philosophy {
  margin-top: 0.85rem;
  text-align: left;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(7, 42, 102, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-inline::after {
  content: "→";
  font-family: var(--font-en);
  font-size: 0.8rem;
}
.btn-inline:hover {
  color: #123f8d;
  border-color: rgba(18, 63, 141, 0.45);
}
.section-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1.25rem; max-width: 40rem; }
.mission-lead {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 1rem;
  max-width: 40rem;
}
.mission-body { margin-top: 0.5rem; }
.card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card-grid--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.reason-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.reason-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--brand);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.reason-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--brand); }
.reason-card p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }
.reason-foot { margin-top: 1.75rem !important; }
.policy-line {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(7, 42, 102, 0.06);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--brand);
}
.footer-policy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  max-width: 22rem;
  line-height: 1.5;
}
.content-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 1.25rem 0;
  display: block;
}
.brand-tagline {
  text-align: center;
  padding: 1.25rem 1rem;
  margin: 0 0 1.5rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}
.brand-tagline span { display: block; opacity: 0.92; font-size: 0.85rem; font-weight: 500; margin-top: 0.35rem; }
.service-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block h2 { margin-top: 0; }

/* Services page: block framing (readability + modern tone) */
.page-services .service-shell {
  position: relative;
  border: 1px solid rgba(0, 39, 82, 0.12);
  border-radius: 16px;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  background:
    linear-gradient(155deg, rgba(0, 39, 82, 0.025) 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    0 8px 26px rgba(0, 39, 82, 0.06),
    0 0 0 1px rgba(105, 170, 230, 0.06) inset;
}

.page-services .service-shell::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: clamp(110px, 12vw, 170px);
  height: clamp(72px, 8vw, 112px);
  border-top-left-radius: 16px;
  background: linear-gradient(140deg, rgba(0, 39, 82, 0.13) 0 46%, transparent 46% 100%);
  pointer-events: none;
}

.page-services .service-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(0, 39, 82, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 39, 82, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse 120% 95% at 70% 85%, #000 30%, transparent 80%);
  pointer-events: none;
}

.page-services .service-shell > * {
  position: relative;
  z-index: 1;
}

.page-services .service-shell--hero {
  padding-top: clamp(1.3rem, 2.2vw, 1.8rem);
}

.page-services .section-en,
.page-services .product-card__label {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.page-services .section-desc {
  line-height: 1.95;
}
.services-jump {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.services-jump a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 42, 102, 0.16);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(7, 42, 102, 0.03);
}
.services-jump a:hover {
  border-color: rgba(7, 42, 102, 0.3);
  background: rgba(7, 42, 102, 0.07);
}
.services-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.compare-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  background: var(--bg-card);
}
.compare-card h3 {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 1.08rem;
}
.compare-card dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.compare-card dl div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.45rem;
}
.compare-card dt {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.compare-card dd {
  margin: 0;
  color: var(--brand);
  font-size: 0.92rem;
}
.service-concept-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}
.service-concept-list li {
  margin-bottom: 0.7rem;
  padding-left: 0.1rem;
  line-height: 1.95;
}
.service-flow {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}
.service-flow span {
  border: 1px solid rgba(7, 42, 102, 0.14);
  border-radius: 10px;
  padding: 0.62rem 0.65rem;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--brand);
  background: rgba(7, 42, 102, 0.03);
}
.service-products {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(7, 42, 102, 0.1);
}
.service-products__title {
  margin: 0.25rem 0 0.75rem;
  color: var(--brand);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}
.service-products--bespoke {
  margin-top: 1.55rem;
}
.bespoke-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.bespoke-card {
  border: 1px solid rgba(7, 42, 102, 0.12);
  border-radius: 14px;
  padding: 1rem 0.95rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow: 0 6px 18px rgba(0, 39, 82, 0.05);
}
.bespoke-card h4 {
  margin: 0 0 0.55rem;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.55;
}
.bespoke-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.service-meta {
  margin-top: 1.15rem;
  border: 1px solid rgba(7, 42, 102, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.1rem 1.05rem 1rem;
}
.service-meta dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.service-meta dl div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.8rem;
  align-items: start;
}
.service-meta dt {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}
.service-meta dd {
  margin: 0;
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.75;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.fit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  background: var(--bg-card);
}
.fit-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
  color: var(--brand);
}
.fit-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}
.fit-card li {
  margin-bottom: 0.38rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(7, 42, 102, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 39, 82, 0.14);
  border-color: rgba(0, 39, 82, 0.34);
}
.product-card__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-en);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.product-card__lead {
  margin: 0 0 0.68rem;
  font-size: 0.93rem;
  line-height: 1.75;
}
.product-points {
  margin: 0;
  padding-left: 1.1rem;
}
.product-points li {
  margin-bottom: 0.35rem;
  line-height: 1.68;
  font-size: 0.92rem;
}
.product-card__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.product-card--fae {
  background: linear-gradient(165deg, rgba(245, 171, 20, 0.14) 0%, rgba(255, 255, 255, 0.98) 48%);
}
.product-card--fae .product-card__label,
.product-card--fae .product-card__link {
  color: #a96a00;
}
.product-card--fae .product-card__lead,
.product-card--fae .product-points li {
  color: #3c2b13;
}
.product-card--project {
  background: linear-gradient(165deg, rgba(0, 39, 82, 0.92) 0%, rgba(0, 39, 82, 0.84) 100%);
  border-color: rgba(176, 206, 240, 0.3);
}
.product-card--project .product-card__label,
.product-card--project .product-card__link {
  color: #f0f7ff;
}
.product-card--project .product-card__lead,
.product-card--project .product-points li {
  color: rgba(228, 238, 252, 0.92);
}
.db-feature-list { list-style: none; margin: 0; padding: 0; }
.db-feature-list li {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-left: 4px solid var(--brand);
  background: rgba(7, 42, 102, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.db-feature-list h3 { margin: 0 0 0.35rem; font-size: 1.05rem; color: var(--brand); }
.db-feature-list p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }
.corp-table {
  width: 100%;
  max-width: 36rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.corp-table th,
.corp-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.corp-table th {
  width: 7rem;
  color: var(--text-muted);
  font-weight: 500;
}
.corp-table td { color: var(--brand); }
.corp-table a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.about-grid { max-width: 52rem; }
.about-text .lead { font-size: 1.1rem; }
.about-text--statement {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(7, 42, 102, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.92));
  box-shadow:
    0 22px 44px rgba(7, 42, 102, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}
.about-text--statement::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(7, 42, 102, 0.95), rgba(61, 142, 201, 0.55), rgba(7, 42, 102, 0));
}
.about-text--statement::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 142, 201, 0.12), transparent 68%);
  pointer-events: none;
}
.about-text--statement .lead {
  position: relative;
  margin: 0 0 1.15rem;
  padding-left: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--brand);
}
.about-text--statement .lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(7, 42, 102, 1), rgba(61, 142, 201, 0.42));
}
.about-text__body {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.2rem;
}
.about-text__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(7, 42, 102, 0.8), rgba(61, 142, 201, 0.2));
}
.about-text__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 2;
}
.about-text__highlight {
  color: var(--brand);
  font-weight: 700;
}
.about-text--statement strong {
  position: relative;
  font-weight: 700;
}
.no-break { white-space: nowrap; }

.card-grid, .tech-grid, .stats-grid, .cta-grid {
  display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card, .tech-card, .stat, .contact-box, .cta-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; background: var(--bg-card);
}
.card h3, .tech-card h3 { margin-top: 0; }
.card p, .tech-card p, .stat-label { color: var(--text-muted); }
.card-link, .text-link { color: var(--accent); font-weight: 600; }
.card-link-box {
  text-decoration: none;
}
.card-link-box .card-link {
  margin-top: auto;
}
.card-link-box:focus-visible {
  outline: 3px solid rgba(61, 142, 201, 0.45);
  outline-offset: 2px;
}
.card-eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}
.card-link-box h3 {
  margin: 0;
  min-height: 2.8em;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}
.card-sub {
  margin: 0.15rem 0 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}
.card-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.88;
  max-width: 34ch;
}
.card--dark,
.card--light {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 2.1rem;
}
.card--dark {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0 22%, transparent 22% 100%),
    linear-gradient(140deg, #123f8d 0%, #072a66 58%, #061f4d 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(7, 42, 102, 0.22);
}
.card--dark h3,
.card--dark p,
.card--dark .card-link,
.card--dark .card-eyebrow {
  color: rgba(255, 255, 255, 0.97);
}
.card--dark .card-sub { color: rgba(255, 255, 255, 0.95); }
.card--dark .card-body { color: rgba(255, 255, 255, 0.93); }
.card--dark .card-link {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
}
.card--light {
  background:
    linear-gradient(140deg, rgba(7, 42, 102, 0.035) 0 22%, transparent 22% 100%),
    #ffffff;
  border-color: rgba(7, 42, 102, 0.11);
  box-shadow: 0 10px 24px rgba(7, 42, 102, 0.06);
}
.card--light h3 { color: var(--brand); }
.card--light .card-link { color: var(--brand); }
.card--light .card-eyebrow {
  color: rgba(7, 42, 102, 0.72);
}
.card--light .card-sub { color: rgba(7, 42, 102, 0.86); }
.card--light .card-body { color: rgba(7, 42, 102, 0.72); }
.service-split { margin-bottom: 2.2rem; }

.stat-num { font-size: 2rem; font-family: var(--font-en); line-height: 1; margin: 0 0 0.5rem; }

.project-list, .news-list { list-style: none; margin: 0; padding: 0; }
.project-item, .news-item {
  display: grid; gap: 0.75rem 1rem; border-bottom: 1px solid var(--border); padding: 1rem 0;
}
.project-item { grid-template-columns: auto 1fr auto; align-items: center; }
.project-item .tag { background: var(--accent-soft); color: var(--accent); font-size: 0.76rem; padding: 0.2rem 0.6rem; border-radius: 5px; }
.project-title, .news-title { color: var(--brand); }
.news-item { grid-template-columns: auto auto 1fr; }
.news-item time { color: var(--text-muted); font-family: var(--font-en); }
.news-cat { color: var(--accent); font-size: 0.75rem; }
.page-projects .page-hero .container { text-align: left; }
.projects-showcase { position: relative; }
.projects-showcase__lead {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 700;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.case-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 1rem 0.95rem 1.15rem;
  border: 1px solid rgba(0, 39, 82, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 10px 26px rgba(0, 39, 82, 0.06);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 39, 82, 0.22);
  box-shadow: 0 18px 34px rgba(0, 39, 82, 0.12);
}
.case-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, transparent 0 48%, #ffb156 48% 68%, transparent 68% 100%);
  opacity: 0.9;
}
.case-card::before,
.case-card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background-image: radial-gradient(circle, rgba(0, 39, 82, 0.72) 1.2px, transparent 1.2px);
  background-size: 6px 6px;
  opacity: 0.24;
}
.case-card::before { top: 14px; left: 14px; }
.case-card::after { right: 14px; bottom: 14px; }
.case-card h3 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 1.18rem;
  line-height: 1.45;
  text-align: center;
}
.case-card__sub {
  margin: -0.45rem 0 0.9rem;
  text-align: center;
  color: rgba(0, 39, 82, 0.68);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.case-visual {
  position: relative;
  width: min(148px, 72%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 28px;
  animation: caseFloat 6s ease-in-out infinite;
}
.case-visual span,
.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
}
.case-visual--rag {
  background:
    linear-gradient(145deg, #e7f1ff, #a2d2ff);
  box-shadow: 0 16px 30px rgba(64, 145, 255, 0.2);
}
.case-visual--rag::before {
  inset: 18% 22% 20% 16%;
  border-radius: 16px;
  background:
    linear-gradient(rgba(0, 39, 82, 0.08) 2px, transparent 2px),
    linear-gradient(180deg, #ffffff, #eef6ff);
  background-size: 58% 12px, auto;
  background-repeat: no-repeat;
  background-position: 18px 22px, center;
  box-shadow:
    inset 0 0 0 2px rgba(0, 39, 82, 0.08),
    -12px 12px 0 0 rgba(255, 255, 255, 0.45);
}
.case-visual--rag::after {
  width: 30%;
  height: 30%;
  right: 16%;
  bottom: 18%;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffcf70, #ffb156);
  box-shadow: 0 10px 20px rgba(255, 177, 86, 0.26);
}
.case-visual--rag span {
  left: 28%;
  right: 24%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 39, 82, 0.2), rgba(0, 39, 82, 0.95), rgba(255, 177, 86, 0.7));
  box-shadow: 0 0 10px rgba(30, 90, 168, 0.2);
}
.case-visual--auth {
  background: linear-gradient(145deg, #d8ebff, #8cc7ff);
  box-shadow: 0 16px 30px rgba(61, 142, 201, 0.18);
}
.case-visual--auth::before {
  width: 36%;
  height: 42%;
  left: 32%;
  top: 18%;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  clip-path: polygon(50% 0%, 88% 16%, 88% 54%, 50% 100%, 12% 54%, 12% 16%);
}
.case-visual--auth::after {
  width: 30%;
  height: 30%;
  right: 14%;
  bottom: 18%;
  border-radius: 50%;
  border: 8px solid #ffffff;
  box-sizing: border-box;
}
.case-visual--auth span {
  width: 16%;
  height: 10%;
  right: 15%;
  bottom: 16%;
  border-radius: 999px;
  border-right: 4px solid #9bd56d;
  border-bottom: 4px solid #9bd56d;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.case-visual--inventory,
.case-visual--project,
.case-visual--hr,
.case-visual--quote,
.case-visual--vision,
.case-visual--semiconductor {
  background: linear-gradient(145deg, #edf5ff, #bfdcff);
  box-shadow: 0 16px 30px rgba(61, 142, 201, 0.16);
}
.case-visual--inventory::before {
  width: 34%;
  height: 34%;
  left: 16%;
  top: 28%;
  border-radius: 10px;
  background: linear-gradient(145deg, #3da8ff, #9dd3ff);
  box-shadow: 44px -12px 0 0 rgba(109, 191, 255, 0.9), 88px 0 0 0 rgba(77, 143, 255, 0.88);
}
.case-visual--inventory::after {
  width: 16%;
  height: 16%;
  right: 16%;
  top: 18%;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffcf70, #ffb156);
}
.case-visual--inventory span {
  width: 18%;
  height: 3px;
  right: 20%;
  top: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 177, 86, 0.2), rgba(255, 177, 86, 0.95));
}
.case-visual--project::before {
  inset: 18% 16%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0 30%, transparent 30% 34%, rgba(255,255,255,0.94) 34% 64%, transparent 64% 68%, rgba(255,255,255,0.94) 68% 100%),
    linear-gradient(145deg, #dfeeff, #a9d1ff);
}
.case-visual--project::after {
  left: 22%;
  right: 22%;
  top: 32%;
  height: 8%;
  border-radius: 999px;
  background: #4e85ff;
  box-shadow: 0 22px 0 0 #32c0ff, 0 44px 0 0 #7ebfff;
}
.case-visual--project span {
  width: 14%;
  height: 14%;
  left: 18%;
  top: 28%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 52px 0 0 0 #ffffff, 104px 0 0 0 #ffffff;
}
.case-visual--hr::before {
  width: 18%;
  height: 18%;
  left: 18%;
  bottom: 28%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 36px -10px 0 0 #ffffff, 72px 4px 0 0 #ffffff;
}
.case-visual--hr::after {
  inset: 18% 16% 18% 44%;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #eef6ff);
  box-shadow: inset 0 0 0 2px rgba(0, 39, 82, 0.08);
}
.case-visual--hr span {
  width: 22%;
  height: 8%;
  right: 24%;
  top: 34%;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffd57e, #ffb053);
  box-shadow: 0 16px 0 0 rgba(0, 39, 82, 0.12), 0 32px 0 0 rgba(0, 39, 82, 0.12);
}
.case-visual--expense::before {
  inset: 16% 18%;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff5dc, #ffd89e);
  box-shadow: inset 0 0 0 2px rgba(255, 177, 86, 0.22);
}
.case-visual--expense::after {
  left: 28%;
  right: 28%;
  top: 28%;
  height: 10%;
  border-radius: 999px;
  background: #4a90e2;
  box-shadow: 0 20px 0 0 #8a52ff, 0 40px 0 0 #ff8656;
}
.case-visual--expense span {
  width: 16%;
  height: 16%;
  left: 18%;
  top: 22%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 74px 0 0 0 #ffffff;
}
.case-visual--quote::before {
  inset: 16% 22% 16% 18%;
  border-radius: 16px;
  background:
    linear-gradient(rgba(0, 39, 82, 0.08) 2px, transparent 2px),
    linear-gradient(145deg, #b8dfff, #eff8ff);
  background-size: 56% 12px, auto;
  background-repeat: no-repeat;
  background-position: 18px 22px, center;
}
.case-visual--quote::after {
  width: 26%;
  height: 26%;
  right: 18%;
  bottom: 18%;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd27d, #ffb156);
  box-shadow: 0 0 0 8px rgba(255, 210, 125, 0.22);
}
.case-visual--quote span {
  left: 28%;
  right: 34%;
  bottom: 24%;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 39, 82, 0.18);
  box-shadow: 0 -16px 0 0 rgba(0, 39, 82, 0.18), 0 -32px 0 0 rgba(0, 39, 82, 0.18);
}
.case-visual--vision {
  border-radius: 50%;
}
.case-visual--vision::before {
  inset: 18%;
  border-radius: 24px;
  background: linear-gradient(145deg, #8ad4ff, #c9efff);
}
.case-visual--vision::after {
  inset: 30%;
  border-radius: 50%;
  border: 10px solid #ffffff;
  box-sizing: border-box;
}
.case-visual--vision span {
  inset: 42%;
  border-radius: 50%;
  background: #002752;
  box-shadow: 0 0 0 16px rgba(255,255,255,0.18);
}
.case-visual--semiconductor::before {
  inset: 22%;
  border-radius: 12px;
  background: linear-gradient(145deg, #d6e8ff, #f8fbff);
  box-shadow: inset 0 0 0 2px rgba(0, 39, 82, 0.08);
}
.case-visual--semiconductor::after {
  inset: 36%;
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 39, 82, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 39, 82, 0.12) 1px, transparent 1px),
    linear-gradient(145deg, #66b3ff, #9fd5ff);
  background-size: 10px 10px, 10px 10px, auto;
}
.case-visual--semiconductor span {
  width: 18%;
  height: 18%;
  left: 41%;
  top: 41%;
  border-radius: 5px;
  background: #ffffff;
  box-shadow:
    -34px 0 0 -2px rgba(0, 39, 82, 0.22),
    34px 0 0 -2px rgba(0, 39, 82, 0.22),
    0 -34px 0 -2px rgba(0, 39, 82, 0.22),
    0 34px 0 -2px rgba(0, 39, 82, 0.22);
}
@keyframes caseFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.case-visual--rag { animation-duration: 6.8s; }
.case-visual--auth { animation-duration: 5.8s; }
.case-visual--inventory { animation-duration: 6.4s; }
.case-visual--project { animation-duration: 6.1s; }
.case-visual--hr { animation-duration: 6.7s; }
.case-visual--expense { animation-duration: 5.9s; }
.case-visual--quote { animation-duration: 6.3s; }
.case-visual--vision { animation-duration: 5.7s; }
.case-visual--semiconductor { animation-duration: 6.2s; }
.news-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.filter-btn {
  border: 1px solid var(--border); background: var(--bg-card); color: var(--brand); border-radius: 999px; padding: 0.4rem 0.95rem; cursor: pointer;
}
.filter-btn.is-active { background: var(--brand); color: #fff; }
.news-row.is-hidden { display: none; }

.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; }
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--header-seam);
  background: var(--bg-page);
}
.footer-copy, .footer-nav a, .footer-social a { color: var(--text-muted); font-size: 0.88rem; }
.footer-nav ul, .footer-social { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header {
    height: 64px;
    background: rgba(251, 253, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(7, 42, 102, 0.08);
    overflow: visible;
  }
  .header-inner {
    width: calc(100vw - 32px);
    position: relative;
    overflow: visible;
  }
  .logo {
    position: relative;
    z-index: 121;
    font-size: 1.2rem;
  }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 121;
    width: 46px;
    height: 46px;
    border-color: rgba(7, 42, 102, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(7, 42, 102, 0.08);
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    bottom: auto;
    width: min(320px, calc(100vw - 24px));
    max-height: min(70vh, 560px);
    z-index: 130;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 42, 102, 0.1);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(7, 42, 102, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    padding: 0.65rem 1rem 0.9rem;
    overflow-y: auto;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .site-nav > ul > li { width: 100%; border-bottom: 1px solid var(--border); padding: 0.15rem 0; }
  .site-nav > ul > li:last-child { border-bottom: 0; }
  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.2rem;
  }
  .site-nav .sub {
    display: block;
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.15rem 0 0.75rem 0.9rem;
    margin: 0;
  }
  .site-nav .sub a { color: var(--text-muted); }
  .site-nav .btn-nav {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.78rem 1rem;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid--split { grid-template-columns: 1fr; }
  .card--dark,
  .card--light { min-height: 290px; padding: 1.5rem; }
  .card-sub { font-size: 0.95rem; }
  .card-body { font-size: 0.9rem; max-width: none; }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    min-height: 220px;
  }
  .services-compare,
  .fit-grid,
  .service-flow,
  .product-grid,
  .bespoke-grid {
    grid-template-columns: 1fr;
  }
  .service-meta dl div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .service-products {
    margin-top: 1.15rem;
    padding-top: 1rem;
  }
  .compare-card dl div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .page-services .service-shell {
    border-radius: 14px;
    padding: 1rem;
  }
  .page-services .section-desc,
  .service-concept-list li,
  .service-meta dt,
  .service-meta dd {
    line-height: 1.85;
  }
  .page-services .service-shell::before {
    width: 100px;
    height: 68px;
  }
}

@media (min-width: 1600px) {
  :root {
    --content-max: 1360px;
  }
}

@media (min-width: 2200px) {
  :root {
    --content-max: 1560px;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .theme-lg-home .hero-tech-composition {
    right: clamp(62px, 8vw, 132px);
    width: min(360px, 28vw);
    height: clamp(220px, 34vh, 320px);
    top: 50%;
    bottom: auto;
  }
  .theme-lg-home .hero-node-network {
    top: 0;
    right: 0;
    width: min(248px, 21vw);
  }
}

/* Top page theme inspired by lg.com/jp */
.theme-lg-home {
  --brand: #072a66;
  --text: #1f1f1f;
  --text-muted: rgba(31, 31, 31, 0.72);
  --accent: #072a66;
  --accent-soft: rgba(7, 42, 102, 0.08);
  --bg-page: #f7f7f7;
  --bg-elevated: #efefef;
  --bg-card: #ffffff;
  --bg-hero-end: #ececec;
  --border: rgba(0, 0, 0, 0.11);
  --header-seam: rgba(0, 0, 0, 0.08);
}

.theme-lg-home .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

/* トップヒーロー: ベクターイラストを土台に、鉛筆スケッチを薄く重ねる */
.theme-lg-home .hero--impact .hero-bg--mesh {
  background: transparent;
  overflow: hidden;
}

.theme-lg-home .hero--impact .hero-bg--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* スケッチは薄く、既存イラストを主役にする */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.66)),
    url("images/hero-yokohama-street-sketch.png"),
    url("images/hero-yokohama-illustration.svg");
  background-size: cover, cover, cover;
  background-position: center, center 38%, center 42%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-blend-mode: normal, soft-light, normal;
  transform: none;
  transform-origin: center;
  opacity: 1;
  filter: saturate(0.98) contrast(1.04);
}

.theme-lg-home .hero--impact .hero-bg--mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 12, 26, 0.82) 0%, rgba(7, 12, 26, 0.54) 32%, rgba(7, 12, 26, 0.24) 56%, rgba(7, 12, 26, 0.11) 100%),
    linear-gradient(180deg, rgba(8, 17, 36, 0.4) 0%, rgba(8, 17, 36, 0.07) 40%, rgba(8, 17, 36, 0.58) 100%),
    radial-gradient(ellipse 90% 55% at 78% 35%, rgba(120, 200, 255, 0.16), transparent 58%);
  background-blend-mode: normal, normal, normal;
}

.theme-lg-home .hero-title,
.theme-lg-home .hero-brand {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.theme-lg-home .hero-mv {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .theme-lg-home .hero--impact .hero-bg--mesh::before {
    background-position: center, 46% 46%, 48% 48%;
  }
}

.theme-lg-home .hero--impact .hero-bg--scan,
.theme-lg-home .hero-orbs,
.theme-lg-home .hero-spotlight {
  display: none;
}

.theme-lg-home .hero-grid-lines,
.theme-lg-home .hero-particles {
  display: block;
}

.theme-lg-home .hero-grid-lines {
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(110, 180, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 180, 255, 0.2) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 78% 66% at 64% 42%, #000 24%, transparent 82%);
  animation: gridPulse 5.5s ease-in-out infinite;
}

.theme-lg-home .hero--impact .hero-particles span {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, rgba(127, 223, 255, 0.5), rgba(89, 164, 255, 0.35));
  box-shadow: 0 0 14px rgba(120, 200, 255, 0.45);
  opacity: 0.72;
}

.theme-lg-home .hero-dataflow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.theme-lg-home .hero-dataflow__line {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(141, 216, 255, 0) 0%, rgba(141, 216, 255, 0.88) 50%, rgba(141, 216, 255, 0) 100%);
  filter: drop-shadow(0 0 10px rgba(125, 216, 255, 0.5));
  transform-origin: left center;
  opacity: 0.6;
  animation: dataFlowPulse 4.6s ease-in-out infinite;
}

.theme-lg-home .hero-dataflow__line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: rgba(169, 232, 255, 0.95);
  box-shadow: 0 0 10px rgba(169, 232, 255, 0.7);
}

.theme-lg-home .hero-dataflow__line--a {
  width: min(340px, 25vw);
  top: 51%;
  right: 16%;
  transform: rotate(7deg);
  animation-delay: 0s;
}

.theme-lg-home .hero-dataflow__line--b {
  width: min(280px, 20vw);
  top: 59%;
  right: 14%;
  transform: rotate(13deg);
  opacity: 0.52;
  animation-delay: 1.2s;
}

.theme-lg-home .hero-dataflow__line--c {
  width: min(310px, 23vw);
  top: 67%;
  right: 11%;
  transform: rotate(18deg);
  opacity: 0.48;
  animation-delay: 2.1s;
}

.theme-lg-home .hero-tech-composition {
  position: absolute;
  right: clamp(84px, 10vw, 170px);
  top: 50%;
  bottom: auto;
  width: min(320px, 25vw);
  height: clamp(220px, 36vh, 320px);
  z-index: 2;
  pointer-events: none;
}

.theme-lg-home .hero-node-network {
  position: absolute;
  top: 0;
  right: 0;
  width: min(270px, 25vw);
  aspect-ratio: 1 / 0.86;
  filter: drop-shadow(0 0 18px rgba(125, 216, 255, 0.16));
}

.theme-lg-home .hero-node-network__glow,
.theme-lg-home .hero-node-network__link,
.theme-lg-home .hero-node-network__node,
.theme-lg-home .hero-node-network__label {
  position: absolute;
}

.theme-lg-home .hero-node-network__glow {
  border-radius: 999px;
  border: 1px solid rgba(141, 216, 255, 0.2);
  background: radial-gradient(circle, rgba(141, 216, 255, 0.18), transparent 68%);
  animation: nodeHalo 6.2s ease-in-out infinite;
}

.theme-lg-home .hero-node-network__glow--a {
  inset: 22% 25% 24% 21%;
}

.theme-lg-home .hero-node-network__glow--b {
  inset: 8% 12% 8% 12%;
  opacity: 0.55;
  animation-delay: -3s;
}

.theme-lg-home .hero-node-network__link {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(141, 216, 255, 0.08), rgba(141, 216, 255, 0.82), rgba(141, 216, 255, 0.08));
  box-shadow: 0 0 12px rgba(141, 216, 255, 0.22);
  transform-origin: left center;
  animation: nodeLinkPulse 4.8s ease-in-out infinite;
}

.theme-lg-home .hero-node-network__link--a {
  width: 112px;
  left: 31%;
  top: 32%;
  transform: rotate(-26deg);
}

.theme-lg-home .hero-node-network__link--b {
  width: 88px;
  left: 29%;
  top: 36%;
  transform: rotate(22deg);
  animation-delay: -1.4s;
}

.theme-lg-home .hero-node-network__link--c {
  width: 90px;
  left: 46%;
  top: 46%;
  transform: rotate(-18deg);
  animation-delay: -2.1s;
}

.theme-lg-home .hero-node-network__link--d {
  width: 102px;
  left: 18%;
  top: 58%;
  transform: rotate(-6deg);
  animation-delay: -2.8s;
}

.theme-lg-home .hero-node-network__node {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(215, 246, 255, 0.98), rgba(88, 162, 255, 0.82) 52%, rgba(11, 38, 76, 0.82) 100%);
  border: 1px solid rgba(173, 236, 255, 0.35);
  box-shadow: 0 0 16px rgba(125, 216, 255, 0.35);
  animation: nodePulse 4.6s ease-in-out infinite;
}

.theme-lg-home .hero-node-network__node--core {
  width: 44px;
  height: 44px;
  left: 31%;
  top: 35%;
}

.theme-lg-home .hero-node-network__node--doc {
  width: 18px;
  height: 18px;
  left: 14%;
  top: 24%;
  animation-delay: -0.8s;
}

.theme-lg-home .hero-node-network__node--signal {
  width: 16px;
  height: 16px;
  left: 16%;
  top: 64%;
  animation-delay: -1.6s;
}

.theme-lg-home .hero-node-network__node--insight {
  width: 18px;
  height: 18px;
  right: 18%;
  top: 20%;
  animation-delay: -2.2s;
}

.theme-lg-home .hero-node-network__node--assist {
  width: 16px;
  height: 16px;
  right: 14%;
  top: 55%;
  animation-delay: -3.1s;
}

.theme-lg-home .hero-node-network__label {
  color: rgba(203, 239, 255, 0.92);
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(125, 216, 255, 0.22);
  white-space: nowrap;
}

.theme-lg-home .hero-node-network__label--core {
  left: calc(31% - 6px);
  top: calc(35% + 50px);
}

.theme-lg-home .hero-node-network__label--doc {
  left: 3%;
  top: 16%;
}

.theme-lg-home .hero-node-network__label--signal {
  left: -8%;
  top: 72.5%;
}

.theme-lg-home .hero-node-network__label--insight {
  right: -1%;
  top: 12%;
}

.theme-lg-home .hero-node-network__label--assist {
  right: -6%;
  top: 64%;
}


.theme-lg-home .hero-holo-panel {
  position: absolute;
  width: clamp(180px, 19vw, 300px);
  padding: 0.7rem 0.85rem 0.82rem;
  border-radius: 14px;
  border: 1px solid rgba(141, 216, 255, 0.4);
  background:
    linear-gradient(160deg, rgba(12, 39, 76, 0.5) 0%, rgba(8, 24, 47, 0.32) 100%);
  box-shadow:
    0 0 0 1px rgba(141, 216, 255, 0.1) inset,
    0 10px 30px rgba(4, 10, 18, 0.22),
    0 0 22px rgba(89, 164, 255, 0.16);
  backdrop-filter: blur(1.5px);
  z-index: 2;
  pointer-events: none;
  transform-origin: center center;
}

.theme-lg-home .hero-holo-panel--rag {
  right: clamp(18px, 2.8vw, 56px);
  bottom: clamp(18px, 5vh, 72px);
  animation: holoFloatRag 7.2s ease-in-out infinite;
}

.theme-lg-home .hero-holo-panel--auth {
  right: clamp(112px, 10.6vw, 210px);
  bottom: clamp(244px, 31vh, 360px);
  width: clamp(165px, 17vw, 250px);
  padding: 0.6rem 0.75rem 0.72rem;
  animation: holoFloatAuth 7.2s ease-in-out infinite;
  animation-delay: -2.4s;
}

.theme-lg-home .hero-holo-panel--auth::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -50px;
  width: clamp(96px, 10vw, 150px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(141, 216, 255, 0.04) 0%, rgba(141, 216, 255, 0.9) 45%, rgba(141, 216, 255, 0.04) 100%);
  box-shadow: 0 0 14px rgba(141, 216, 255, 0.28);
  transform-origin: right center;
  transform: rotate(38deg);
  opacity: 0.72;
  animation: holoLinkPulse 5.6s ease-in-out infinite;
}

.theme-lg-home .hero-holo-panel--auth::after {
  content: "";
  position: absolute;
  right: 112px;
  bottom: -106px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(169, 232, 255, 0.96);
  box-shadow: 0 0 14px rgba(169, 232, 255, 0.6);
  opacity: 0.9;
  animation: holoLinkNode 5.6s ease-in-out infinite;
}

.theme-lg-home .hero-holo-panel__header {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.62rem;
}

.theme-lg-home .hero-holo-panel__header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(141, 216, 255, 0.8);
  box-shadow: 0 0 8px rgba(141, 216, 255, 0.55);
}

.theme-lg-home .hero-holo-panel__ai {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-bottom: 0.58rem;
}

.theme-lg-home .hero-holo-panel__ai-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(141, 216, 255, 0.48);
  color: rgba(190, 236, 255, 0.96);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  background: rgba(59, 130, 246, 0.14);
  box-shadow: 0 0 10px rgba(141, 216, 255, 0.22);
}

.theme-lg-home .hero-holo-panel--auth .hero-holo-panel__ai-chip {
  letter-spacing: 0.08em;
}

.theme-lg-home .hero-holo-panel__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 24px;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(134, 239, 172, 0.5);
  color: rgba(187, 247, 208, 0.96);
  font-family: var(--font-en);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.18);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.24);
}

.theme-lg-home .hero-holo-panel__badge--toggle {
  position: relative;
  min-width: 76px;
  height: 24px;
  overflow: hidden;
}

.theme-lg-home .hero-holo-panel__status {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.35s ease;
}

.theme-lg-home .hero-holo-panel__status--true {
  opacity: 1;
  animation: authTrueToggle 4s steps(1, end) infinite;
}

.theme-lg-home .hero-holo-panel__status--false {
  opacity: 0;
  color: rgba(254, 202, 202, 0.96);
  animation: authFalseToggle 4s steps(1, end) infinite;
}

.theme-lg-home .hero-holo-panel__ai-net {
  position: relative;
  width: 56px;
  height: 18px;
}

.theme-lg-home .hero-holo-panel__ai-net::before,
.theme-lg-home .hero-holo-panel__ai-net::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: rgba(141, 216, 255, 0.52);
}

.theme-lg-home .hero-holo-panel__ai-net::after {
  transform: rotate(-15deg);
  transform-origin: center;
  opacity: 0.62;
}

.theme-lg-home .hero-holo-panel__ai-net::before {
  transform: rotate(15deg);
  transform-origin: center;
  opacity: 0.62;
}

.theme-lg-home .hero-holo-panel__ai-net span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(169, 232, 255, 0.92);
  box-shadow: 0 0 8px rgba(169, 232, 255, 0.62);
}

.theme-lg-home .hero-holo-panel__ai-net span:nth-child(1) { left: 2px; top: 6px; }
.theme-lg-home .hero-holo-panel__ai-net span:nth-child(2) { left: 18px; top: 2px; }
.theme-lg-home .hero-holo-panel__ai-net span:nth-child(3) { right: 18px; top: 10px; }
.theme-lg-home .hero-holo-panel__ai-net span:nth-child(4) { right: 2px; top: 5px; }

.theme-lg-home .hero-holo-panel__graph {
  position: relative;
  height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(141, 216, 255, 0.22);
  background:
    linear-gradient(rgba(141, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 216, 255, 0.08) 1px, transparent 1px);
  background-size: 12px 12px;
  margin-bottom: 0.58rem;
  overflow: hidden;
}

.theme-lg-home .hero-holo-panel__graph::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(141, 216, 255, 0.1) 0%, rgba(141, 216, 255, 0.95) 52%, rgba(141, 216, 255, 0.1) 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(141, 216, 255, 0.45);
  animation: holoScan 3.8s ease-in-out infinite;
}

.theme-lg-home .hero-holo-panel__dbai {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 0.52rem;
}

.theme-lg-home .hero-holo-panel__flow {
  display: grid;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.52rem;
}

.theme-lg-home .hero-holo-panel__flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  background: rgba(141, 216, 255, 0.1);
  border: 1px solid rgba(141, 216, 255, 0.16);
  color: rgba(202, 240, 255, 0.9);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.theme-lg-home .hero-holo-panel__flow--dbai {
  grid-template-columns: 42px 1fr 48px;
}

.theme-lg-home .hero-holo-panel__flow--auth {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-lg-home .hero-holo-panel__db {
  position: relative;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(141, 216, 255, 0.26);
  background: linear-gradient(165deg, rgba(11, 35, 67, 0.65), rgba(7, 22, 42, 0.5));
  overflow: hidden;
}

.theme-lg-home .hero-holo-panel__db span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 4px;
  border-radius: 999px;
  background: rgba(141, 216, 255, 0.62);
}

.theme-lg-home .hero-holo-panel__db span:nth-child(1) { top: 7px; }
.theme-lg-home .hero-holo-panel__db span:nth-child(2) { top: 16px; opacity: 0.8; }
.theme-lg-home .hero-holo-panel__db span:nth-child(3) { top: 25px; opacity: 0.6; }

.theme-lg-home .hero-holo-panel__pipe {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(141, 216, 255, 0.15), rgba(141, 216, 255, 0.92), rgba(141, 216, 255, 0.15));
  box-shadow: 0 0 9px rgba(141, 216, 255, 0.35);
}

.theme-lg-home .hero-holo-panel__pipe span {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(173, 236, 255, 0.95);
  box-shadow: 0 0 8px rgba(173, 236, 255, 0.55);
  transform: translate(-50%, -50%);
}

.theme-lg-home .hero-holo-panel__pipe span:nth-child(1) { left: 22%; opacity: 0.75; }
.theme-lg-home .hero-holo-panel__pipe span:nth-child(2) { left: 50%; opacity: 0.92; }
.theme-lg-home .hero-holo-panel__pipe span:nth-child(3) { left: 78%; opacity: 0.75; }

.theme-lg-home .hero-holo-panel__ai-core {
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(141, 216, 255, 0.34);
  background: linear-gradient(145deg, rgba(12, 46, 86, 0.68), rgba(7, 26, 50, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(125, 216, 255, 0.12);
}

.theme-lg-home .hero-holo-panel__ai-core span {
  color: rgba(205, 242, 255, 0.95);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.theme-lg-home .hero-holo-panel__graph--dbai {
  height: 46px;
}

.theme-lg-home .hero-holo-panel__graph--dbai::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 10px;
  height: 22px;
  background:
    radial-gradient(circle at 8% 82%, rgba(169, 232, 255, 0.95) 0 2px, transparent 2.5px),
    radial-gradient(circle at 38% 60%, rgba(169, 232, 255, 0.95) 0 2px, transparent 2.5px),
    radial-gradient(circle at 62% 46%, rgba(169, 232, 255, 0.95) 0 2px, transparent 2.5px),
    radial-gradient(circle at 88% 22%, rgba(169, 232, 255, 0.95) 0 2px, transparent 2.5px),
    linear-gradient(132deg, transparent 0 17%, rgba(141, 216, 255, 0.88) 17.5% 19%, transparent 19.5% 45%, rgba(141, 216, 255, 0.88) 45.5% 47%, transparent 47.5% 69%, rgba(141, 216, 255, 0.88) 69.5% 71%, transparent 71.5%);
  opacity: 0.9;
}

.theme-lg-home .hero-holo-panel__graph--dbai::after {
  animation-duration: 3.2s;
}

.theme-lg-home .hero-holo-panel__auth {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.52rem;
}

.theme-lg-home .hero-holo-panel__seal {
  position: relative;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(141, 216, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(13, 40, 74, 0.55), rgba(7, 23, 45, 0.35));
  overflow: hidden;
}

.theme-lg-home .hero-holo-panel__seal--source::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 15px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(167, 243, 208, 0.55);
  background:
    linear-gradient(rgba(167, 243, 208, 0.28), rgba(167, 243, 208, 0.28)) 3px 5px / 9px 1px no-repeat,
    linear-gradient(rgba(167, 243, 208, 0.22), rgba(167, 243, 208, 0.22)) 3px 9px / 9px 1px no-repeat,
    linear-gradient(rgba(167, 243, 208, 0.18), rgba(167, 243, 208, 0.18)) 3px 13px / 7px 1px no-repeat;
  box-shadow: 0 0 8px rgba(110, 231, 183, 0.18);
}

.theme-lg-home .hero-holo-panel__seal--source::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 18px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(167, 243, 208, 0.55);
  border-right: 1px solid rgba(167, 243, 208, 0.55);
  background: rgba(13, 40, 74, 0.68);
  transform: skew(-10deg, -10deg);
}

.theme-lg-home .hero-holo-panel__seal--check::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(141, 216, 255, 0.56);
  box-shadow: 0 0 10px rgba(125, 216, 255, 0.18);
}

.theme-lg-home .hero-holo-panel__seal--check::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: rgba(169, 232, 255, 0.95);
  box-shadow:
    0 0 10px rgba(125, 216, 255, 0.46),
    -8px 0 0 -3px rgba(169, 232, 255, 0.82),
    8px 0 0 -3px rgba(169, 232, 255, 0.82);
  transform: translate(-50%, -50%);
}

.theme-lg-home .hero-holo-panel__seal--result::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 17px;
  height: 20px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 88% 14%, 88% 54%, 50% 100%, 12% 54%, 12% 14%);
  background: rgba(167, 243, 208, 0.18);
  border: 1px solid rgba(167, 243, 208, 0.58);
  box-shadow: 0 0 8px rgba(110, 231, 183, 0.18);
  animation: authSealRingToggle 4s steps(1, end) infinite;
}

.theme-lg-home .hero-holo-panel__seal--result::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(134, 239, 172, 0.88);
  box-shadow: 0 0 9px rgba(74, 222, 128, 0.45);
  animation: authSealDotToggle 4s steps(1, end) infinite;
}

.theme-lg-home .hero-holo-panel--auth .hero-holo-panel__seal--result::before {
  animation: authSealRingToggle 4s steps(1, end) infinite;
}

.theme-lg-home .hero-holo-panel--auth .hero-holo-panel__seal--result::after {
  animation: authSealDotToggle 4s steps(1, end) infinite;
}

.theme-lg-home .hero-holo-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.38rem;
}

.theme-lg-home .hero-holo-panel__row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(141, 216, 255, 0.12);
  border: 1px solid rgba(141, 216, 255, 0.14);
  color: rgba(202, 240, 255, 0.88);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  white-space: nowrap;
}

.theme-lg-home .hero-holo-panel__row span:first-child {
  width: auto;
}

.theme-lg-home .hero-holo-panel__row span:last-child {
  width: auto;
  opacity: 0.72;
}

@keyframes dataFlowPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(0) scaleX(0.97);
  }
  50% {
    opacity: 0.75;
    transform: translateX(10px) scaleX(1.03);
  }
}

@keyframes nodeHalo {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.62;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.94);
    box-shadow: 0 0 12px rgba(125, 216, 255, 0.25);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(125, 216, 255, 0.42);
  }
}

@keyframes nodeLinkPulse {
  0%,
  100% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.88;
  }
}

@keyframes holoScan {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-16px);
  }
  50% {
    opacity: 0.96;
    transform: translateY(16px);
  }
}

@keyframes holoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes holoFloatRag {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(-3px, -9px, 0) rotate(0.8deg);
  }
}

@keyframes holoFloatAuth {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(4px, -11px, 0) rotate(-0.9deg);
  }
}

@keyframes holoLinkPulse {
  0%,
  100% {
    opacity: 0.38;
    filter: saturate(0.95);
  }
  50% {
    opacity: 0.9;
    filter: saturate(1.18);
  }
}

@keyframes holoLinkNode {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes authTrueToggle {
  0%,
  54% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}

@keyframes authFalseToggle {
  0%,
  54% {
    opacity: 0;
  }
  55%,
  100% {
    opacity: 1;
  }
}

@keyframes authSealDotToggle {
  0%,
  54% {
    background: rgba(134, 239, 172, 0.88);
    box-shadow: 0 0 9px rgba(74, 222, 128, 0.45);
  }
  55%,
  100% {
    background: rgba(252, 165, 165, 0.95);
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
  }
}

@keyframes authSealRingToggle {
  0%,
  54% {
    border-color: rgba(167, 243, 208, 0.5);
  }
  55%,
  100% {
    border-color: rgba(254, 202, 202, 0.65);
    box-shadow: 0 0 9px rgba(248, 113, 113, 0.22);
  }
}

.theme-lg-home .page-home .hero.hero--impact {
  min-height: clamp(620px, 78vh, 940px);
  padding: calc(var(--header-h) + 5.5rem) 0 7rem;
}

.theme-lg-home .section-alt {
  background: #f1f1f1;
}

.theme-lg-home .btn-nav,
.theme-lg-home .btn-primary {
  background: #072a66;
}

.theme-lg-home .btn-inline {
  color: #072a66;
  border-bottom-color: rgba(7, 42, 102, 0.45);
}

.theme-lg-home .btn-inline:hover {
  color: #0e3f91;
  border-bottom-color: rgba(14, 63, 145, 0.5);
}

.theme-lg-home .card,
.theme-lg-home .news-item {
  border-color: rgba(0, 0, 0, 0.11);
}

.theme-lg-home .card {
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.theme-lg-home #services .card-grid--split {
  gap: clamp(1rem, 2vw, 1.6rem);
}

.theme-lg-home #services .card-link-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 340px;
  padding: clamp(1.5rem, 2.2vw, 2rem);
  border: 1px solid rgba(0, 39, 82, 0.16);
  background:
    linear-gradient(145deg, rgba(0, 39, 82, 0.03) 0%, rgba(0, 39, 82, 0) 42%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow:
    0 10px 26px rgba(0, 39, 82, 0.1),
    0 0 0 1px rgba(98, 181, 255, 0.08) inset;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.theme-lg-home #services .card-link-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: clamp(120px, 16vw, 180px);
  height: clamp(90px, 11vw, 130px);
  background: linear-gradient(140deg, rgba(0, 39, 82, 0.14) 0 48%, transparent 48% 100%);
  pointer-events: none;
}

.theme-lg-home #services .card-link-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 39, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 39, 82, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.34;
  mask-image: radial-gradient(ellipse 120% 88% at 65% 78%, #000 18%, transparent 74%);
  pointer-events: none;
}

.theme-lg-home #services .card-link-box .card-sub {
  position: relative;
  padding-left: 0.85rem;
}

.theme-lg-home #services .card-link-box .card-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 39, 82, 0.9), rgba(98, 181, 255, 0.9));
  box-shadow: 0 0 8px rgba(98, 181, 255, 0.5);
}

.theme-lg-home #services .card-link-box .card-body {
  position: relative;
}

.theme-lg-home #services .card-link-box .card-body::after {
  content: "";
  position: absolute;
  right: -0.35rem;
  top: 0.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 181, 255, 0.25) 0%, rgba(98, 181, 255, 0.04) 52%, transparent 72%);
  pointer-events: none;
}

.theme-lg-home #services .card-link-box:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 143, 214, 0.5);
  box-shadow:
    0 16px 38px rgba(0, 39, 82, 0.16),
    0 0 26px rgba(98, 181, 255, 0.2);
}

.theme-lg-home .card--dark {
  background:
    linear-gradient(145deg, rgba(0, 39, 82, 0.085) 0 28%, transparent 28% 100%),
    #ffffff;
  border-color: rgba(0, 39, 82, 0.2);
}

.theme-lg-home .card--dark h3,
.theme-lg-home .card--dark p,
.theme-lg-home .card--dark .card-sub,
.theme-lg-home .card--dark .card-body,
.theme-lg-home .card--dark .card-eyebrow {
  color: #002752;
}

.theme-lg-home .card--light {
  background: #ffffff;
  border-color: rgba(0, 39, 82, 0.18);
}

.theme-lg-home #services .card-link-box h3 {
  color: #002752;
  font-size: clamp(1.3rem, 1.75vw, 1.55rem);
  line-height: 1.36;
  letter-spacing: 0.01em;
  min-height: 2.6em;
}

.theme-lg-home #services .card-eyebrow {
  color: rgba(0, 39, 82, 0.76);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.theme-lg-home #services .card-sub {
  color: rgba(0, 39, 82, 0.94);
  font-weight: 700;
  margin-top: 0.35rem;
}

.theme-lg-home #services .card-body {
  color: rgba(0, 39, 82, 0.82);
  max-width: 36ch;
}

.theme-lg-home #services .card-link {
  color: #002752;
  text-decoration-color: rgba(0, 39, 82, 0.4);
}

.theme-lg-home .hero-brand,
.theme-lg-home .hero-mv__lead {
  color: #ffffff;
}

.theme-lg-home .site-header .logo,
.theme-lg-home .site-footer .logo,
.theme-lg-home #philosophy .section-title,
.theme-lg-home #services .section-title,
.theme-lg-home #latest .section-title {
  color: #002752;
}

.theme-lg-home .hero-title,
.theme-lg-home .hero-mv__text {
  color: rgba(255, 255, 255, 0.93);
}

.theme-lg-home .section-en,
.theme-lg-home .news-cat,
.theme-lg-home .card-link,
.theme-lg-home .text-link,
.theme-lg-home .hero-mv__panel-heading {
  color: #8dd8ff;
}

.theme-lg-home .hero-mv__tabs {
  border-bottom-color: rgba(141, 216, 255, 0.34);
}

.theme-lg-home .hero-mv__tab {
  color: rgba(233, 245, 255, 0.72);
}

.theme-lg-home .hero-mv__tab:hover,
.theme-lg-home .hero-mv__tab.is-active {
  color: #ffffff;
  border-bottom-color: #8dd8ff;
}

@media (max-width: 900px) {
  .theme-lg-home .page-home .hero.hero--impact {
    min-height: clamp(500px, 74vh, 760px);
    padding: calc(var(--header-h) + 3.8rem) 0 4.4rem;
  }
  .theme-lg-home .hero-dataflow {
    opacity: 0.65;
  }
  .theme-lg-home .hero-tech-composition {
    display: none;
  }
  .theme-lg-home #services .card-link-box {
    min-height: 300px;
  }
}
