@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@300;400;500;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap');

:root {
  --nc-bg-pure: #FFFFFF;
  --nc-bg-aluminum: #E8ECF0;
  --nc-bg-graphite: #E0E4E8;
  --nc-bg-anthracite: #141416;
  --nc-ink: #1A1C20;
  --nc-ink-soft: #2A2D33;
  --nc-aluminum: #8A9098;
  --nc-asphalt: #4A4A52;
  --nc-asphalt-fade: rgba(74, 74, 82, 0.3);
  --nc-neon: #FF1A5A;
  --nc-neon-glow: rgba(255, 26, 90, 0.12);
  --nc-neon-edge: rgba(255, 26, 90, 0.35);

  --nc-card-shadow-rest: 0px 24px 48px rgba(0, 0, 0, 0.06), 0px 4px 12px rgba(0, 0, 0, 0.03);
  --nc-card-shadow-hover: 0px 32px 56px rgba(255, 26, 90, 0.12), 0px 8px 18px rgba(0, 0, 0, 0.05);

  --nc-grid: 4px;
  --nc-pad-edge: 24px;
  --nc-pad-edge-lg: 40px;
  --nc-header-h: 72px;
  --nc-header-h-mobile: 56px;
  --nc-footer-h: 68px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--nc-bg-pure);
  color: var(--nc-ink);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
}

strong, p, span, a, li, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

.nc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--nc-pad-edge);
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .nc-container {
    padding: 0 var(--nc-pad-edge-lg);
  }
}

.nc-section {
  padding: 80px 0;
  position: relative;
  overflow: visible;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .nc-section {
    padding: 120px 0;
  }
}

.nc-section--white {
  background: var(--nc-bg-pure);
  color: var(--nc-ink);
}

.nc-section--aluminum {
  background: var(--nc-bg-aluminum);
  color: var(--nc-ink);
}

.nc-section--graphite {
  background: var(--nc-bg-graphite);
  color: var(--nc-ink);
}

.nc-section--anthracite {
  background: var(--nc-bg-anthracite);
  color: #FFFFFF;
}

.nc-section--anthracite .nc-h1,
.nc-section--anthracite .nc-h2,
.nc-section--anthracite .nc-h3,
.nc-section--anthracite strong {
  color: #FFFFFF;
}

.nc-hardcut {
  position: relative;
  height: 1px;
  background: var(--nc-neon);
  opacity: 0.65;
  width: 100%;
}

.nc-section-head {
  position: relative;
  padding-left: 28px;
  margin-bottom: 56px;
}

.nc-section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: calc(100% - 12px);
  background: var(--nc-neon);
}

.nc-section-head--jp::before {
  width: 8px;
  height: 8px;
  top: 22px;
  background: var(--nc-neon);
}

.nc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nc-aluminum);
  margin-bottom: 16px;
  display: inline-block;
}

.nc-eyebrow--neon {
  color: var(--nc-neon);
}

.nc-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  color: var(--nc-ink);
}

.nc-h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 74px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  color: var(--nc-ink);
}

.nc-h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.1;
  margin: 0 0 12px 0;
  color: var(--nc-ink);
}

.nc-h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.3;
  margin: 0 0 8px 0;
  color: var(--nc-ink);
}

.nc-jp-h {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--nc-neon);
}

.nc-mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.nc-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nc-ink-soft);
  max-width: 64ch;
}

.nc-body--lg {
  font-size: 18px;
  line-height: 1.6;
}

.nc-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--nc-neon);
  margin-right: 12px;
  vertical-align: middle;
}

.nc-card {
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  border-radius: 0;
  box-shadow: var(--nc-card-shadow-rest);
  padding: 32px;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, z-index 0s linear 280ms;
  z-index: 1;
}

.nc-card:hover {
  transform: translateY(-6px);
  border-color: var(--nc-neon);
  border-width: 2px;
  box-shadow: var(--nc-card-shadow-hover);
  z-index: 100;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, z-index 0s linear 0s;
}

.nc-card--static:hover {
  transform: none;
  z-index: 1;
}

.nc-card--pad-sm {
  padding: 20px;
}

.nc-card--pad-lg {
  padding: 48px;
}

.nc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  min-height: 48px;
  white-space: nowrap;
  border: 2px solid var(--nc-ink);
  background: var(--nc-neon);
  color: #FFFFFF;
  position: relative;
  transition: all 220ms ease;
  cursor: pointer;
  text-decoration: none;
}

.nc-btn:hover {
  background: var(--nc-ink);
  color: var(--nc-neon);
  border-color: var(--nc-neon);
  box-shadow: 0 12px 24px var(--nc-neon-glow);
  transform: translateY(-3px);
}

.nc-btn--ghost {
  background: transparent;
  color: var(--nc-ink);
}

.nc-btn--ghost:hover {
  background: var(--nc-ink);
  color: var(--nc-neon);
}

.nc-btn--inverse {
  background: var(--nc-bg-anthracite);
  color: #FFFFFF;
  border-color: var(--nc-neon);
}

.nc-btn--inverse:hover {
  background: var(--nc-neon);
  color: var(--nc-bg-anthracite);
}

.nc-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--nc-asphalt-fade);
  color: var(--nc-aluminum);
}

.nc-tag--neon {
  color: var(--nc-neon);
  border-color: var(--nc-neon);
}

.nc-divider-neon {
  width: 100%;
  height: 1px;
  background: var(--nc-neon);
  opacity: 0.5;
  margin: 24px 0;
}

.nc-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(74, 74, 82, 0.04) 1px, transparent 1px);
  background-size: 4px 100%;
  z-index: 0;
}

.nc-section > .nc-container {
  position: relative;
  z-index: 1;
}

.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nc-header-h);
  background: var(--nc-bg-pure);
  border-bottom: 1px solid var(--nc-neon-edge);
  z-index: 200;
  display: flex;
  align-items: stretch;
}

.nc-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 var(--nc-pad-edge);
}

@media (min-width: 1024px) {
  .nc-header__inner {
    padding: 0 0 0 var(--nc-pad-edge-lg);
  }
}

.nc-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  flex-shrink: 0;
}

.nc-logo__mark {
  width: 44px;
  height: 46px;
  position: relative;
  display: inline-block;
}

.nc-logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nc-logo__text {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(74, 74, 82, 0.2);
  padding-left: 14px;
  line-height: 1;
}

.nc-logo__domain {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--nc-ink);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  margin-bottom: 6px;
}

.nc-logo__company {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--nc-neon);
  letter-spacing: 0.04em;
}

.nc-nav {
  display: none;
  align-items: center;
  gap: 0;
  margin-left: 40px;
  flex-grow: 1;
  justify-content: flex-end;
  padding-right: var(--nc-pad-edge-lg);
}

@media (min-width: 1024px) {
  .nc-nav {
    display: flex;
  }
}

.nc-nav__item {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nc-ink);
  padding: 8px 14px;
  border: 1px solid var(--nc-aluminum);
  margin-left: -1px;
  transform: translateY(0);
  position: relative;
  transition: all 220ms ease;
}

.nc-nav__item:nth-child(1) { transform: translateY(0); }
.nc-nav__item:nth-child(2) { transform: translateY(4px); }
.nc-nav__item:nth-child(3) { transform: translateY(8px); }
.nc-nav__item:nth-child(4) { transform: translateY(12px); }
.nc-nav__item:nth-child(5) { transform: translateY(16px); }
.nc-nav__item:nth-child(6) { transform: translateY(20px); }

.nc-nav__item:hover {
  border-color: var(--nc-neon);
  color: var(--nc-neon);
  background: var(--nc-bg-pure);
  z-index: 2;
}

.nc-nav__item--active {
  background: var(--nc-neon);
  color: #FFFFFF;
  border-color: var(--nc-neon);
}

.nc-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--nc-neon-edge);
  background: var(--nc-bg-pure);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nc-burger {
    display: none;
  }
}

.nc-burger__box {
  width: 36px;
  height: 36px;
  border: 1px solid var(--nc-neon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.nc-burger__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nc-neon);
}

.nc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nc-bg-aluminum);
  z-index: 300;
  transform: translateY(-100%);
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  padding: 24px var(--nc-pad-edge);
  overflow-y: auto;
}

.nc-mobile-menu.is-open {
  transform: translateY(0);
}

.nc-mobile-menu__close {
  align-self: flex-end;
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  color: var(--nc-neon);
  background: transparent;
  border: none;
  padding: 8px 12px;
  line-height: 1;
}

.nc-mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nc-mobile-menu__link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--nc-ink);
  text-transform: uppercase;
  padding: 12px 16px 12px 22px;
  border-left: 6px solid var(--nc-neon);
  background: var(--nc-bg-pure);
  border-top: 1px solid var(--nc-asphalt-fade);
  border-right: 1px solid var(--nc-asphalt-fade);
  border-bottom: 1px solid var(--nc-asphalt-fade);
  box-shadow: var(--nc-card-shadow-rest);
}

.nc-mobile-menu__link:hover,
.nc-mobile-menu__link:active {
  border-left-width: 12px;
  color: var(--nc-neon);
}

.nc-main {
  padding-top: var(--nc-header-h);
  min-height: 100vh;
}

@media (max-width: 767px) {
  .nc-main {
    padding-top: var(--nc-header-h-mobile);
  }
}

  .nc-header__inner,
  .nc-container,
  .nc-hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nc-hero__title {
    padding: 24px 20px;
    min-height: auto;
    transform: none;
  }

  .nc-hero__title-text {
    font-size: 36px;
    word-break: break-word;
  }

  .nc-hero__code,
  .nc-hero__cta {
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .nc-bento,
  .nc-node-graph,
  .nc-flex-grid,
  .nc-gallery,
  .nc-service-list {
    display: flex;
    flex-direction: column;
  }

  .nc-node-peri {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nc-node {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
  }

  .nc-review-card {
    flex: 0 0 calc(100% - 16px);
  }

  .nc-team__row {
    padding: 16px;
  }

  .nc-team__name {
    font-size: 18px;
  }

  .nc-faq__btn {
    padding: 16px;
    font-size: 15px;
  }

  .nc-form {
    padding: 20px 16px;
  }

  .nc-contact-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nc-footer__inner {
    text-align: center;
    justify-items: center;
  }

  .nc-footer__links {
    justify-content: center;
  }

  .nc-footer__legal {
    text-align: center;
  }

  .nc-marquee__item {
    font-size: 24px;
    padding-right: 32px;
  }

  .nc-marquee__track {
    gap: 32px;
  }

  .nc-sticky-split {
    display: flex;
    flex-direction: column;
  }

  .nc-sticky-split__media {
    height: 240px;
    margin-bottom: 24px;
  }

  .nc-stack__card {
    padding: 0 16px;
    height: auto;
    min-height: 80px;
  }


.nc-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nc-header-h);
  background: var(--nc-bg-pure);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.nc-hero__inner {
  width: 100%;
  position: relative;
  z-index: 1;
}

.nc-hero__3d {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.nc-hero__svg {
  width: 100%;
  height: 100%;
  opacity: 0.95;
  max-width: 100vw;
}

@media (max-width: 767px) {
  .nc-hero__svg {
    width: 100vw;
    height: auto;
    min-height: 100%;
    object-fit: cover;
  }
}

.nc-hero__cards {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nc-hero__cards {
    grid-template-columns: 240px 1fr 260px;
    gap: 0;
    min-height: 580px;
    align-items: center;
  }
}

.nc-hero__code {
  width: 100%;
  max-width: 240px;
  height: 110px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 767px) {
  .nc-hero__code {
    width: 100%;
  }
}

.nc-hero__title {
  width: 100%;
  max-width: 520px;
  min-height: 240px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
  transform: translateY(-14px);
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .nc-hero__title {
    min-height: 200px;
    transform: none;
  }
}

.nc-hero__title-text {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--nc-ink);
  text-transform: uppercase;
  margin: 0;
}

.nc-hero__title-text .nc-letter-boost {
  font-size: 1.14em;
  position: relative;
  display: inline-block;
}

.nc-hero__title-text .nc-letter-boost::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--nc-neon);
}

.nc-hero__cta {
  width: 100%;
  max-width: 260px;
  min-height: 120px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(-14px, 14px);
  z-index: 4;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .nc-hero__cta {
    width: 100%;
    transform: none;
  }
}

.nc-hero__sub-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--nc-neon);
  margin-bottom: 12px;
}

.nc-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .nc-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .nc-bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nc-bento__cell {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.nc-bento__cell:hover {
  z-index: 100;
}

.nc-bento__media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--nc-bg-graphite);
  position: relative;
}

.nc-bento__media--square {
  aspect-ratio: 1/1;
}

.nc-bento__media--tall {
  aspect-ratio: 3/4;
}

.nc-bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}

.nc-bento__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  background: var(--nc-bg-pure);
}

.nc-bento__icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--nc-neon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-bento__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--nc-neon);
  stroke-width: 1.5;
  fill: none;
}

.nc-bento__reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  background: var(--nc-bg-anthracite);
  color: #FFFFFF;
  padding: 20px 24px;
  border-top: 2px solid var(--nc-neon);
  transition: bottom 320ms ease;
  z-index: 5;
}

.nc-bento__cell:hover .nc-bento__reveal {
  bottom: 0;
}

.nc-bento__price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--nc-neon);
}

.nc-node-graph {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nc-node-graph {
    grid-template-columns: 1fr 240px 1fr;
    min-height: 480px;
  }
}

.nc-node-center {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  z-index: 3;
}

.nc-node-peri {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 1024px) {
  .nc-node-peri {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 28px;
  }
}

.nc-node {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 8px;
  cursor: pointer;
}

.nc-node__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-node__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--nc-neon);
  fill: none;
  stroke-width: 1.5;
}

.nc-node__title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nc-ink);
}

.nc-node:hover {
  z-index: 100;
}

.nc-node-rails {
  display: none;
}

@media (min-width: 1024px) {
  .nc-node-rails {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
}

.nc-sticky-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nc-sticky-split {
    grid-template-columns: 38% 1fr;
    gap: 20px;
  }
}

.nc-sticky-split__media {
  position: relative;
  height: 360px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nc-sticky-split__media {
    position: sticky;
    top: calc(var(--nc-header-h) + 24px);
    height: calc(100vh - var(--nc-header-h) - 48px);
    margin-right: -20px;
    z-index: 25;
  }
}

.nc-sticky-split__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 360ms ease;
}

.nc-sticky-split:hover .nc-sticky-split__photo {
  filter: grayscale(0) contrast(1.05);
}

.nc-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nc-timeline__item {
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  padding: 24px 28px;
  box-shadow: var(--nc-card-shadow-rest);
  position: relative;
  margin-bottom: -12px;
  z-index: 1;
  transition: all 280ms ease;
}

.nc-timeline__item:nth-child(1) { z-index: 4; }
.nc-timeline__item:nth-child(2) { z-index: 3; }
.nc-timeline__item:nth-child(3) { z-index: 2; }
.nc-timeline__item:nth-child(4) { z-index: 1; }

.nc-timeline__item:hover {
  transform: translateX(8px);
  border-color: var(--nc-neon);
  z-index: 100;
}

.nc-timeline__year {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--nc-neon);
  margin-bottom: 8px;
  display: block;
}

.nc-timeline__event {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nc-ink);
  margin: 0;
}

.nc-timeline__detail {
  font-size: 14px;
  color: var(--nc-ink-soft);
  margin: 8px 0 0 0;
  line-height: 1.5;
}

.nc-stack {
  display: flex;
  flex-direction: column;
  position: relative;
}

.nc-stack__card {
  height: 80px;
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  box-shadow: var(--nc-card-shadow-rest);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -16px;
  position: relative;
  cursor: pointer;
  transition: all 320ms ease;
  z-index: 1;
}

.nc-stack__card:nth-child(1) { z-index: 6; }
.nc-stack__card:nth-child(2) { z-index: 5; }
.nc-stack__card:nth-child(3) { z-index: 4; }
.nc-stack__card:nth-child(4) { z-index: 3; }
.nc-stack__card:nth-child(5) { z-index: 2; }
.nc-stack__card:nth-child(6) { z-index: 1; }

.nc-stack__card:hover {
  height: auto;
  min-height: 80px;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 100;
  border-color: var(--nc-neon);
  transform: translateX(0);
}

.nc-stack__num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--nc-neon);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nc-stack__head {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.nc-stack__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nc-stack__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--nc-neon);
  fill: none;
  stroke-width: 1.5;
}

.nc-stack__title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--nc-ink);
}

.nc-stack__body {
  display: none;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.nc-stack__card:hover .nc-stack__body {
  display: flex;
}

.nc-stack__detail {
  font-size: 15px;
  color: var(--nc-ink-soft);
  line-height: 1.6;
  max-width: 540px;
}

.nc-flex-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .nc-flex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nc-flex-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.nc-flex-cell {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nc-flex-cell__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--nc-neon-glow) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, var(--nc-neon-glow) 1px, transparent 1px);
  background-size: 24px 24px;
  transition: opacity 320ms ease;
}

.nc-flex-cell:hover .nc-flex-cell__pattern {
  opacity: 1;
}

.nc-flex-cell__icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--nc-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.nc-flex-cell__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--nc-neon);
  fill: none;
  stroke-width: 1.5;
}

.nc-flex-cell__detail {
  display: none;
  font-size: 14px;
  color: var(--nc-ink-soft);
  line-height: 1.6;
}

.nc-flex-cell:hover .nc-flex-cell__detail {
  display: block;
}

.nc-marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--nc-neon-edge);
  border-bottom: 1px solid var(--nc-neon-edge);
  position: relative;
}

.nc-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: nc-marquee-roll 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.nc-marquee:hover .nc-marquee__track {
  animation-play-state: paused;
}

.nc-marquee__item {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 54px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  padding-right: 56px;
}

.nc-marquee__item--alt {
  color: var(--nc-neon);
}

.nc-marquee__item::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--nc-neon);
  transform: translateY(-50%) rotate(45deg);
}

@keyframes nc-marquee-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nc-team {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nc-team__row {
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  padding: 24px 28px;
  box-shadow: var(--nc-card-shadow-rest);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
  transition: all 280ms ease;
}

.nc-team__row:hover {
  z-index: 100;
  border-color: var(--nc-neon);
}

.nc-team__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  color: var(--nc-ink);
}

.nc-team__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nc-aluminum);
  margin: 4px 0 0 0;
}

.nc-team__photo {
  display: none;
  position: absolute;
  right: 12px;
  top: -40px;
  width: 200px;
  height: 240px;
  border: 2px solid var(--nc-neon);
  background: var(--nc-bg-pure);
  box-shadow: var(--nc-card-shadow-hover);
  overflow: hidden;
  z-index: 85;
}

.nc-team__row:hover .nc-team__photo {
  display: block;
}

.nc-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.nc-faq {
  display: flex;
  flex-direction: column;
}

.nc-faq__panel {
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  box-shadow: var(--nc-card-shadow-rest);
  padding: 0;
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
  transition: all 280ms ease;
}

.nc-faq__panel:nth-child(1) { z-index: 6; }
.nc-faq__panel:nth-child(2) { z-index: 5; }
.nc-faq__panel:nth-child(3) { z-index: 4; }
.nc-faq__panel:nth-child(4) { z-index: 3; }
.nc-faq__panel:nth-child(5) { z-index: 2; }
.nc-faq__panel:nth-child(6) { z-index: 1; }

.nc-faq__btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-align: left;
  color: var(--nc-ink);
  cursor: pointer;
}

.nc-faq__sign {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--nc-neon);
  border: 1px solid var(--nc-neon);
  flex-shrink: 0;
}

.nc-faq__panel.is-open .nc-faq__sign {
  background: var(--nc-neon);
  color: #FFFFFF;
}

.nc-faq__panel.is-open {
  z-index: 100;
  border-color: var(--nc-neon);
}

.nc-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms ease;
  border-top: 0 solid var(--nc-asphalt-fade);
}

.nc-faq__panel.is-open .nc-faq__body {
  max-height: 500px;
  border-top: 1px solid var(--nc-asphalt-fade);
}

.nc-faq__answer {
  padding: 24px 28px 28px 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nc-ink-soft);
  border-left: 4px solid var(--nc-neon);
  margin: 0;
}

.nc-review-stage {
  position: relative;
  padding: 24px 0;
  overflow: hidden;
}

.nc-review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--nc-neon) transparent;
  width: 100%;
  max-width: 100%;
}

.nc-review-track::-webkit-scrollbar {
  height: 6px;
}

.nc-review-track::-webkit-scrollbar-thumb {
  background: var(--nc-neon);
}

.nc-review-card {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: center;
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  box-shadow: var(--nc-card-shadow-rest);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .nc-review-card {
    flex: 0 0 calc(60% - 12px);
  }
  .nc-review-card:nth-child(odd) {
    transform: rotate(-1.5deg);
  }
  .nc-review-card:nth-child(even) {
    transform: rotate(1.5deg);
  }
}

.nc-review-card.is-active {
  border-color: var(--nc-neon);
  border-width: 2px;
  transform: scale(1.02) rotate(0deg) !important;
  z-index: 5;
  box-shadow: var(--nc-card-shadow-hover);
}

.nc-review-card__quote {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--nc-ink);
  margin: 0;
}

.nc-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.nc-review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--nc-neon);
  flex-shrink: 0;
  background: var(--nc-bg-aluminum);
}

.nc-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-review-card__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  color: var(--nc-ink);
}

.nc-review-card__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nc-aluminum);
  margin: 2px 0 0 0;
}

.nc-review-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.nc-review-arrow {
  width: 48px;
  height: 48px;
  border: 2px solid var(--nc-neon);
  background: var(--nc-bg-pure);
  color: var(--nc-neon);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 220ms ease;
}

.nc-review-arrow:hover {
  background: var(--nc-neon);
  color: #FFFFFF;
}

.nc-contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nc-contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.nc-contact-info {
  padding-right: 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .nc-contact-info {
    padding-right: 0;
  }
}

.nc-contact-info__phone {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: #FFFFFF;
  margin: 16px 0 8px 0;
  letter-spacing: -0.02em;
}

.nc-contact-info__email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--nc-neon);
  margin: 0 0 16px 0;
}

.nc-contact-info__address {
  font-size: 15px;
  line-height: 1.6;
  color: var(--nc-aluminum);
  margin: 0;
}

.nc-form {
  background: var(--nc-bg-pure);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--nc-asphalt-fade);
  box-shadow: var(--nc-card-shadow-rest);
  color: var(--nc-ink);
}

.nc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nc-field__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nc-aluminum);
}

.nc-field__input,
.nc-field__textarea,
.nc-field__select {
  background: var(--nc-bg-pure);
  border: 1px solid var(--nc-asphalt-fade);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--nc-ink);
  border-radius: 0;
  width: 100%;
  transition: all 200ms ease;
}

.nc-field__input:focus,
.nc-field__textarea:focus,
.nc-field__select:focus {
  outline: none;
  border-color: var(--nc-neon);
  border-width: 2px;
  padding: 13px 15px;
  box-shadow: 0 0 0 2px var(--nc-neon-glow);
}

.nc-field__textarea {
  resize: vertical;
  min-height: 120px;
}

.nc-form__submit {
  align-self: flex-start;
}

.nc-form__success {
  display: none;
  background: var(--nc-bg-pure);
  border: 2px solid var(--nc-neon);
  padding: 32px;
  color: var(--nc-ink);
  text-align: center;
}

.nc-form__success.is-shown {
  display: block;
}

.nc-footer {
  background: var(--nc-bg-anthracite);
  color: #FFFFFF;
  height: auto;
  min-height: var(--nc-footer-h);
  border-top: 2px solid var(--nc-neon);
  padding: 28px 0;
  display: flex;
  align-items: center;
}

.nc-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .nc-footer__inner {
    grid-template-columns: auto 1fr auto;
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .nc-footer__inner {
    grid-template-columns: auto 1fr auto;
    gap: 40px;
  }
}

.nc-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nc-footer__mark {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--nc-neon);
  border: 1.5px solid var(--nc-neon);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-footer__domain {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 300;
  font-size: 12px;
  color: #FFFFFF;
}

.nc-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nc-footer__links a {
  color: #FFFFFF;
  transition: color 220ms ease;
}

.nc-footer__links a:hover {
  color: var(--nc-neon);
}

.nc-footer__legal {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--nc-aluminum);
  line-height: 1.5;
  text-align: right;
}

.nc-cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  max-width: 420px;
  background: var(--nc-bg-anthracite);
  border: 1px solid var(--nc-neon);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: var(--nc-card-shadow-hover);
  z-index: 250;
  display: block;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .nc-cookie {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }
}

.nc-cookie.is-hidden {
  display: none !important;
}

.nc-cookie__head {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

.nc-cookie__copy {
  font-size: 12px;
  color: var(--nc-aluminum);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.nc-cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nc-cookie__btn {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid var(--nc-neon);
  background: transparent;
  color: var(--nc-neon);
  cursor: pointer;
  transition: all 200ms ease;
}

.nc-cookie__btn--accept {
  background: var(--nc-neon);
  color: #FFFFFF;
}

.nc-cookie__btn:hover {
  background: var(--nc-neon);
  color: #FFFFFF;
}

.nc-cookie__btn--accept:hover {
  background: var(--nc-bg-pure);
  color: var(--nc-neon);
}

.nc-cookie__link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--nc-aluminum);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nc-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.nc-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.nc-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .nc-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .nc-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nc-gallery__cell {
  position: relative;
  overflow: hidden;
  background: var(--nc-bg-anthracite);
  aspect-ratio: 4/3;
}

.nc-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter 360ms ease, transform 360ms ease;
}

.nc-gallery__cell:hover img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.04);
}

.nc-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(20, 20, 22, 0.92), rgba(20, 20, 22, 0));
  color: #FFFFFF;
  padding: 18px 20px 16px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nc-service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .nc-service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.nc-service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

.nc-service-card:hover {
  z-index: 100;
}

.nc-service-card__media {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--nc-bg-graphite);
}

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

.nc-service-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  background: var(--nc-bg-pure);
}

.nc-service-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0;
  color: var(--nc-ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.nc-service-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 17px;
  color: var(--nc-neon);
  margin: 0;
}

.nc-service-card__copy {
  font-size: 14px;
  color: var(--nc-ink-soft);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.nc-service-card__cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.nc-btn--sm {
  font-size: 12px;
  padding: 10px 18px;
  min-height: 40px;
  letter-spacing: 0.1em;
}

.nc-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nc-stat__num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--nc-neon);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.nc-stat__num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--nc-neon);
}

.nc-stat__num::before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 6px;
  width: 8px;
  height: 8px;
  background: var(--nc-neon);
  transform: rotate(45deg);
}

.nc-stat__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nc-aluminum);
}

.nc-prose {
  max-width: 760px;
  color: var(--nc-ink);
}

.nc-prose h2 {
  margin: 56px 0 20px 0;
}

.nc-prose h3 {
  margin: 32px 0 12px 0;
}

.nc-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--nc-ink-soft);
  margin: 0 0 18px 0;
}

.nc-prose ul, .nc-prose ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
}

.nc-prose li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--nc-ink-soft);
}

.nc-prose strong {
  color: var(--nc-ink);
  font-weight: 700;
}

.nc-jp-block {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: var(--nc-ink-soft);
}

.nc-jp-block::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--nc-neon);
  margin-right: 12px;
  vertical-align: middle;
}

.nc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--nc-ink);
}

.nc-table th, .nc-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--nc-asphalt-fade);
}

.nc-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nc-aluminum);
  background: var(--nc-bg-aluminum);
}

.nc-table tr:last-child td {
  border-bottom: none;
}

.nc-pill {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--nc-neon);
  color: #FFFFFF;
}

.nc-pill--outline {
  background: transparent;
  color: var(--nc-neon);
  border: 1px solid var(--nc-neon);
}

.nc-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.nc-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nc-list-clean li {
  padding: 10px 0 10px 18px;
  position: relative;
  font-size: 14px;
  color: var(--nc-ink-soft);
  border-bottom: 1px solid var(--nc-asphalt-fade);
}

.nc-list-clean li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--nc-neon);
}

.nc-list-clean li:last-child {
  border-bottom: none;
}

.nc-callout {
  background: var(--nc-bg-anthracite);
  color: #FFFFFF;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.nc-callout strong {
  color: var(--nc-neon);
}

.nc-anchor-jump {
  scroll-margin-top: calc(var(--nc-header-h) + 24px);
}

.nc-h1-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
  color: var(--nc-neon);
  margin: 8px 0 0 0;
}

.nc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0 0;
}

.nc-soft-divider {
  height: 1px;
  background: var(--nc-asphalt-fade);
  margin: 32px 0;
  border: none;
}

@media (max-width: 767px) {
  .nc-stat__num { font-size: 36px; }
  .nc-h2 { font-size: 32px; }
  .nc-h1 { font-size: 36px; }
  .nc-section { padding: 64px 0; }
}
